[llvm] [orc-rt] Remove stray debugging output. NFCI. (PR #169451)

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 24 20:12:15 PST 2025


https://github.com/lhames created https://github.com/llvm/llvm-project/pull/169451

None

>From 0082edf0dc3034dcb4d0aa15bcbd3b8cb01f52b9 Mon Sep 17 00:00:00 2001
From: Lang Hames <lhames at gmail.com>
Date: Tue, 25 Nov 2025 14:55:30 +1100
Subject: [PATCH] [orc-rt] Remove stray debugging output. NFCI.

---
 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 85b82e65744b0..d08326d269a82 100644
--- a/orc-rt/unittests/SessionTest.cpp
+++ b/orc-rt/unittests/SessionTest.cpp
@@ -20,8 +20,6 @@
 #include <future>
 #include <optional>
 
-#include <iostream>
-
 using namespace orc_rt;
 using ::testing::Eq;
 using ::testing::Optional;
@@ -170,7 +168,6 @@ TEST(SessionTest, ExpectedShutdownSequence) {
   Session S(std::make_unique<EnqueueingDispatcher>(
                 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();



More information about the llvm-commits mailing list