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 b15e2a399632a72b38027bad9c250d5fc87f7632..c0efcfdf777a8b73a8806535d7ae6ba069d7e783 100644 |
--- a/test/cctest/wasm/test-run-wasm.cc |
+++ b/test/cctest/wasm/test-run-wasm.cc |
@@ -2,6 +2,7 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
+#include <stdint.h> |
#include <stdlib.h> |
#include <string.h> |
@@ -3441,6 +3442,8 @@ TEST(Run_Wasm_I64UConvertF64) { |
#endif |
+// TODO(titzer): Fix and re-enable. |
+#if 0 |
TEST(Run_Wasm_I32SConvertF32) { |
WasmRunner<int32_t> r(MachineType::Float32()); |
BUILD(r, WASM_I32_SCONVERT_F32(WASM_GET_LOCAL(0))); |
@@ -3497,6 +3500,7 @@ TEST(Run_Wasm_I32UConvertF64) { |
} |
} |
} |
+#endif |
TEST(Run_Wasm_F64CopySign) { |