Skip to content

[wasm64] Run all browser64 fetch tests #20598

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -788,15 +788,7 @@ jobs:
browser64.test_glgears_deriv
browser64.test_anisotropic
browser64.test_webgpu_get_device
browser64.test_fetch_to_memory
browser64.test_fetch_to_indexdb
browser64.test_fetch_cached_xhr
browser64.test_fetch_response_headers
browser64.test_fetch_stream_file
browser64.test_fetch_headers_received
browser64.test_fetch_xhr_abort
browser64.test_fetch_sync_xhr
browser64.test_fetch_implicit_append
browser64.test_fetch_*
browser64.test_pthread_*
browser64.test_wget_*
browser64.test_emscripten_async_wget_*
Expand Down
5 changes: 3 additions & 2 deletions test/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -2136,8 +2136,9 @@ def btest(self, filename, expected=None, reference=None,
else:
self.run_browser(outfile + url_suffix, expected=['/report_result?' + e for e in expected], timeout=timeout, extra_tries=extra_tries)

# Tests can opt into being run under asmjs as well
if 'WASM=0' not in original_args and (also_wasm2js or self.also_wasm2js):
# Tests can opt into being run under wasmj2s as well
# Ignore this under MEMORY64 where wasm2js is not yet supported.
if 'WASM=0' not in original_args and (also_wasm2js or self.also_wasm2js) and not self.is_wasm64():
print('WASM=0')
self.btest(filename, expected, reference, reference_slack, manual_reference, post_build,
original_args + ['-sWASM=0'], also_proxied=False, timeout=timeout)
Expand Down