@@ -3986,11 +3986,6 @@ def test_dlfcn_preload(self):
3986
3986
3987
3987
def dylink_test (self , main , side , expected = None , header = None , force_c = False ,
3988
3988
main_module = 2 , ** kwargs ):
3989
- # Temporarily enableing WASM_BIGINT in all dylink tests in order to allow
3990
- # a recent llvm change to land:
3991
- # https://github.com/llvm/llvm-project/pull/75242
3992
- # Once that lands we can use --no-shlib-sigcheck instead.
3993
- self .set_setting ('WASM_BIGINT' )
3994
3989
# Same as dylink_testf but take source code in string form
3995
3990
if not isinstance (side , list ):
3996
3991
side_file = 'liblib.cpp' if not force_c else 'liblib.c'
@@ -4010,13 +4005,6 @@ def dylink_testf(self, main, side=None, expected=None, force_c=False, main_emcc_
4010
4005
so_dir = '' ,
4011
4006
so_name = 'liblib.so' ,
4012
4007
** kwargs ):
4013
- # Temporarily enableing WASM_BIGINT in all dylink tests in order to allow
4014
- # a recent llvm change to land:
4015
- # https://github.com/llvm/llvm-project/pull/75242
4016
- # Once that lands we can use --no-shlib-sigcheck instead.
4017
- self .set_setting ('WASM_BIGINT' )
4018
- if self .get_setting ('MEMORY64' ) == 2 :
4019
- self .skipTest ('MEMORY64=2 + dynamic linking is in flux' )
4020
4008
main_emcc_args = main_emcc_args or []
4021
4009
if getattr (self , 'dylink_reversed' , False ):
4022
4010
# Test the reverse case. There we flip the role of the side module and main module.
0 commit comments