Skip to content

Commit 8d0c015

Browse files
tlivelyradekdoulik
authored andcommitted
Fix Alpine CI by removing old node flag (WebAssembly#6054)
Apparently the version of node on the Alpine runner was updated and no longer recognizes the --experimental-wasm-threads option. Delete this option out of the test that was using it.
1 parent 815de86 commit 8d0c015

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

test/lit/wasm-split/profile-guided.wast

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66

77
;; Create profiles
88

9-
;; RUN: node --experimental-wasm-threads %S/call_exports.mjs %t.instrumented.wasm %t.foo.prof foo
10-
;; RUN: node --experimental-wasm-threads %S/call_exports.mjs %t.instrumented.wasm %t.bar.prof bar
11-
;; RUN: node --experimental-wasm-threads %S/call_exports.mjs %t.instrumented.wasm %t.both.prof foo bar
12-
;; RUN: node --experimental-wasm-threads %S/call_exports.mjs %t.instrumented.wasm %t.none.prof
9+
;; RUN: node %S/call_exports.mjs %t.instrumented.wasm %t.foo.prof foo
10+
;; RUN: node %S/call_exports.mjs %t.instrumented.wasm %t.bar.prof bar
11+
;; RUN: node %S/call_exports.mjs %t.instrumented.wasm %t.both.prof foo bar
12+
;; RUN: node %S/call_exports.mjs %t.instrumented.wasm %t.none.prof
1313

1414
;; Create profile-guided splits
1515

@@ -33,10 +33,10 @@
3333

3434
;; Create profiles
3535

36-
;; RUN: node --experimental-wasm-threads %S/call_exports.mjs %t.instrumented.wasm %t.foo.prof foo
37-
;; RUN: node --experimental-wasm-threads %S/call_exports.mjs %t.instrumented.wasm %t.bar.prof bar
38-
;; RUN: node --experimental-wasm-threads %S/call_exports.mjs %t.instrumented.wasm %t.both.prof foo bar
39-
;; RUN: node --experimental-wasm-threads %S/call_exports.mjs %t.instrumented.wasm %t.none.prof
36+
;; RUN: node %S/call_exports.mjs %t.instrumented.wasm %t.foo.prof foo
37+
;; RUN: node %S/call_exports.mjs %t.instrumented.wasm %t.bar.prof bar
38+
;; RUN: node %S/call_exports.mjs %t.instrumented.wasm %t.both.prof foo bar
39+
;; RUN: node %S/call_exports.mjs %t.instrumented.wasm %t.none.prof
4040

4141
;; Create profile-guided splits
4242

0 commit comments

Comments
 (0)