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

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

Issue 2398023002: [wasm] asm.js - Parse and convert asm.js to wasm a function at a time. (Closed)
Patch Set: fix Created 4 years, 1 month 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
« no previous file with comments | « test/cctest/asmjs/test-asm-typer.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/wasm/asm-wasm.js
diff --git a/test/mjsunit/wasm/asm-wasm.js b/test/mjsunit/wasm/asm-wasm.js
index dc8ecff7a01f7beee787f14af709b2dff6c8822a..d0df4828fa0f07a0191c89fb7ee7ffa60718228b 100644
--- a/test/mjsunit/wasm/asm-wasm.js
+++ b/test/mjsunit/wasm/asm-wasm.js
@@ -1082,6 +1082,7 @@ function TestForeignFunctionMultipleUse() {
assertEquals(89, module.caller(83, 83.25));
}
+print("TestForeignFunctionMultipleUse...");
TestForeignFunctionMultipleUse();
@@ -1173,6 +1174,7 @@ function TestForeignVariables() {
TestCase(undefined, 0, NaN, 0, NaN);
}
+print("TestForeignVariables...");
TestForeignVariables();
@@ -1386,6 +1388,7 @@ assertWasm(7, TestIntegerMultiplyBothWays);
}
return {func: func};
}
+ print("TestBadAssignDoubleFromIntish...");
Module(stdlib);
assertTrue(%IsNotAsmWasmCode(Module));
})();
@@ -1401,6 +1404,7 @@ assertWasm(7, TestIntegerMultiplyBothWays);
}
return {func: func};
}
+ print("TestBadAssignIntFromDouble...");
Module(stdlib);
assertTrue(%IsNotAsmWasmCode(Module));
})();
@@ -1415,6 +1419,7 @@ assertWasm(7, TestIntegerMultiplyBothWays);
}
return {func: func};
}
+ print("TestBadMultiplyIntish...");
Module(stdlib);
assertTrue(%IsNotAsmWasmCode(Module));
})();
@@ -1429,6 +1434,7 @@ assertWasm(7, TestIntegerMultiplyBothWays);
}
return {func: func};
}
+ print("TestBadCastFromInt...");
Module(stdlib);
assertTrue(%IsNotAsmWasmCode(Module));
})();
« no previous file with comments | « test/cctest/asmjs/test-asm-typer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698