summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Molenda <jason@molenda.com>2024-01-31 22:05:40 -0800
committerJason Molenda <jason@molenda.com>2024-01-31 22:06:23 -0800
commitfdd98e506d77514d8cbd5099e8fc98130244f6ff (patch)
treef2d8d60ca5fd0aff46f127aa78e2527d90162a2d
parent9b68c095d6b52d6ec0390c653528f65c42e5f570 (diff)
Skip 2 of the three test sets to narrow down the arm-ubuntu
CI bot crash when running this unittest. The printfs aren't printing into the CI log output.
-rw-r--r--lldb/unittests/Breakpoint/WatchpointAlgorithmsTests.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/lldb/unittests/Breakpoint/WatchpointAlgorithmsTests.cpp b/lldb/unittests/Breakpoint/WatchpointAlgorithmsTests.cpp
index b2b38791a9fd..d93f0f1d03ee 100644
--- a/lldb/unittests/Breakpoint/WatchpointAlgorithmsTests.cpp
+++ b/lldb/unittests/Breakpoint/WatchpointAlgorithmsTests.cpp
@@ -41,6 +41,7 @@ void check_testcase(testcase test,
TEST(WatchpointAlgorithmsTests, PowerOf2Watchpoints) {
+#if 0
// clang-format off
std::vector<testcase> doubleword_max = {
{
@@ -92,6 +93,7 @@ TEST(WatchpointAlgorithmsTests, PowerOf2Watchpoints) {
check_testcase(test, result, min_byte_size, max_byte_size,
address_byte_size);
}
+#endif
// clang-format off
std::vector<testcase> word_max = {
@@ -121,6 +123,7 @@ TEST(WatchpointAlgorithmsTests, PowerOf2Watchpoints) {
address_byte_size);
}
+#if 0
// clang-format off
std::vector<testcase> twogig_max = {
{
@@ -179,4 +182,6 @@ TEST(WatchpointAlgorithmsTests, PowerOf2Watchpoints) {
check_testcase(test, result, min_byte_size, max_byte_size,
address_byte_size);
}
+#endif
+
}