Skip to content

Commit

Permalink
Silent the test to cleanup the CI log
Browse files Browse the repository at this point in the history
  • Loading branch information
MKlimenko committed Jan 3, 2024
1 parent d0bb34e commit 136d369
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ struct PerformanceTestFixture : testing::TestWithParam<std::size_t> {
TEST_P(PerformanceTestFixture, performance_test) {
auto input = GetInputFolder();
auto output = GetInputFolder();
auto command = std::string(EMBED_EXE_PATH) + ' ' + input.string() + " -o " + output.string();
auto command = std::string(EMBED_EXE_PATH) + ' ' + input.string() + " -o " + output.string() + " > nul";
auto result = system(command.c_str());
ASSERT_EQ(result, 0);
}
Expand Down

0 comments on commit 136d369

Please sign in to comment.