[wasm] Fix test generation for shared memory

R=gdeepti@chromium.org

Change-Id: I8fabe18101b7e23b5e2971fedd0bd3591783dc85
Reviewed-on: https://chromium-review.googlesource.com/c/1329699
Reviewed-by: Deepti Gandluri <gdeepti@chromium.org>
Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
Cr-Commit-Position: refs/heads/master@{#57441}
This commit is contained in:
Clemens Hammacher 2018-11-12 14:52:44 +01:00 committed by Commit Bot
parent 4f586850a9
commit a0409f0528

View File

@ -183,7 +183,7 @@ void GenerateTestCase(Isolate* isolate, ModuleWireBytes wire_bytes,
}
os << ", " << (module->mem_export ? "true" : "false");
if (module->has_shared_memory) {
os << ", shared";
os << ", true";
}
os << ");\n";
}