ART: Blacklist dex2oat test under sanitization
We're leaking a partially created Runtime instance we can't destruct.
Bug: 19100793
Test: m SANITIZE_HOST=true test-art-host-gtest-dex2oat_test
Change-Id: If6bd630c688e1cc806ac7ed19fdf48708306c96a
diff --git a/dex2oat/dex2oat_test.cc b/dex2oat/dex2oat_test.cc
index 8c14b50..0adf3a0 100644
--- a/dex2oat/dex2oat_test.cc
+++ b/dex2oat/dex2oat_test.cc
@@ -884,6 +884,7 @@
};
TEST_F(Dex2oatReturnCodeTest, TestCreateRuntime) {
+ TEST_DISABLED_FOR_MEMORY_TOOL(); // b/19100793
int status = RunTest({ "--boot-image=/this/does/not/exist/yolo.oat" });
EXPECT_EQ(static_cast<int>(dex2oat::ReturnCode::kCreateRuntime), WEXITSTATUS(status)) << output_;
}