mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
Slightly improve "ocloc ids" output
- Add trailing newline, so the output looks nice in the terminal. - "Uknown" -> "Unknown". Signed-off-by: Andrey Alekseenko <al42and@gmail.com>
This commit is contained in:

committed by
Compute-Runtime-Automation

parent
af91f94098
commit
cb18657cb8
@ -752,10 +752,10 @@ TEST_F(OfflineCompilerTests, givenFamilyAcronymWhenIdsCommandIsInvokeThenSuccess
|
||||
testing::internal::CaptureStdout();
|
||||
int retVal = OfflineCompiler::queryAcronymIds(argv.size(), argv, oclocArgHelperWithoutInput.get());
|
||||
std::string output = testing::internal::GetCapturedStdout();
|
||||
expectedOutput << "Matched ids:";
|
||||
expectedOutput << "Matched ids:\n";
|
||||
|
||||
for (const auto &prefix : expected) {
|
||||
expectedOutput << "\n" + prefix;
|
||||
expectedOutput << prefix << "\n";
|
||||
}
|
||||
EXPECT_STREQ(expectedOutput.str().c_str(), output.c_str());
|
||||
EXPECT_EQ(OclocErrorCode::SUCCESS, retVal);
|
||||
@ -786,10 +786,10 @@ TEST_F(OfflineCompilerTests, givenReleaseAcronymWhenIdsCommandIsInvokeThenSucces
|
||||
testing::internal::CaptureStdout();
|
||||
int retVal = OfflineCompiler::queryAcronymIds(argv.size(), argv, oclocArgHelperWithoutInput.get());
|
||||
std::string output = testing::internal::GetCapturedStdout();
|
||||
expectedOutput << "Matched ids:";
|
||||
expectedOutput << "Matched ids:\n";
|
||||
|
||||
for (const auto &prefix : expected) {
|
||||
expectedOutput << "\n" + prefix;
|
||||
expectedOutput << prefix << "\n";
|
||||
}
|
||||
EXPECT_STREQ(expectedOutput.str().c_str(), output.c_str());
|
||||
EXPECT_EQ(OclocErrorCode::SUCCESS, retVal);
|
||||
@ -820,10 +820,10 @@ TEST_F(OfflineCompilerTests, givenProductAcronymWhenIdsCommandIsInvokeThenSucces
|
||||
testing::internal::CaptureStdout();
|
||||
int retVal = OfflineCompiler::queryAcronymIds(argv.size(), argv, oclocArgHelperWithoutInput.get());
|
||||
std::string output = testing::internal::GetCapturedStdout();
|
||||
expectedOutput << "Matched ids:";
|
||||
expectedOutput << "Matched ids:\n";
|
||||
|
||||
for (const auto &prefix : expected) {
|
||||
expectedOutput << "\n" + prefix;
|
||||
expectedOutput << prefix << "\n";
|
||||
}
|
||||
EXPECT_STREQ(expectedOutput.str().c_str(), output.c_str());
|
||||
EXPECT_EQ(OclocErrorCode::SUCCESS, retVal);
|
||||
|
Reference in New Issue
Block a user