diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-08-15 21:48:16 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-08-15 21:48:16 (GMT) |
commit | 87eea88b5a198234cb18980d6f3a155de176ea6e (patch) | |
tree | daa93ce59fd04fb65d345a0842b29f093c6324d7 /Mac/Modules/cg/cgscan.py | |
parent | 81204152d4e4de10b074a8db14b2ae426db5bcb0 (diff) | |
download | cpython-87eea88b5a198234cb18980d6f3a155de176ea6e.zip cpython-87eea88b5a198234cb18980d6f3a155de176ea6e.tar.gz cpython-87eea88b5a198234cb18980d6f3a155de176ea6e.tar.bz2 |
After generating the Python file with definitions try to run it, so
we catch errors during the build process in stead of later during runtime.
Diffstat (limited to 'Mac/Modules/cg/cgscan.py')
-rwxr-xr-x | Mac/Modules/cg/cgscan.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Mac/Modules/cg/cgscan.py b/Mac/Modules/cg/cgscan.py index 4ed2127..5d84500 100755 --- a/Mac/Modules/cg/cgscan.py +++ b/Mac/Modules/cg/cgscan.py @@ -22,6 +22,8 @@ def main(): scanner.scan() scanner.gentypetest(SHORT+"typetest.py") scanner.close() + print "=== Testing definitions output code ===" + execfile(defsoutput, {}, {}) print "=== Done scanning and generating, now importing the generated code... ===" exec "import " + SHORT + "support" print "=== Done. It's up to you to compile it now! ===" |