File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,6 @@ executors:
17
17
EMTEST_WASI_SYSROOT : " ~/wasi-sdk/wasi-sysroot"
18
18
EMTEST_BUILD_VERBOSE : " 2"
19
19
EMTEST_DETECT_TEMPFILE_LEAKS : " 1"
20
- # Currently pinned to 10.5.35 due to https://github.com/emscripten-core/emscripten/issues/17278
21
- V8_VERSION : " 10.5.35"
22
20
mac :
23
21
environment :
24
22
EMSDK_NOTTY : " 1"
@@ -84,7 +82,7 @@ commands:
84
82
# as a "bleeding edge" shell here, basically, with node being the
85
83
# primary shell (which we run without any special flags)
86
84
# Refer to commit 0bc3640 if we need to pin V8 version.
87
- echo "V8_ENGINE = [os.path.expanduser('~/.jsvu/v8-${V8_VERSION} '), '--wasm-staging']" >> .emscripten
85
+ echo "V8_ENGINE = [os.path.expanduser('~/.jsvu/v8'), '--wasm-staging']" >> .emscripten
88
86
echo "JS_ENGINES = [NODE_JS]" >> .emscripten
89
87
echo "if os.path.exists(V8_ENGINE[0]): JS_ENGINES.append(V8_ENGINE)" >> .emscripten
90
88
echo "WASM_ENGINES = []" >> .emscripten
@@ -346,8 +344,7 @@ jobs:
346
344
export PATH="`pwd`/node-v12.13.0-linux-x64/bin:${PATH}"
347
345
npm install jsvu -g
348
346
export PATH="${HOME}/.jsvu:${PATH}"
349
- jsvu --os=default --engines=v8 v8@${V8_VERSION}
350
-
347
+ jsvu --os=default --engines=v8
351
348
- build
352
349
- build-libs-and-freeze
353
350
- persist
Original file line number Diff line number Diff line change @@ -7963,6 +7963,8 @@ def test_vswprintf_utf8(self):
7963
7963
@no_wasm64 ('TODO: asyncify for wasm64' )
7964
7964
@with_asyncify_and_stack_switching
7965
7965
def test_async_hello (self ):
7966
+ if self .get_setting ('ASYNCIFY' ) == 2 :
7967
+ self .skipTest ('https://github.com/emscripten-core/emscripten/issues/17532' )
7966
7968
# needs to flush stdio streams
7967
7969
self .set_setting ('EXIT_RUNTIME' )
7968
7970
Original file line number Diff line number Diff line change @@ -12234,6 +12234,7 @@ def test_multiple_g_flags(self):
12234
12234
self .assertNotIn (b'.debug' , read_binary ('hello_world.o' ))
12235
12235
12236
12236
@requires_v8
12237
+ @disabled ('https://github.com/emscripten-core/emscripten/issues/17532' )
12237
12238
def test_stack_switching_size (self ):
12238
12239
# use iostream code here to purposefully get a fairly large wasm file, so
12239
12240
# that our size comparisons later are meaningful
You can’t perform that action at this time.
0 commit comments