Skip to content

Commit 28dab92

Browse files
committed
update other.test_emterpreter
1 parent e55cdf4 commit 28dab92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_other.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4544,13 +4544,13 @@ def do_log_test(source, expected, func):
45444544
assert expected == seen or (seen in expected if type(expected) in [list, tuple] else False), ['expect', expected, 'but see', seen]
45454545

45464546
do_log_test(path_from_root('tests', 'primes.cpp'), range(88, 92), '_main')
4547-
do_log_test(path_from_root('tests', 'fannkuch.cpp'), range(227, 230), '__Z15fannkuch_workerPv')
4547+
do_log_test(path_from_root('tests', 'fannkuch.cpp'), range(226, 229), '__Z15fannkuch_workerPv')
45484548

45494549
# test non-native as well, registerizeHarder can be a little more efficient here
45504550
old_native = os.environ.get('EMCC_NATIVE_OPTIMIZER')
45514551
try:
45524552
os.environ['EMCC_NATIVE_OPTIMIZER'] = '0'
4553-
do_log_test(path_from_root('tests', 'fannkuch.cpp'), range(227, 230), '__Z15fannkuch_workerPv')
4553+
do_log_test(path_from_root('tests', 'fannkuch.cpp'), range(226, 229), '__Z15fannkuch_workerPv')
45544554
finally:
45554555
if old_native: os.environ['EMCC_NATIVE_OPTIMIZER'] = old_native
45564556
else: del os.environ['EMCC_NATIVE_OPTIMIZER']

0 commit comments

Comments
 (0)