@@ -234,10 +234,6 @@ def setUp(self):
234
234
'-Wno-int-conversion' ,
235
235
]
236
236
237
- def require_wasm64 (self ):
238
- # All the browsers we run on support wasm64 (Chrome and Firefox).
239
- return True
240
-
241
237
def require_wasm2js (self ):
242
238
if self .is_wasm64 ():
243
239
self .skipTest ('wasm2js is not compatible with MEMORY64' )
@@ -1691,9 +1687,7 @@ def test_worker(self):
1691
1687
self .run_browser ('main.html' , '/report_result?hello from worker, and :' + ('data for w' if file_data else '' ) + ':' )
1692
1688
1693
1689
# code should run standalone too
1694
- # (doesn't work under browser64 due to `require_wasm64` hack in this class)
1695
- if not self .is_wasm64 ():
1696
- self .assertContained ('you should not see this text when in a worker!' , self .run_js ('worker.js' ))
1690
+ self .assertContained ('you should not see this text when in a worker!' , self .run_js ('worker.js' ))
1697
1691
1698
1692
@no_wasmfs ('https://github.com/emscripten-core/emscripten/issues/19608' )
1699
1693
def test_mmap_lazyfile (self ):
@@ -5562,7 +5556,7 @@ def test_wasm_worker_proxied_function(self):
5562
5556
5563
5557
@no_firefox ('no 4GB support yet' )
5564
5558
@requires_v8
5565
- def test_zzz_zzz_4gb (self ):
5559
+ def test_4gb (self ):
5566
5560
# TODO Convert to an actual browser test when it reaches stable.
5567
5561
# For now, keep this in browser as this suite runs serially, which
5568
5562
# means we don't compete for memory with anything else (and run it
@@ -5576,7 +5570,7 @@ def test_zzz_zzz_4gb(self):
5576
5570
5577
5571
# Tests that emmalloc supports up to 4GB Wasm heaps.
5578
5572
@no_firefox ('no 4GB support yet' )
5579
- def test_zzz_zzz_emmalloc_4gb (self ):
5573
+ def test_emmalloc_4gb (self ):
5580
5574
# For now, keep this in browser as this suite runs serially, which
5581
5575
# means we don't compete for memory with anything else (and run it
5582
5576
# at the very very end, to reduce the risk of it OOM-killing the
@@ -5653,12 +5647,12 @@ def test_wasmfs_opfs_errors(self):
5653
5647
self .btest (test , args = args , expected = "0" )
5654
5648
5655
5649
@no_firefox ('no 4GB support yet' )
5656
- def test_zzz_zzz_emmalloc_memgrowth (self , * args ):
5650
+ def test_emmalloc_memgrowth (self , * args ):
5657
5651
self .btest ('emmalloc_memgrowth.cpp' , expected = '0' , args = ['-sMALLOC=emmalloc' , '-sALLOW_MEMORY_GROWTH=1' , '-sABORTING_MALLOC=0' , '-sASSERTIONS=2' , '-sMINIMAL_RUNTIME=1' , '-sMAXIMUM_MEMORY=4GB' ])
5658
5652
5659
5653
@no_firefox ('no 4GB support yet' )
5660
5654
@requires_v8
5661
- def test_zzz_zzz_2gb_fail (self ):
5655
+ def test_2gb_fail (self ):
5662
5656
# TODO Convert to an actual browser test when it reaches stable.
5663
5657
# For now, keep this in browser as this suite runs serially, which
5664
5658
# means we don't compete for memory with anything else (and run it
@@ -5673,7 +5667,7 @@ def test_zzz_zzz_2gb_fail(self):
5673
5667
@no_firefox ('no 4GB support yet' )
5674
5668
@requires_v8
5675
5669
@no_wasm64 ()
5676
- def test_zzz_zzz_4gb_fail (self ):
5670
+ def test_4gb_fail (self ):
5677
5671
# TODO Convert to an actual browser test when it reaches stable.
5678
5672
# For now, keep this in browser as this suite runs serially, which
5679
5673
# means we don't compete for memory with anything else (and run it
0 commit comments