Skip to content

Commit

Permalink
fix dylink test
Browse files Browse the repository at this point in the history
  • Loading branch information
sbc100 committed Nov 20, 2018
1 parent 5602340 commit e245595
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -4057,7 +4057,7 @@ def test_dylink_hyper_dupe(self):
printf("only_in_third_1: %d, %d, %d, %d\n", sidef(), sideg, second_to_third, x);
}
''')
run_process([PYTHON, EMCC, 'third.cpp', '-s', 'SIDE_MODULE=1', '-s', 'EXPORT_ALL=1'] + Building.COMPILER_TEST_OPTS + self.emcc_args + ['-o', 'third' + dylib_suffix])
run_process([PYTHON, EMCC, 'third.cpp', '-s', 'SIDE_MODULE=1', '-s', 'EXPORT_ALL=1'] + self.get_emcc_args() + ['-o', 'third' + dylib_suffix])

self.dylink_test(main=r'''
#include <stdio.h>
Expand Down

0 comments on commit e245595

Please sign in to comment.