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

Unified Diff: test/cctest/wasm/test-run-wasm.cc

Issue 1564553002: Disable more crashing / failing wasm tests. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « no previous file | test/cctest/wasm/test-run-wasm-module.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/wasm/test-run-wasm.cc
diff --git a/test/cctest/wasm/test-run-wasm.cc b/test/cctest/wasm/test-run-wasm.cc
index 6207437ee8d735b5ede4303057c23356fca83eaf..8dc14f37eaa23be1cddbc2a2eff45c4d56012412 100644
--- a/test/cctest/wasm/test-run-wasm.cc
+++ b/test/cctest/wasm/test-run-wasm.cc
@@ -1857,6 +1857,9 @@ TEST(Run_Wasm_LoadMemI32_offset) {
}
+// TODO(titzer): Fix for mips and re-enable.
+#if !V8_TARGET_ARCH_MIPS && !V8_TARGET_ARCH_MIPS64
+
TEST(Run_Wasm_LoadMemI32_const_oob) {
TestingModule module;
const int kMemSize = 12;
@@ -1880,6 +1883,8 @@ TEST(Run_Wasm_LoadMemI32_const_oob) {
}
}
+#endif
+
TEST(Run_Wasm_StoreMemI32_offset) {
WasmRunner<int32_t> r(MachineType::Int32());
@@ -2643,6 +2648,9 @@ TEST(Run_WasmCallEmpty) {
}
+// TODO(tizer): Fix on arm and reenable.
+#if !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_ARM64
+
TEST(Run_WasmCallF32StackParameter) {
// Build the target function.
LocalType param_types[20];
@@ -2694,6 +2702,8 @@ TEST(Run_WasmCallF64StackParameter) {
CHECK_EQ(256.5, result);
}
+#endif
+
TEST(Run_WasmCallVoid) {
const byte kMemOffset = 8;
@@ -3548,6 +3558,9 @@ TEST(Run_Wasm_F64CopySign) {
}
+// TODO(tizer): Fix on arm and reenable.
+#if !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_ARM64
+
TEST(Run_Wasm_F32CopySign) {
WasmRunner<float> r(MachineType::Float32(), MachineType::Float32());
BUILD(r, WASM_F32_COPYSIGN(WASM_GET_LOCAL(0), WASM_GET_LOCAL(1)));
@@ -3556,3 +3569,5 @@ TEST(Run_Wasm_F32CopySign) {
FOR_FLOAT32_INPUTS(j) { CheckFloatEq(copysign(*i, *j), r.Call(*i, *j)); }
}
}
+
+#endif
« no previous file with comments | « no previous file | test/cctest/wasm/test-run-wasm-module.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698