aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-10-06 17:34:44 -0700
committerAlon Zakai <alonzakai@gmail.com>2011-10-06 17:34:44 -0700
commitc7e460d60b16583b4d920c7cf2e9e73c0ae9ba05 (patch)
treeaa3cf09a9a7f9571e7c3f88d036154e5ba89725c /tests/runner.py
parent8511f89492a089bc3297979d1d17dacb80c28362 (diff)
consolidate dlmalloc.c files; fixes test_dlmalloc_linked
Diffstat (limited to 'tests/runner.py')
-rw-r--r--tests/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py
index da07b234..fcbbc453 100644
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -2978,7 +2978,7 @@ if 'benchmark' not in str(sys.argv):
global CORRECT_SIGNS; CORRECT_SIGNS = 2
global CORRECT_SIGNS_LINES; CORRECT_SIGNS_LINES = ['src.cpp:' + str(i) for i in [4816, 4191, 4246, 4199, 4205, 4235, 4227]]
- src = open(path_from_root('tests', 'dlmalloc.c'), 'r').read()
+ src = open(path_from_root('src', 'dlmalloc.c'), 'r').read() + '\n\n\n' + open(path_from_root('tests', 'dlmalloc.c'), 'r').read()
self.do_test(src, '*1,0*', ['200', '1'])
self.do_test(src, '*400,0*', ['400', '400'], no_build=True)