Skip to content

Commit

Permalink
[cli] mops test: increase wasmtime's max-wasm-stack to 4mb
Browse files Browse the repository at this point in the history
  • Loading branch information
ZenVoich committed Mar 21, 2024
1 parent c26bd65 commit 04ebb03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/commands/test/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,14 +166,14 @@ export async function testWithReporter(reporter : Reporter, filter = '', mode :
'-C', 'cache=n',
'-W', 'bulk-memory',
'-W', 'multi-memory',
'-W', 'max-wasm-stack=2000000',
'-W', 'max-wasm-stack=4000000',
'-W', 'nan-canonicalization=y',
wasmFile,
];
}
else {
wasmtimeArgs = [
'--max-wasm-stack=2000000',
'--max-wasm-stack=4000000',
'--enable-cranelift-nan-canonicalization',
'--wasm-features',
'multi-memory,bulk-memory',
Expand Down

0 comments on commit 04ebb03

Please sign in to comment.