Skip to content

Commit 145b146

Browse files
authored
[wasm64] Run all browser tests in 4gb mode (#21334)
1 parent ff35d3f commit 145b146

11 files changed

+52
-43
lines changed

.circleci/config.yml

+3-15
Original file line numberDiff line numberDiff line change
@@ -814,24 +814,12 @@ jobs:
814814
test_targets: "browser_2gb"
815815
test-browser-chrome-wasm64-4gb:
816816
executor: bionic
817+
environment:
818+
EMTEST_SKIP_NODE_CANARY: "1"
817819
steps:
818820
- run-tests-chrome:
819821
title: "browser64_4gb"
820-
test_targets: "
821-
browser64_4gb.test_TextDecoder*
822-
browser64_4gb.test_async_*
823-
browser64_4gb.test_audio_worklet*
824-
browser64_4gb.test_emscripten_log
825-
browser64_4gb.test_clientside_vertex_arrays_es3
826-
browser64_4gb.test_fetch*
827-
browser64_4gb.test_emscripten_animate_canvas_element_size_manual_css
828-
browser64_4gb.test_fulles2_sdlproc
829-
browser64_4gb.test_html5_webgl_create_context*
830-
browser64_4gb.test_sdl_image
831-
browser64_4gb.test_wasm_worker*
832-
browser64_4gb.test_cube_explosion
833-
browser64_4gb.test_cubegeom_*
834-
"
822+
test_targets: "browser64_4gb"
835823
test-browser-firefox:
836824
executor: bionic
837825
steps:

src/library_html5.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2273,7 +2273,7 @@ var LibraryHTML5 = {
22732273
}
22742274
#if OFFSCREENCANVAS_SUPPORT
22752275
} else if (canvas.canvasSharedPtr) {
2276-
var targetThread = {{{ makeGetValue('canvas.canvasSharedPtr', 8, 'i32') }}};
2276+
var targetThread = {{{ makeGetValue('canvas.canvasSharedPtr', 8, '*') }}};
22772277
setOffscreenCanvasSizeOnTargetThread(targetThread, target, width, height);
22782278
return {{{ cDefs.EMSCRIPTEN_RESULT_DEFERRED }}}; // This will have to be done asynchronously
22792279
#endif

src/library_idbstore.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ var LibraryIDBStore = {
103103
}
104104
var buffer = _malloc(byteArray.length); // must be freed by the caller!
105105
HEAPU8.set(byteArray, buffer);
106-
{{{ makeSetValue('pbuffer', 0, 'buffer', 'i32') }}};
106+
{{{ makeSetValue('pbuffer', 0, 'buffer', '*') }}};
107107
{{{ makeSetValue('pnum', 0, 'byteArray.length', 'i32') }}};
108108
{{{ makeSetValue('perror', 0, '0', 'i32') }}};
109109
wakeUp();

src/library_pthread.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,7 @@ var LibraryPThread = {
875875
// owns the OffscreenCanvas.
876876
for (var canvas of Object.values(offscreenCanvases)) {
877877
// pthread ptr to the thread that owns this canvas.
878-
{{{ makeSetValue('canvas.canvasSharedPtr', 8, 'pthread_ptr', 'i32') }}};
878+
{{{ makeSetValue('canvas.canvasSharedPtr', 8, 'pthread_ptr', '*') }}};
879879
}
880880
#endif
881881

src/library_webgl.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -1731,7 +1731,8 @@ for (/**@suppress{duplicate}*/var i = 0; i < {{{ GL_POOL_TEMP_BUFFERS_SIZE }}};
17311731
GLctx.readPixels(x, y, width, height, format, type, pixels);
17321732
} else {
17331733
var heap = heapObjectForWebGLType(type);
1734-
GLctx.readPixels(x, y, width, height, format, type, heap, toTypedArrayIndex(pixels, heap));
1734+
var target = toTypedArrayIndex(pixels, heap);
1735+
GLctx.readPixels(x, y, width, height, format, type, heap, target);
17351736
}
17361737
return;
17371738
}
@@ -3310,7 +3311,7 @@ for (/**@suppress{duplicate}*/var i = 0; i < {{{ GL_POOL_TEMP_BUFFERS_SIZE }}};
33103311
if (length) {{{ makeSetValue('length', '0', 'numBytesWrittenExclNull', 'i32') }}};
33113312
},
33123313

3313-
glGetShaderiv : (shader, pname, p) => {
3314+
glGetShaderiv: (shader, pname, p) => {
33143315
if (!p) {
33153316
// GLES2 specification does not specify how to behave if p is a null
33163317
// pointer. Since calling this function does not make sense if p == null,

test/browser/webgl2_garbage_free_entrypoints.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ int main(int argc, char *argv[])
101101
glDrawArrays(GL_TRIANGLES, 0, 6);
102102

103103
unsigned char pixel[4];
104-
glReadPixels(1,1,1,1,GL_RGBA,GL_UNSIGNED_BYTE, pixel);
104+
glReadPixels(1, 1, 1, 1, GL_RGBA,GL_UNSIGNED_BYTE, pixel);
105105
printf("%d,%d,%d,%d\n", pixel[0], pixel[1], pixel[2], pixel[3]);
106106
assert(pixel[0] == 255);
107107
assert(pixel[1] == 178);

test/browser/webgl2_get_buffer_sub_data.cpp

+10-1
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,19 @@ int main()
2121
glBindBuffer(GL_ARRAY_BUFFER, buffer);
2222
glBufferData(GL_ARRAY_BUFFER, sizeof(data), data, GL_STATIC_DRAW);
2323

24-
uint8_t data2[8] = {};
24+
uint8_t data2[8] = { 1, 1, 1, 1, 1, 1, 1, 1 };
2525

2626
// Test full buffer read
2727
glGetBufferSubData(GL_ARRAY_BUFFER, 0, sizeof(data), data2);
28+
printf("read data: %x %x %x %x %x %x %x %x\n",
29+
data2[0],
30+
data2[1],
31+
data2[2],
32+
data2[3],
33+
data2[4],
34+
data2[5],
35+
data2[6],
36+
data2[7]);
2837
assert(!memcmp(data, data2, sizeof(data)));
2938

3039
// Test partial buffer read

test/resize_offscreencanvas_from_main_thread.cpp

+7-12
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
// If not defined, the pthread that owns the OffscreenCanvas is using emscripten_set_main_loop() so periodically yields back to the event loop.
1515
// #define TEST_SYNC_BLOCKING_LOOP
1616

17-
void thread_local_main_loop()
18-
{
17+
void thread_local_main_loop() {
1918
int w = 0, h = 0;
2019
emscripten_get_canvas_element_size("#canvas", &w, &h);
2120
if (w == 699 && h == 299) {
@@ -27,11 +26,10 @@ void thread_local_main_loop()
2726

2827
emscripten_force_exit(0);
2928
}
30-
printf("%dx%d\n", w, h);
29+
printf("thread_local_main_loop: %dx%d\n", w, h);
3130
}
3231

33-
void *thread_main(void *arg)
34-
{
32+
void *thread_main(void *arg) {
3533
EmscriptenWebGLContextAttributes attr;
3634
emscripten_webgl_init_context_attributes(&attr);
3735
attr.explicitSwapControl = EM_TRUE;
@@ -57,31 +55,28 @@ void *thread_main(void *arg)
5755
return 0;
5856
}
5957

60-
void resize_canvas(void *)
61-
{
58+
void resize_canvas(void* arg) {
6259
// Test that on the main thread, we can observe size changes to the canvas size.
6360
int w, h;
6461
emscripten_get_canvas_element_size("#canvas", &w, &h);
62+
printf("Main thread saw canvas to get resized to %dx%d.\n", w, h);
6563
assert(w == 355 && "We did not observe the effect of pthread having resized OffscreenCanvas");
6664
assert(h == 233);
67-
printf("Main thread saw canvas to get resized to %dx%d.\n", w, h);
6865

6966
// Test that on the main thread, we can also change the size. (pthread listens to see this)
7067
printf("Main thread resizing OffscreenCanvas to size 699x299.\n");
7168
emscripten_set_canvas_element_size("#canvas", 699, 299);
7269
}
7370

7471
//should be able to do this regardless of offscreen canvas support
75-
void get_canvas_size()
76-
{
72+
void get_canvas_size() {
7773
int w, h;
7874
emscripten_get_canvas_element_size("#canvas", &w, &h);
7975
assert(h == 150);
8076
assert(w == 300);
8177
}
8278

83-
int main()
84-
{
79+
int main() {
8580
get_canvas_size();
8681
if (!emscripten_supports_offscreencanvas()) {
8782
printf("Current browser does not support OffscreenCanvas. Skipping the rest of the tests.\n");

test/runtime_misuse.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ extern "C" {
1111
int noted = 0;
1212

1313
char* EMSCRIPTEN_KEEPALIVE note(int n) {
14-
EM_ASM({ Module.noted = Number($0); out("set noted " + Module.noted) }, (long)&noted);
14+
EM_ASM({ Module.noted = Number($0); out("set noted " + Module.noted) }, &noted);
1515
EM_ASM({ out([$0, $1]) }, n, noted);
1616
noted += n;
1717
EM_ASM({ out(['noted is now', $0]) }, noted);

test/runtime_misuse_2.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ extern "C" {
1111
int noted = 0;
1212

1313
char* EMSCRIPTEN_KEEPALIVE note(int n) {
14-
EM_ASM({ Module.noted = Number($0) }, (long)&noted);
14+
EM_ASM({ Module.noted = Number($0); out("set noted " + Module.noted) }, &noted);
1515
EM_ASM({ out([$0, $1]) }, n, noted);
1616
noted += n;
1717
EM_ASM({ out(['noted is now', $0]) }, noted);

test/test_browser.py

+23-7
Original file line numberDiff line numberDiff line change
@@ -1341,6 +1341,7 @@ def test_webgl_parallel_shader_compile(self):
13411341
self.btest_exit('webgl_parallel_shader_compile.cpp')
13421342

13431343
@requires_graphics_hardware
1344+
@no_4gb('readPixels fails: https://crbug.com/324992397')
13441345
def test_webgl_explicit_uniform_location(self):
13451346
self.btest_exit('webgl_explicit_uniform_location.c', args=['-sGL_EXPLICIT_UNIFORM_LOCATION', '-sMIN_WEBGL_VERSION=2'])
13461347

@@ -1349,6 +1350,7 @@ def test_webgl_sampler_layout_binding(self):
13491350
self.btest_exit('webgl_sampler_layout_binding.c', args=['-sGL_EXPLICIT_UNIFORM_BINDING'])
13501351

13511352
@requires_graphics_hardware
1353+
@no_4gb('readPixels fails: https://crbug.com/324992397')
13521354
def test_webgl2_ubo_layout_binding(self):
13531355
self.btest_exit('webgl2_ubo_layout_binding.c', args=['-sGL_EXPLICIT_UNIFORM_BINDING', '-sMIN_WEBGL_VERSION=2'])
13541356

@@ -1550,6 +1552,7 @@ def test_sdl_gl_read(self):
15501552
self.btest_exit('test_sdl_gl_read.c', args=['-lSDL', '-lGL'])
15511553

15521554
@requires_graphics_hardware
1555+
@no_4gb('readPixels fails: https://crbug.com/324992397')
15531556
def test_sdl_gl_mapbuffers(self):
15541557
self.btest_exit('test_sdl_gl_mapbuffers.c', args=['-sFULL_ES3', '-lSDL', '-lGL'])
15551558

@@ -1685,6 +1688,9 @@ def test_worker(self):
16851688
self.run_browser('main.html', '/report_result?hello from worker, and :' + ('data for w' if file_data else '') + ':')
16861689

16871690
# 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()
16881694
self.assertContained('you should not see this text when in a worker!', self.run_js('worker.js'))
16891695

16901696
@no_wasmfs('https://github.com/emscripten-core/emscripten/issues/19608')
@@ -2520,7 +2526,7 @@ def test_runtime_misuse(self, mode):
25202526
var xhr = new XMLHttpRequest();
25212527
out('done timeout noted = ' + Module.noted);
25222528
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]);
25242530
xhr.send();
25252531
setTimeout(function() { window.close() }, 1000);
25262532
}, 0);
@@ -2766,6 +2772,7 @@ def test_webgl2(self, args):
27662772

27672773
# Tests the WebGL 2 glGetBufferSubData() functionality.
27682774
@requires_graphics_hardware
2775+
@no_4gb('getBufferSubData fails: https://crbug.com/325090165')
27692776
def test_webgl2_get_buffer_sub_data(self):
27702777
self.btest_exit('webgl2_get_buffer_sub_data.cpp', args=['-sMAX_WEBGL_VERSION=2', '-lGL'])
27712778

@@ -2811,6 +2818,8 @@ def test_webgl2_ubos(self):
28112818
'webgl2': (['-sMAX_WEBGL_VERSION=2', '-DTEST_WEBGL2=1'],),
28122819
})
28132820
def test_webgl2_garbage_free_entrypoints(self, args):
2821+
if args and self.is_4gb():
2822+
self.skipTest('readPixels fails: https://crbug.com/324992397')
28142823
self.btest_exit('webgl2_garbage_free_entrypoints.cpp', args=args)
28152824

28162825
@requires_graphics_hardware
@@ -2838,30 +2847,36 @@ def test_webgl2_packed_types(self):
28382847
self.btest_exit('webgl2_draw_packed_triangle.c', args=['-lGL', '-sMAX_WEBGL_VERSION=2', '-sGL_ASSERTIONS'])
28392848

28402849
@requires_graphics_hardware
2850+
@no_4gb('compressedTexSubImage2D fails: https://crbug.com/324562920')
28412851
def test_webgl2_pbo(self):
28422852
self.btest_exit('webgl2_pbo.cpp', args=['-sMAX_WEBGL_VERSION=2', '-lGL'])
28432853

28442854
@no_firefox('fails on CI likely due to GPU drivers there')
28452855
@requires_graphics_hardware
2856+
@no_4gb('fails to render')
28462857
def test_webgl2_sokol_mipmap(self):
28472858
self.btest('third_party/sokol/mipmap-emsc.c', args=['-sMAX_WEBGL_VERSION=2', '-lGL', '-O1'],
28482859
reference='third_party/sokol/mipmap-emsc.png', reference_slack=2)
28492860

28502861
@no_firefox('fails on CI likely due to GPU drivers there')
2862+
@no_4gb('fails to render')
28512863
@requires_graphics_hardware
28522864
def test_webgl2_sokol_mrt(self):
28532865
self.btest('third_party/sokol/mrt-emcc.c', args=['-sMAX_WEBGL_VERSION=2', '-lGL'],
28542866
reference='third_party/sokol/mrt-emcc.png')
28552867

28562868
@requires_graphics_hardware
2869+
@no_4gb('fails to render')
28572870
def test_webgl2_sokol_arraytex(self):
28582871
self.btest('third_party/sokol/arraytex-emsc.c', args=['-sMAX_WEBGL_VERSION=2', '-lGL'],
28592872
reference='third_party/sokol/arraytex-emsc.png')
28602873

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'])
28652880

28662881
def test_html5_mouse(self):
28672882
for opts in [[], ['-O2', '-g1', '--closure=1']]:
@@ -4688,9 +4703,9 @@ def test_webgl_draw_base_vertex_base_instance(self):
46884703
'-DWEBGL_CONTEXT_VERSION=2'])
46894704

46904705
@requires_graphics_hardware
4706+
@no_4gb('fails to render')
46914707
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'])
46944709

46954710
@requires_graphics_hardware
46964711
@parameterized({
@@ -4746,6 +4761,7 @@ def test_webgl_offscreen_framebuffer_state_restoration(self):
47464761

47474762
# Tests that using an array of structs in GL uniforms works.
47484763
@requires_graphics_hardware
4764+
@no_4gb('fails to render')
47494765
def test_webgl_array_of_structs_uniform(self):
47504766
self.btest('webgl_array_of_structs_uniform.c', args=['-lGL', '-sMAX_WEBGL_VERSION=2'], reference='browser/webgl_array_of_structs_uniform.png')
47514767

0 commit comments

Comments
 (0)