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 91252277a1c565b2933e9b728989da6a0d9e8699..d0e3bd18b18130fe34611b0c14fcaf5b1f84c81d 100644 |
--- a/test/cctest/wasm/test-run-wasm.cc |
+++ b/test/cctest/wasm/test-run-wasm.cc |
@@ -3168,39 +3168,6 @@ TEST(Run_Wasm_F64Max_Snan) { |
#endif |
#if WASM_64 |
-TEST(Run_Wasm_F32SConvertI64) { |
- WasmRunner<float> r(MachineType::Int64()); |
- BUILD(r, WASM_F32_SCONVERT_I64(WASM_GET_LOCAL(0))); |
- FOR_INT64_INPUTS(i) { CHECK_EQ(static_cast<float>(*i), r.Call(*i)); } |
-} |
- |
- |
-#if !defined(_WIN64) |
-// TODO(ahaas): Fix this failure. |
-TEST(Run_Wasm_F32UConvertI64) { |
- WasmRunner<float> r(MachineType::Uint64()); |
- BUILD(r, WASM_F32_UCONVERT_I64(WASM_GET_LOCAL(0))); |
- FOR_UINT64_INPUTS(i) { CHECK_EQ(static_cast<float>(*i), r.Call(*i)); } |
-} |
-#endif |
- |
- |
-TEST(Run_Wasm_F64SConvertI64) { |
- WasmRunner<double> r(MachineType::Int64()); |
- BUILD(r, WASM_F64_SCONVERT_I64(WASM_GET_LOCAL(0))); |
- FOR_INT64_INPUTS(i) { CHECK_EQ(static_cast<double>(*i), r.Call(*i)); } |
-} |
- |
- |
-#if !defined(_WIN64) |
-// TODO(ahaas): Fix this failure. |
-TEST(Run_Wasm_F64UConvertI64) { |
- WasmRunner<double> r(MachineType::Uint64()); |
- BUILD(r, WASM_F64_UCONVERT_I64(WASM_GET_LOCAL(0))); |
- FOR_UINT64_INPUTS(i) { CHECK_EQ(static_cast<double>(*i), r.Call(*i)); } |
-} |
-#endif |
- |
TEST(Run_Wasm_I64SConvertF32) { |
WasmRunner<int64_t> r(MachineType::Float32()); |