diff --git a/.circleci/config.yml b/.circleci/config.yml index e0cf4596e7190..a95958fa90712 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -830,7 +830,7 @@ jobs: wasm64l.test_module_wasm_memory wasm64l.test_longjmp2_emscripten wasm64l.test_embind_val_basics_legacy - other.test_failing_growth_wasm64" + other.*_wasm64" - upload-test-results test-jsc: executor: linux-python diff --git a/test/other/test_split_module.post.js b/test/other/test_split_module.post.js index bba13af56b358..ad3ad618c67e2 100644 --- a/test/other/test_split_module.post.js +++ b/test/other/test_split_module.post.js @@ -1,9 +1,11 @@ +#preprocess + function saveProfileData() { var __write_profile = wasmExports['__write_profile']; if (__write_profile) { - var len = __write_profile(0, 0); + var len = __write_profile({{{ to64('0') }}}, 0); var offset = _malloc(len); - var actualLen = __write_profile(offset, len); + var actualLen = __write_profile({{{ to64('offset') }}}, len); var profile_data = HEAPU8.subarray(offset, offset + len); if (typeof writeFile !== 'undefined') { console.log('using writeFile')