aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-02-19 19:26:18 +0100
committerAlon Zakai <alonzakai@gmail.com>2013-02-19 19:26:18 +0100
commit03d7c8e05ec1cf27a198d84cbdca74efd495e4d6 (patch)
treec068bdbb114df1e61e82c39566bc5c806f430202
parent5f3f6b02c10c1592ef0c85f119ec2fbe6e59bca7 (diff)
remove unneeded sign correction from dlmalloc benchmark
-rwxr-xr-xtests/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py
index abd925bf..2eac7e7b 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -11168,7 +11168,7 @@ elif 'benchmark' in str(sys.argv):
def test_dlmalloc(self):
# XXX This seems to have regressed slightly with emcc. Are -g and the signs lines passed properly?
src = open(path_from_root('system', 'lib', 'dlmalloc.c'), 'r').read() + '\n\n\n' + open(path_from_root('tests', 'dlmalloc_test.c'), 'r').read()
- self.do_benchmark('dlmalloc', src, ['400', '3000'], '*3000,0*', emcc_args=['-g', '-s', 'CORRECT_SIGNS=2', '-s', 'CORRECT_SIGNS_LINES=[4820, 4195, 4250, 4203, 4209, 4239, 4231]'])
+ self.do_benchmark('dlmalloc', src, ['400', '3000'], '*3000,0*')
def test_zlib(self):
src = open(path_from_root('tests', 'zlib', 'benchmark.c'), 'r').read()