Skip to content

Commit a09fc6c

Browse files
committed
Temporarily disable test_fetch_polyfill_shared_lib under memory64
See llvm/llvm-project#98778 This issue only started showing up after the recent llvm change where shared libraries are actually processed by the linker: llvm/llvm-project#75242
1 parent 2ea813d commit a09fc6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_browser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5374,9 +5374,9 @@ def test_webpack(self, es6):
53745374
shutil.copyfile('webpack/src/hello.wasm', 'webpack/dist/hello.wasm')
53755375
self.run_browser('webpack/dist/index.html', '/report_result?exit:0')
53765376

5377+
@no_wasm64('https://github.com/llvm/llvm-project/issues/98778')
53775378
def test_fetch_polyfill_shared_lib(self):
53785379
create_file('library.c', r'''
5379-
#include <stdio.h>
53805380
int library_func() {
53815381
return 42;
53825382
}
@@ -5392,7 +5392,7 @@ def test_fetch_polyfill_shared_lib(self):
53925392
}
53935393
''')
53945394

5395-
self.run_process([EMCC, 'library.c', '-sSIDE_MODULE', '-O2', '-o', 'library.so'])
5395+
self.emcc('library.c', ['-sSIDE_MODULE', '-O2', '-o', 'library.so'])
53965396

53975397
def test(args, expect_fail):
53985398
self.compile_btest('main.c', ['-fPIC', 'library.so', '-sMAIN_MODULE=2', '-sEXIT_RUNTIME', '-o', 'a.out.html'] + args)

0 commit comments

Comments
 (0)