Skip to content

Commit 29602ce

Browse files
Redirect test preamble output to stderr
1 parent 069bf18 commit 29602ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

offload/unittests/Conformance/include/mathtest/TestRunner.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ void printPreamble(const TestConfig &Config, size_t Index,
4141
size_t Total) noexcept {
4242
using FunctionConfig = FunctionConfig<Func>;
4343

44-
llvm::outs() << "[" << (Index + 1) << "/" << Total << "] "
44+
llvm::errs() << "[" << (Index + 1) << "/" << Total << "] "
4545
<< "Running conformance test '" << FunctionConfig::Name
4646
<< "' with '" << Config.Provider << "' on '" << Config.Platform
4747
<< "'\n";
48-
llvm::outs().flush();
48+
llvm::errs().flush();
4949
}
5050

5151
template <typename T>

0 commit comments

Comments
 (0)