Skip to content

Commit 204cbe5

Browse files
committed
Remove debug logging from test.
1 parent 22d065c commit 204cbe5

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

cpp/src/gandiva/target_datalayout_test.cc

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818
#include <gtest/gtest.h>
1919
#include <llvm/IR/DataLayout.h>
20-
#include <llvm/TargetParser/Host.h>
2120

2221
#include "gandiva/llvm_generator.h"
2322
#include "gandiva/tests/test_util.h"
@@ -41,13 +40,6 @@ TEST_F(TestTargetDataLayout, VerifyDataLayoutForArchitecture) {
4140
std::string data_layout_str = data_layout.getStringRepresentation();
4241

4342
EXPECT_FALSE(data_layout_str.empty());
44-
45-
std::string host_cpu = llvm::sys::getHostCPUName().str();
46-
std::string triple = llvm::sys::getDefaultTargetTriple();
47-
// Log the information for debugging
48-
std::cout << "Host CPU: " << host_cpu << std::endl;
49-
std::cout << "Target Triple: " << triple << std::endl;
50-
std::cout << "Data Layout: " << data_layout_str << std::endl;
5143
}
5244
} // namespace gandiva
5345

0 commit comments

Comments
 (0)