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.
1 parent 317ff28 commit afdfb3cCopy full SHA for afdfb3c
src/wallet/test/mod.rs
@@ -127,12 +127,13 @@ pub fn initialize() {
127
let start_services_file = ["tests", "start_services.sh"].join(&MAIN_SEPARATOR.to_string());
128
INIT.call_once(|| {
129
println!("starting test services...");
130
- let status = Command::new(start_services_file)
131
- .stdout(Stdio::null())
132
- .stderr(Stdio::null())
133
- .status()
+ let output = Command::new(start_services_file)
+ .output()
134
.expect("failed to start test services");
135
- assert!(status.success());
+ if !output.status.success() {
+ println!("{output:?}");
+ panic!("failed to start test services");
136
+ }
137
});
138
}
139
0 commit comments