Skip to content

Commit

Permalink
cpu_profiler: disable two tests which are hanging
Browse files Browse the repository at this point in the history
Until we can fix them.

See CORE-9144.
  • Loading branch information
travisdowns committed Feb 19, 2025
1 parent d982a70 commit 19c24a3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/unit/cpu_profiler_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,9 @@ random_exception_thrower(int a) {
} // namespace

SEASTAR_THREAD_TEST_CASE(exception_handler_case) {

// disable for now, CORE-9144
return;
// Ensure that exception unwinding doesn't cause any issues
// while profiling.
temporary_profiler_settings cp{true, 1us};
Expand Down Expand Up @@ -241,6 +244,9 @@ SEASTAR_THREAD_TEST_CASE(manually_disable) {
}

SEASTAR_THREAD_TEST_CASE(config_thrashing) {

// disable for now, CORE-9144
return;
// Ensure that fast config changes leave the profiler in a valid
// state.
temporary_profiler_settings cp{true, 1us};
Expand Down

0 comments on commit 19c24a3

Please sign in to comment.