Skip to content
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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 4 additions & 2 deletions test/other/test_split_module.post.js
Original file line number Diff line number Diff line change
@@ -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')
Expand Down