Skip to content

Commit

Permalink
Remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
AVMatthews committed Nov 19, 2024
1 parent df6122c commit e1b636d
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions components/core/tests/test-end_to_end.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,7 @@ TEMPLATE_TEST_CASE(
REQUIRE(0 == result);
std::string const command = "diff -u test-end-to-end_sorted.json " + get_test_input_local_path()
+ " > diff_out.txt";
//std::cout << command << "\n";
result = std::system(command.c_str());
//std::cout << result << "\n";
std::cout << WEXITSTATUS(result) << "\n";
std::system("cat test-end-to-end-out/original");
std::system("cat diff_out.txt");
REQUIRE((0 == WEXITSTATUS(result) || 1 == WEXITSTATUS(result)));

REQUIRE(std::filesystem::is_empty("diff_out.txt"));
Expand Down

0 comments on commit e1b636d

Please sign in to comment.