Skip to content

Commit 488ed96

Browse files
authored
[orc-rt] Remove stray debugging output. NFCI. (#169451)
1 parent 28fde68 commit 488ed96

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

orc-rt/unittests/SessionTest.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020
#include <future>
2121
#include <optional>
2222

23-
#include <iostream>
24-
2523
using namespace orc_rt;
2624
using ::testing::Eq;
2725
using ::testing::Optional;
@@ -170,7 +168,6 @@ TEST(SessionTest, ExpectedShutdownSequence) {
170168
Session S(std::make_unique<EnqueueingDispatcher>(
171169
Tasks,
172170
[&]() {
173-
std::cerr << "Running dispatcher shutdown.\n";
174171
EXPECT_TRUE(ShutdownOpIdx);
175172
EXPECT_EQ(*ShutdownOpIdx, 0);
176173
EXPECT_FALSE(SessionShutdownComplete);
@@ -182,7 +179,6 @@ TEST(SessionTest, ExpectedShutdownSequence) {
182179

183180
S.shutdown([&]() {
184181
EXPECT_TRUE(DispatcherShutDown);
185-
std::cerr << "Running shutdown callback.\n";
186182
SessionShutdownComplete = true;
187183
});
188184
S.waitForShutdown();

0 commit comments

Comments
 (0)