Author: Jason Molenda Date: 2024-01-31T22:06:23-08:00 New Revision: fdd98e506d77514d8cbd5099e8fc98130244f6ff
URL: https://github.com/llvm/llvm-project/commit/fdd98e506d77514d8cbd5099e8fc98130244f6ff DIFF: https://github.com/llvm/llvm-project/commit/fdd98e506d77514d8cbd5099e8fc98130244f6ff.diff LOG: 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. Added: Modified: lldb/unittests/Breakpoint/WatchpointAlgorithmsTests.cpp Removed: ################################################################################ diff --git a/lldb/unittests/Breakpoint/WatchpointAlgorithmsTests.cpp b/lldb/unittests/Breakpoint/WatchpointAlgorithmsTests.cpp index b2b38791a9fd1..d93f0f1d03ee0 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 + } _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits