diff options
Diffstat (limited to 'compiler/optimizing/liveness_test.cc')
-rw-r--r-- | compiler/optimizing/liveness_test.cc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/compiler/optimizing/liveness_test.cc b/compiler/optimizing/liveness_test.cc index 0b421cf9e6..6af07aea4e 100644 --- a/compiler/optimizing/liveness_test.cc +++ b/compiler/optimizing/liveness_test.cc @@ -70,6 +70,7 @@ void LivenessTest::TestCode(const std::vector<uint16_t>& data, const char* expec } TEST_F(LivenessTest, CFG1) { + TEST_DISABLED_FOR_RISCV64(); const char* expected = "Block 0\n" " live in: (0)\n" @@ -93,6 +94,7 @@ TEST_F(LivenessTest, CFG1) { } TEST_F(LivenessTest, CFG2) { + TEST_DISABLED_FOR_RISCV64(); const char* expected = "Block 0\n" " live in: (0)\n" @@ -115,6 +117,7 @@ TEST_F(LivenessTest, CFG2) { } TEST_F(LivenessTest, CFG3) { + TEST_DISABLED_FOR_RISCV64(); const char* expected = "Block 0\n" // entry block " live in: (000)\n" @@ -144,6 +147,7 @@ TEST_F(LivenessTest, CFG3) { } TEST_F(LivenessTest, CFG4) { + TEST_DISABLED_FOR_RISCV64(); // var a; // if (0 == 0) { // a = 5; @@ -192,6 +196,7 @@ TEST_F(LivenessTest, CFG4) { } TEST_F(LivenessTest, CFG5) { + TEST_DISABLED_FOR_RISCV64(); // var a = 0; // if (0 == 0) { // } else { @@ -237,6 +242,7 @@ TEST_F(LivenessTest, CFG5) { } TEST_F(LivenessTest, Loop1) { + TEST_DISABLED_FOR_RISCV64(); // Simple loop with one preheader and one back edge. // var a = 0; // while (a == a) { @@ -283,6 +289,7 @@ TEST_F(LivenessTest, Loop1) { } TEST_F(LivenessTest, Loop3) { + TEST_DISABLED_FOR_RISCV64(); // Test that the returned value stays live in a preceding loop. // var a = 0; // while (a == a) { @@ -330,6 +337,7 @@ TEST_F(LivenessTest, Loop3) { TEST_F(LivenessTest, Loop4) { + TEST_DISABLED_FOR_RISCV64(); // Make sure we support a preheader of a loop not being the first predecessor // in the predecessor list of the header. // var a = 0; @@ -382,6 +390,7 @@ TEST_F(LivenessTest, Loop4) { } TEST_F(LivenessTest, Loop5) { + TEST_DISABLED_FOR_RISCV64(); // Make sure we create a preheader of a loop when a header originally has two // incoming blocks and one back edge. // Bitsets are made of: @@ -438,6 +447,7 @@ TEST_F(LivenessTest, Loop5) { } TEST_F(LivenessTest, Loop6) { + TEST_DISABLED_FOR_RISCV64(); // Bitsets are made of: // (constant0, constant4, constant5, phi in block 2) const char* expected = @@ -489,6 +499,7 @@ TEST_F(LivenessTest, Loop6) { TEST_F(LivenessTest, Loop7) { + TEST_DISABLED_FOR_RISCV64(); // Bitsets are made of: // (constant0, constant4, constant5, phi in block 2, phi in block 6) const char* expected = @@ -543,6 +554,7 @@ TEST_F(LivenessTest, Loop7) { } TEST_F(LivenessTest, Loop8) { + TEST_DISABLED_FOR_RISCV64(); // var a = 0; // while (a == a) { // a = a + a; |