mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
8 lines
263 B
JavaScript
8 lines
263 B
JavaScript
|
// Flags: --disable-wasm-trap-handler
|
||
|
// Test that with limited virtual memory space, --disable-wasm-trap-handler
|
||
|
// allows WASM to at least run with inline bound checks.
|
||
|
'use strict';
|
||
|
|
||
|
require('../common');
|
||
|
new WebAssembly.Memory({ initial: 10, maximum: 100 });
|