Skip to content

Commit

Permalink
Disable exegesis tests
Browse files Browse the repository at this point in the history
  • Loading branch information
boomanaiden154 committed Mar 3, 2024
1 parent 64aa10d commit 12231a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gematria/datasets/find_accessed_addrs_exegesis_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class FindAccessedAddrsExegesisTest : public testing::Test {
// Expecteds in the following two test cases can be replaced with
// ASSERT_THAT_EXPECTED once pthread errors that occur when linking
// llvm:TestingSupport are fixed.
TEST_F(FindAccessedAddrsExegesisTest, ExegesisNoAccess) {
TEST_F(FindAccessedAddrsExegesisTest, DISABLED_ExegesisNoAccess) {
auto AddrsOrErr = FindAccessedAddrsExegesis(R"asm(
movq %r11, %r12
)asm");
Expand All @@ -91,7 +91,7 @@ TEST_F(FindAccessedAddrsExegesisTest, ExegesisNoAccess) {
EXPECT_EQ(Result.accessed_blocks.size(), 0);
}

TEST_F(FindAccessedAddrsExegesisTest, ExegesisOneAccess) {
TEST_F(FindAccessedAddrsExegesisTest, DISABLED_ExegesisOneAccess) {
auto AddrsOrErr = FindAccessedAddrsExegesis(R"asm(
movq $0x10000, %rax
movq (%rax), %rax
Expand All @@ -102,7 +102,7 @@ TEST_F(FindAccessedAddrsExegesisTest, ExegesisOneAccess) {
EXPECT_EQ(Result.accessed_blocks[0], 0x10000);
}

TEST_F(FindAccessedAddrsExegesisTest, ExegesisNotPageAligned) {
TEST_F(FindAccessedAddrsExegesisTest, DISABLED_ExegesisNotPageAligned) {
auto AddrsOrErr = FindAccessedAddrsExegesis(R"asm(
movq $0x10001, %rax
movq (%rax), %rax
Expand Down

0 comments on commit 12231a6

Please sign in to comment.