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

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

Issue 1846613002: [wasm] Fix and enable more tests. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 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
« test/cctest/wasm/test-run-wasm-64.cc ('K') | « test/cctest/wasm/wasm-run-utils.h ('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 01d30814bf9a43c9f2b3abaea2a9ac75d9339242..2efb006436a23333c7bf5bb48d92a46022a7d2d5 100644
--- a/test/mjsunit/wasm/asm-wasm.js
+++ b/test/mjsunit/wasm/asm-wasm.js
@@ -459,7 +459,6 @@ function TestFloatHeapAccess(stdlib, foreign, buffer) {
var j = 8;
var v = 6.0;
- // TODO(bradnelson): Add float32 when asm-wasm supports it.
f64[2] = v + 1.0;
f64[i >> 3] = +f64[2] + 1.0;
f64[j >> 3] = +f64[j >> 3] + 1.0;
@@ -587,9 +586,6 @@ function TestModDouble() {
assertWasm(28, TestModDouble);
-/*
-TODO: Fix parsing of negative doubles
- Fix code to use trunc instead of casts
function TestModDoubleNegative() {
"use asm";
@@ -606,8 +602,6 @@ function TestModDoubleNegative() {
}
assertWasm(28, TestModDoubleNegative);
-*/
-
(function () {
function TestNamedFunctions() {
@@ -1325,7 +1319,7 @@ assertWasm(1, TestXor);
var m = Wasm.instantiateModuleFromAsm(Module.toString());
assertEquals(3, m.func());
-}); // TODO(bradnelson): Enable when Math.fround implementation lands.
+})();
(function TestDoubleToFloatAssignment() {
« test/cctest/wasm/test-run-wasm-64.cc ('K') | « test/cctest/wasm/wasm-run-utils.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698