Skip to content

Commit

Permalink
test: Use shell builtins in run_command test case
Browse files Browse the repository at this point in the history
Github-Pull: bitcoin#30952
Rebased-From: 7bd3ee6
  • Loading branch information
achow101 committed Sep 24, 2024
1 parent 1147e72 commit e24a25d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/system_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ BOOST_AUTO_TEST_CASE(run_command)
}
{
// Return non-zero exit code, with error message for stderr
const std::string command{"python3 -c 'import sys; print(\"err\", file=sys.stderr); sys.exit(2)'"};
const std::string command{"sh -c 'echo err 1>&2 && false'"};
const std::string expected{"err"};
BOOST_CHECK_EXCEPTION(RunCommandParseJSON(command), std::runtime_error, [&](const std::runtime_error& e) {
const std::string what(e.what());
Expand Down

0 comments on commit e24a25d

Please sign in to comment.