diff --git a/tests/debug/breakpoint.test.cpp b/tests/debug/breakpoint.test.cpp index 9748128..46ef8e6 100644 --- a/tests/debug/breakpoint.test.cpp +++ b/tests/debug/breakpoint.test.cpp @@ -63,7 +63,7 @@ TEST(breakpoint, evaluate, breakpoint) { #if defined(_WIN32) constexpr static auto handler = [](EXCEPTION_POINTERS* exception) -> LONG { if (exception->ExceptionRecord->ExceptionCode == EXCEPTION_BREAKPOINT) { - PRINT("Breakpoint at 0x%x skipped.\n", exception->ExceptionRecord->ExceptionAddress); + // PRINT("Breakpoint at 0x%x skipped.\n", exception->ExceptionRecord->ExceptionAddress); PCONTEXT context = exception->ContextRecord; @@ -85,7 +85,7 @@ TEST(breakpoint, evaluate, breakpoint) { #else constexpr static auto handler = [](int signal_number) { if (signal_number == SIGTRAP) { - PRINT("Breakpoint skipped.\n"); + // PRINT("Breakpoint skipped.\n"); caught = true; } };