@@ -1341,6 +1341,7 @@ def test_webgl_parallel_shader_compile(self):
1341
1341
self .btest_exit ('webgl_parallel_shader_compile.cpp' )
1342
1342
1343
1343
@requires_graphics_hardware
1344
+ @no_4gb ('readPixels fails: https://crbug.com/324992397' )
1344
1345
def test_webgl_explicit_uniform_location (self ):
1345
1346
self .btest_exit ('webgl_explicit_uniform_location.c' , args = ['-sGL_EXPLICIT_UNIFORM_LOCATION' , '-sMIN_WEBGL_VERSION=2' ])
1346
1347
@@ -1349,6 +1350,7 @@ def test_webgl_sampler_layout_binding(self):
1349
1350
self .btest_exit ('webgl_sampler_layout_binding.c' , args = ['-sGL_EXPLICIT_UNIFORM_BINDING' ])
1350
1351
1351
1352
@requires_graphics_hardware
1353
+ @no_4gb ('readPixels fails: https://crbug.com/324992397' )
1352
1354
def test_webgl2_ubo_layout_binding (self ):
1353
1355
self .btest_exit ('webgl2_ubo_layout_binding.c' , args = ['-sGL_EXPLICIT_UNIFORM_BINDING' , '-sMIN_WEBGL_VERSION=2' ])
1354
1356
@@ -1550,6 +1552,7 @@ def test_sdl_gl_read(self):
1550
1552
self .btest_exit ('test_sdl_gl_read.c' , args = ['-lSDL' , '-lGL' ])
1551
1553
1552
1554
@requires_graphics_hardware
1555
+ @no_4gb ('readPixels fails: https://crbug.com/324992397' )
1553
1556
def test_sdl_gl_mapbuffers (self ):
1554
1557
self .btest_exit ('test_sdl_gl_mapbuffers.c' , args = ['-sFULL_ES3' , '-lSDL' , '-lGL' ])
1555
1558
@@ -1685,6 +1688,9 @@ def test_worker(self):
1685
1688
self .run_browser ('main.html' , '/report_result?hello from worker, and :' + ('data for w' if file_data else '' ) + ':' )
1686
1689
1687
1690
# code should run standalone too
1691
+ # To great memories >4gb we need the canary version of node
1692
+ if self .is_4gb ():
1693
+ self .require_node_canary ()
1688
1694
self .assertContained ('you should not see this text when in a worker!' , self .run_js ('worker.js' ))
1689
1695
1690
1696
@no_wasmfs ('https://github.com/emscripten-core/emscripten/issues/19608' )
@@ -2520,7 +2526,7 @@ def test_runtime_misuse(self, mode):
2520
2526
var xhr = new XMLHttpRequest();
2521
2527
out('done timeout noted = ' + Module.noted);
2522
2528
assert(Module.noted);
2523
- xhr.open('GET', 'http://localhost:%s/report_result?' + HEAP32[Module.noted>>2 ]);
2529
+ xhr.open('GET', 'http://localhost:%s/report_result?' + HEAP32[Module.noted/4 ]);
2524
2530
xhr.send();
2525
2531
setTimeout(function() { window.close() }, 1000);
2526
2532
}, 0);
@@ -2766,6 +2772,7 @@ def test_webgl2(self, args):
2766
2772
2767
2773
# Tests the WebGL 2 glGetBufferSubData() functionality.
2768
2774
@requires_graphics_hardware
2775
+ @no_4gb ('getBufferSubData fails: https://crbug.com/325090165' )
2769
2776
def test_webgl2_get_buffer_sub_data (self ):
2770
2777
self .btest_exit ('webgl2_get_buffer_sub_data.cpp' , args = ['-sMAX_WEBGL_VERSION=2' , '-lGL' ])
2771
2778
@@ -2811,6 +2818,8 @@ def test_webgl2_ubos(self):
2811
2818
'webgl2' : (['-sMAX_WEBGL_VERSION=2' , '-DTEST_WEBGL2=1' ],),
2812
2819
})
2813
2820
def test_webgl2_garbage_free_entrypoints (self , args ):
2821
+ if args and self .is_4gb ():
2822
+ self .skipTest ('readPixels fails: https://crbug.com/324992397' )
2814
2823
self .btest_exit ('webgl2_garbage_free_entrypoints.cpp' , args = args )
2815
2824
2816
2825
@requires_graphics_hardware
@@ -2838,30 +2847,36 @@ def test_webgl2_packed_types(self):
2838
2847
self .btest_exit ('webgl2_draw_packed_triangle.c' , args = ['-lGL' , '-sMAX_WEBGL_VERSION=2' , '-sGL_ASSERTIONS' ])
2839
2848
2840
2849
@requires_graphics_hardware
2850
+ @no_4gb ('compressedTexSubImage2D fails: https://crbug.com/324562920' )
2841
2851
def test_webgl2_pbo (self ):
2842
2852
self .btest_exit ('webgl2_pbo.cpp' , args = ['-sMAX_WEBGL_VERSION=2' , '-lGL' ])
2843
2853
2844
2854
@no_firefox ('fails on CI likely due to GPU drivers there' )
2845
2855
@requires_graphics_hardware
2856
+ @no_4gb ('fails to render' )
2846
2857
def test_webgl2_sokol_mipmap (self ):
2847
2858
self .btest ('third_party/sokol/mipmap-emsc.c' , args = ['-sMAX_WEBGL_VERSION=2' , '-lGL' , '-O1' ],
2848
2859
reference = 'third_party/sokol/mipmap-emsc.png' , reference_slack = 2 )
2849
2860
2850
2861
@no_firefox ('fails on CI likely due to GPU drivers there' )
2862
+ @no_4gb ('fails to render' )
2851
2863
@requires_graphics_hardware
2852
2864
def test_webgl2_sokol_mrt (self ):
2853
2865
self .btest ('third_party/sokol/mrt-emcc.c' , args = ['-sMAX_WEBGL_VERSION=2' , '-lGL' ],
2854
2866
reference = 'third_party/sokol/mrt-emcc.png' )
2855
2867
2856
2868
@requires_graphics_hardware
2869
+ @no_4gb ('fails to render' )
2857
2870
def test_webgl2_sokol_arraytex (self ):
2858
2871
self .btest ('third_party/sokol/arraytex-emsc.c' , args = ['-sMAX_WEBGL_VERSION=2' , '-lGL' ],
2859
2872
reference = 'third_party/sokol/arraytex-emsc.png' )
2860
2873
2861
- def test_sdl_touch (self ):
2862
- for opts in [[], ['-O2' , '-g1' , '--closure=1' ]]:
2863
- print (opts )
2864
- self .btest_exit ('test_sdl_touch.c' , args = opts + ['-DAUTOMATE_SUCCESS=1' , '-lSDL' , '-lGL' ])
2874
+ @parameterized ({
2875
+ '' : ([],),
2876
+ 'closure' : (['-O2' , '-g1' , '--closure=1' ],),
2877
+ })
2878
+ def test_sdl_touch (self , opts ):
2879
+ self .btest_exit ('test_sdl_touch.c' , args = opts + ['-DAUTOMATE_SUCCESS=1' , '-lSDL' , '-lGL' ])
2865
2880
2866
2881
def test_html5_mouse (self ):
2867
2882
for opts in [[], ['-O2' , '-g1' , '--closure=1' ]]:
@@ -4688,9 +4703,9 @@ def test_webgl_draw_base_vertex_base_instance(self):
4688
4703
'-DWEBGL_CONTEXT_VERSION=2' ])
4689
4704
4690
4705
@requires_graphics_hardware
4706
+ @no_4gb ('fails to render' )
4691
4707
def test_webgl_sample_query (self ):
4692
- cmd = ['-sMAX_WEBGL_VERSION=2' , '-lGL' ]
4693
- self .btest_exit ('webgl_sample_query.cpp' , args = cmd )
4708
+ self .btest_exit ('webgl_sample_query.cpp' , args = ['-sMAX_WEBGL_VERSION=2' , '-lGL' ])
4694
4709
4695
4710
@requires_graphics_hardware
4696
4711
@parameterized ({
@@ -4746,6 +4761,7 @@ def test_webgl_offscreen_framebuffer_state_restoration(self):
4746
4761
4747
4762
# Tests that using an array of structs in GL uniforms works.
4748
4763
@requires_graphics_hardware
4764
+ @no_4gb ('fails to render' )
4749
4765
def test_webgl_array_of_structs_uniform (self ):
4750
4766
self .btest ('webgl_array_of_structs_uniform.c' , args = ['-lGL' , '-sMAX_WEBGL_VERSION=2' ], reference = 'browser/webgl_array_of_structs_uniform.png' )
4751
4767
0 commit comments