diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-07-09 19:24:20 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-07-09 19:24:20 -0700 |
commit | 6c101f3ad806ee371f4d55d4f347535b8d33c7cb (patch) | |
tree | fa9d6995416fb2813af3c99482573a095fe6f567 /tests | |
parent | 3a935225b9d71148529b6564bfeac20ea49ccb7d (diff) |
bindings generator cleanup
Diffstat (limited to 'tests')
-rw-r--r-- | tests/runner.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py index 8c699330..d3d5beb8 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -29,7 +29,6 @@ NAMESPACER = path_from_root('tools', 'namespacer.py') EMMAKEN = path_from_root('tools', 'emmaken.py') AUTODEBUGGER = path_from_root('tools', 'autodebugger.py') DFE = path_from_root('tools', 'dead_function_eliminator.py') -BINDINGS_GENERATOR = path_from_root('tools', 'bindings_generator.py') # Global cache for tests (we have multiple TestCase instances; this object lets them share data) @@ -2577,7 +2576,7 @@ if 'benchmark' not in sys.argv: open(header_filename, 'w').write(header) basename = os.path.join(self.get_dir(), 'bindingtest') - output = Popen(['python', BINDINGS_GENERATOR, basename, header_filename], stdout=PIPE, stderr=STDOUT).communicate()[0] + output = Popen([BINDINGS_GENERATOR, basename, header_filename], stdout=PIPE, stderr=STDOUT).communicate()[0] assert 'Traceback' not in output, 'Failure in binding generation: ' + output src = ''' |