From 97e7e79435c69e90cb7f056c704c275421bf0892 Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Wed, 21 Jan 2026 19:07:52 +0000 Subject: [PATCH] test: Enable `system_tests/run_command` "stdin" test on Windows --- src/test/system_tests.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/test/system_tests.cpp b/src/test/system_tests.cpp index c5eac1cbcd2..5f88490eda1 100644 --- a/src/test/system_tests.cpp +++ b/src/test/system_tests.cpp @@ -74,7 +74,6 @@ BOOST_AUTO_TEST_CASE(run_command) // Unable to parse JSON BOOST_CHECK_EXCEPTION(RunCommandParseJSON(mock_executable("invalid_json")), std::runtime_error, HasReason("Unable to parse JSON: {")); } -#ifndef WIN32 { // Test stdin const UniValue result = RunCommandParseJSON(mock_executable("pass_stdin_to_stdout"), "{\"success\": true}"); @@ -83,7 +82,6 @@ BOOST_AUTO_TEST_CASE(run_command) BOOST_CHECK(!success.isNull()); BOOST_CHECK_EQUAL(success.get_bool(), true); } -#endif } #endif // ENABLE_EXTERNAL_SIGNER