mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-03 09:56:38 -05:00
test: Fix "echo" subtest in the system_tests for Windows
This commit is contained in:
parent
60b5795133
commit
507c009c1e
1 changed files with 1 additions and 3 deletions
|
@ -58,10 +58,8 @@ BOOST_AUTO_TEST_CASE(run_command)
|
|||
}
|
||||
{
|
||||
#ifdef WIN32
|
||||
// Windows requires single quotes to prevent escaping double quotes from the JSON...
|
||||
const UniValue result = RunCommandParseJSON("echo '{\"success\": true}'");
|
||||
const UniValue result = RunCommandParseJSON("cmd.exe /c echo {\"success\": true}");
|
||||
#else
|
||||
// ... but Linux and macOS echo a single quote if it's used
|
||||
const UniValue result = RunCommandParseJSON("echo \"{\"success\": true}\"");
|
||||
#endif
|
||||
BOOST_CHECK(result.isObject());
|
||||
|
|
Loading…
Add table
Reference in a new issue