We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
system_tests/run_command
1 parent a4144ac commit c996515Copy full SHA for c996515
src/test/system_tests.cpp
@@ -68,7 +68,6 @@ BOOST_AUTO_TEST_CASE(run_command)
68
// Unable to parse JSON
69
BOOST_CHECK_EXCEPTION(RunCommandParseJSON(test_executable + "invalid_json"), std::runtime_error, HasReason("Unable to parse JSON: {"));
70
}
71
-#ifndef WIN32
72
{
73
// Test stdin
74
const UniValue result = RunCommandParseJSON(test_executable + "pass_stdin_to_stdout", "{\"success\": true}");
@@ -77,7 +76,6 @@ BOOST_AUTO_TEST_CASE(run_command)
77
76
BOOST_CHECK(!success.isNull());
78
BOOST_CHECK_EQUAL(success.get_bool(), true);
79
80
-#endif
81
82
#endif // ENABLE_EXTERNAL_SIGNER
83
0 commit comments