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)); |
})(); |