Skip to content

Commit

Permalink
[ci] Split browser64_4gb into its own runner
Browse files Browse the repository at this point in the history
Also add test_TextDecoder to the list of test.
  • Loading branch information
sbc100 committed Jan 26, 2024
1 parent 6ae900e commit 36762d0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
16 changes: 11 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@ jobs:
other.test_memory64_proxies
other.test_failing_growth_wasm64"
- upload-test-results
test-wasm64_4gb:
test-wasm64-4gb:
environment:
LANG: "C.UTF-8"
# Only run 2 tests at a time to avoid OOM (since each tests used >4gb)
Expand Down Expand Up @@ -805,11 +805,14 @@ jobs:
steps:
- run-tests-chrome:
title: "browser64"
# skip test_4gb_fail as it OOMs on the current bot
# Run a few tests in browser64_4gb mode too.
test_targets: "browser64"
test-browser-chrome-wasm64-4gb:
executor: bionic
steps:
- run-tests-chrome:
title: "browser64_4gb"
test_targets: "
browser64
skip:browser64.test_4gb_fail
browser64_4gb.test_TextDecoder*
browser64_4gb.test_async_*
browser64_4gb.test_audio_worklet*
browser64_4gb.test_emscripten_log
Expand Down Expand Up @@ -971,6 +974,9 @@ workflows:
- test-browser-chrome-wasm64:
requires:
- build-linux
- test-browser-chrome-wasm64-4gb:
requires:
- build-linux
- test-browser-firefox:
requires:
- build-linux
Expand Down
1 change: 0 additions & 1 deletion test/test_browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -4555,7 +4555,6 @@ def test_utf8_textdecoder(self):
def test_utf16_textdecoder(self):
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]'])

@no_wasm64()
@parameterized({
'': ([],),
'closure': (['--closure=1'],),
Expand Down

0 comments on commit 36762d0

Please sign in to comment.