aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormax99x <max99x@gmail.com>2011-08-25 13:24:20 +0300
committermax99x <max99x@gmail.com>2011-08-25 13:24:46 +0300
commit414d1bdedfc87f9302128dfd8caadfa85ac01875 (patch)
tree01e62af3483d008373f3e08680126666da922201
parentd4ff97f04d704be111004b2ced8c2dc0e9be8681 (diff)
Fixed test_dlfcn_varargs (still failing, but correct expectations).
-rw-r--r--tests/runner.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py
index d40de496..8e946fef 100644
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -2089,6 +2089,7 @@ if 'benchmark' not in sys.argv:
self.do_test(src, 'Parent global: 123.*Parent global: 456.*',
output_nicerizer=lambda x: x.replace('\n', '*'),
post_build=add_pre_run_and_checks)
+ INCLUDE_FULL_LIBRARY = 0
def test_dlfcn_varargs(self):
global BUILD_AS_SHARED_LIB, EXPORTED_FUNCTIONS
@@ -2140,7 +2141,7 @@ if 'benchmark' not in sys.argv:
'''FS.createLazyFile('/', 'liblib.so', 'liblib.so', true, false);'''
)
open(filename, 'w').write(src)
- self.do_test(src, 'Parent global: 123.*Parent global: 456.*',
+ self.do_test(src, '100*200*13*42*',
output_nicerizer=lambda x: x.replace('\n', '*'),
post_build=add_pre_run_and_checks)