From 488ed96d665f47d5c31b811288ec1be1b3fa01bc Mon Sep 17 00:00:00 2001 From: Lang Hames Date: Tue, 25 Nov 2025 16:39:36 +1100 Subject: [PATCH] [orc-rt] Remove stray debugging output. NFCI. (#169451) --- orc-rt/unittests/SessionTest.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/orc-rt/unittests/SessionTest.cpp b/orc-rt/unittests/SessionTest.cpp index 85b82e65744b..d08326d269a8 100644 --- a/orc-rt/unittests/SessionTest.cpp +++ b/orc-rt/unittests/SessionTest.cpp @@ -20,8 +20,6 @@ #include #include -#include - using namespace orc_rt; using ::testing::Eq; using ::testing::Optional; @@ -170,7 +168,6 @@ TEST(SessionTest, ExpectedShutdownSequence) { Session S(std::make_unique( Tasks, [&]() { - std::cerr << "Running dispatcher shutdown.\n"; EXPECT_TRUE(ShutdownOpIdx); EXPECT_EQ(*ShutdownOpIdx, 0); EXPECT_FALSE(SessionShutdownComplete); @@ -182,7 +179,6 @@ TEST(SessionTest, ExpectedShutdownSequence) { S.shutdown([&]() { EXPECT_TRUE(DispatcherShutDown); - std::cerr << "Running shutdown callback.\n"; SessionShutdownComplete = true; }); S.waitForShutdown();