Skip to content

Commit a23fdef

Browse files
authored
[ci] Split browser64_4gb into its own runner (#21182)
Also add test_TextDecoder to the list of test.
1 parent a50cb95 commit a23fdef

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

.circleci/config.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ jobs:
653653
other.test_memory64_proxies
654654
other.test_failing_growth_wasm64"
655655
- upload-test-results
656-
test-wasm64_4gb:
656+
test-wasm64-4gb:
657657
environment:
658658
LANG: "C.UTF-8"
659659
# Only run 2 tests at a time to avoid OOM (since each tests used >4gb)
@@ -805,11 +805,14 @@ jobs:
805805
steps:
806806
- run-tests-chrome:
807807
title: "browser64"
808-
# skip test_4gb_fail as it OOMs on the current bot
809-
# Run a few tests in browser64_4gb mode too.
808+
test_targets: "browser64"
809+
test-browser-chrome-wasm64-4gb:
810+
executor: bionic
811+
steps:
812+
- run-tests-chrome:
813+
title: "browser64_4gb"
810814
test_targets: "
811-
browser64
812-
skip:browser64.test_4gb_fail
815+
browser64_4gb.test_TextDecoder*
813816
browser64_4gb.test_async_*
814817
browser64_4gb.test_audio_worklet*
815818
browser64_4gb.test_emscripten_log
@@ -953,7 +956,7 @@ workflows:
953956
- test-wasm64:
954957
requires:
955958
- build-linux
956-
- test-wasm64_4gb:
959+
- test-wasm64-4gb:
957960
requires:
958961
- build-linux
959962
- test-wasm64l:
@@ -971,6 +974,9 @@ workflows:
971974
- test-browser-chrome-wasm64:
972975
requires:
973976
- build-linux
977+
- test-browser-chrome-wasm64-4gb:
978+
requires:
979+
- build-linux
974980
- test-browser-firefox:
975981
requires:
976982
- build-linux

test/test_browser.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4555,7 +4555,6 @@ def test_utf8_textdecoder(self):
45554555
def test_utf16_textdecoder(self):
45564556
self.btest_exit('benchmark/benchmark_utf16.cpp', 0, args=['--embed-file', test_file('utf16_corpus.txt') + '@/utf16_corpus.txt', '-sEXPORTED_RUNTIME_METHODS=[UTF16ToString,stringToUTF16,lengthBytesUTF16]'])
45574557

4558-
@no_wasm64()
45594558
@parameterized({
45604559
'': ([],),
45614560
'closure': (['--closure=1'],),

0 commit comments

Comments
 (0)