@@ -108,12 +108,12 @@ commands:
108
108
name : embuilder build ALL
109
109
command : |
110
110
./embuilder build ALL
111
- ./tests /runner test_hello_world
111
+ ./test /runner test_hello_world
112
112
- run :
113
113
name : embuilder (LTO)
114
114
command : |
115
115
./embuilder build MINIMAL --lto
116
- ./tests /runner test_hello_world
116
+ ./test /runner test_hello_world
117
117
- run :
118
118
name : embuilder (WASM64)
119
119
command : |
@@ -122,12 +122,12 @@ commands:
122
122
name : embuilder (PIC)
123
123
command : |
124
124
./embuilder build MINIMAL_PIC --pic
125
- ./tests /runner test_hello_world
125
+ ./test /runner test_hello_world
126
126
- run :
127
127
name : embuilder (PIC+LTO)
128
128
command : |
129
129
./embuilder build MINIMAL --pic --lto
130
- ./tests /runner test_hello_world
130
+ ./test /runner test_hello_world
131
131
- run :
132
132
name : freeze cache
133
133
command : |
@@ -169,7 +169,7 @@ commands:
169
169
- run :
170
170
name : run tests
171
171
command : |
172
- ./tests /runner << parameters.test_targets >>
172
+ ./test /runner << parameters.test_targets >>
173
173
$EMSDK_PYTHON ./tools/check_clean.py
174
174
run-tests-linux :
175
175
description : " Runs emscripten tests"
@@ -229,7 +229,7 @@ commands:
229
229
echo "-----"
230
230
echo "Running browser tests"
231
231
echo "-----"
232
- tests /runner browser skip:browser.test_sdl2_mouse skip:browser.test_html5_webgl_create_context skip:browser.test_webgl_offscreen_canvas_in_pthread skip:browser.test_webgl_offscreen_canvas_in_mainthread_after_pthread skip:browser.test_glut_glutget
232
+ test /runner browser skip:browser.test_sdl2_mouse skip:browser.test_html5_webgl_create_context skip:browser.test_webgl_offscreen_canvas_in_pthread skip:browser.test_webgl_offscreen_canvas_in_mainthread_after_pthread skip:browser.test_glut_glutget
233
233
# posix and emrun suites are disabled because firefox errors on
234
234
# "Firefox is already running, but is not responding."
235
235
# TODO: find out a way to shut down and restart firefox
@@ -256,8 +256,8 @@ commands:
256
256
# PIC version of libSDL which is used by test_sdl2_misc_main_module
257
257
export EM_FROZEN_CACHE=""
258
258
# skip test_zzz_zzz_4gb_fail as it OOMs on the current bot
259
- tests /runner browser posixtest_browser.test_pthread_create_1_1 skip:browser.test_zzz_zzz_4gb_fail
260
- tests /runner emrun
259
+ test /runner browser posixtest_browser.test_pthread_create_1_1 skip:browser.test_zzz_zzz_4gb_fail
260
+ test /runner emrun
261
261
test-sockets-chrome :
262
262
description : " Runs emscripten sockets tests under chrome"
263
263
steps :
@@ -276,7 +276,7 @@ commands:
276
276
CHROME_FLAGS_NOCACHE : " --disk-cache-dir=/dev/null --disk-cache-size=1 --media-cache-size=1 --disable-application-cache --incognito"
277
277
command : |
278
278
export EMTEST_BROWSER="/usr/bin/google-chrome $CHROME_FLAGS_BASE $CHROME_FLAGS_HEADLESS $CHROME_FLAGS_WASM $CHROME_FLAGS_NOCACHE"
279
- tests /runner sockets
279
+ test /runner sockets
280
280
281
281
jobs :
282
282
build-docs :
0 commit comments