aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-03-21 19:48:26 -0700
committerAlon Zakai <alonzakai@gmail.com>2011-03-21 19:48:26 -0700
commit24856d20699818b35f01963e4144c87d1a5c56ff (patch)
treeade6915ad86dedcc646eec29bcca845d5bf90212 /tests
parent98f6e8924d27246f40f50ec3f75084f1f04b6459 (diff)
optimize FUNCTION_POINTER and exporting
Diffstat (limited to 'tests')
-rw-r--r--tests/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py
index e5cc3a27..fba28828 100644
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -1896,7 +1896,7 @@ if 'benchmark' not in sys.argv:
print('*ok*');
'''
def post(filename):
- Popen(['python', DEMANGLER, filename, '.'], stdout=open(filename + '.tmp', 'w')).communicate()
+ Popen(['python', DEMANGLER, filename], stdout=open(filename + '.tmp', 'w')).communicate()
Popen(['python', NAMESPACER, filename + '.tmp'], stdout=open(filename + '.tmp2', 'w')).communicate()
src = open(filename, 'r').read().replace(
'// {{MODULE_ADDITIONS}',