mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-08 14:02:58 +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
@@ -176,7 +176,7 @@ TEST(OclocApiTests, GivenInvalidQueryWhenQueryingThenErrorIsReturned) {
|
||||
std::string output = testing::internal::GetCapturedStdout();
|
||||
|
||||
EXPECT_EQ(retVal, NEO::OclocErrorCode::INVALID_COMMAND_LINE);
|
||||
EXPECT_STREQ("Error: Invalid command line. Uknown argument unknown_query.", output.c_str());
|
||||
EXPECT_STREQ("Error: Invalid command line. Unknown argument unknown_query.", output.c_str());
|
||||
}
|
||||
|
||||
TEST(OclocApiTests, givenNoAcronymWhenIdsCommandIsInvokeThenErrorIsReported) {
|
||||
@@ -209,7 +209,7 @@ TEST(OclocApiTests, givenUnknownAcronymWhenIdsCommandIsInvokeThenErrorIsReported
|
||||
std::string output = testing::internal::GetCapturedStdout();
|
||||
|
||||
EXPECT_EQ(retVal, NEO::OclocErrorCode::INVALID_COMMAND_LINE);
|
||||
EXPECT_STREQ("Error: Invalid command line. Uknown acronym unk.\n", output.c_str());
|
||||
EXPECT_STREQ("Error: Invalid command line. Unknown acronym unk.\n", output.c_str());
|
||||
}
|
||||
|
||||
TEST(OclocApiTests, WhenGoodFamilyNameIsProvidedThenSuccessIsReturned) {
|
||||
|
||||
@@ -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