Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2038)

Unified Diff: test/mjsunit/wasm/asm-wasm.js

Issue 2345593003: [wasm] Master CL for Binary 0xC changes. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: [wasm] Master CL for Binary 0xC changes. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/mjsunit/wasm/asm-wasm.js
diff --git a/test/mjsunit/wasm/asm-wasm.js b/test/mjsunit/wasm/asm-wasm.js
index f316e6837f7273533f93393bde0d525b7c537ee8..2e21ce2800607b77c0c8b92971d281c424dfeb63 100644
--- a/test/mjsunit/wasm/asm-wasm.js
+++ b/test/mjsunit/wasm/asm-wasm.js
@@ -988,6 +988,7 @@ function TestFunctionTable(stdlib, foreign, buffer) {
return {caller:caller};
}
+print("TestFunctionTable...");
var module = TestFunctionTable(stdlib);
assertEquals(55, module.caller(0, 0, 33, 22));
assertEquals(11, module.caller(0, 1, 33, 22));
@@ -1022,10 +1023,12 @@ function TestForeignFunctions() {
var val = initial_val;
function getVal() {
+ print("getVal");
bradnelson 2016/09/23 11:36:01 Did you still want these two?
titzer 2016/09/23 12:07:31 Done.
return val;
}
function setVal(new_val) {
+ print("setVal: " + new_val);
val = new_val;
}
@@ -1040,6 +1043,7 @@ function TestForeignFunctions() {
assertEquals(103, module.caller(23, 103));
}
+print("TestForeignFunctions...");
TestForeignFunctions();

Powered by Google App Engine
This is Rietveld 408576698