Skip to content
Merged
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: 0 additions & 2 deletions tests/common/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,6 @@ impl PreparedComponent {
config.epoch_interruption(true);
config.async_stack_size(32 * 1024 * 1024); // 32MB async stack (must be >= max_wasm_stack)
config.max_wasm_stack(16 * 1024 * 1024); // 16MB WASM stack (default is 512KB, QuickJS in WASM needs more for deep recursion)
config.cache(Some(wasmtime::Cache::from_file(None)?));
let engine = Engine::new(&config)?;

// Start a background thread that increments the epoch every 10ms,
Expand Down Expand Up @@ -323,7 +322,6 @@ impl GolemPreparedComponent {
config.wasm_component_model(true);
config.async_stack_size(32 * 1024 * 1024);
config.max_wasm_stack(16 * 1024 * 1024);
config.cache(Some(wasmtime::Cache::from_file(None)?));
let engine = Engine::new(&config)?;
let mut linker: Linker<Host> = Linker::new(&engine);

Expand Down
Loading