Skip to content
Snippets Groups Projects
Commit 21b861be authored by Dmitry Ivanov's avatar Dmitry Ivanov Committed by Dmitry Ivanov
Browse files

fix(test/inner): panic if failed to exec picodata

parent c600e325
No related branches found
No related tags found
1 merge request!1449fix(test/inner): panic if failed to exec picodata
Pipeline #56247 failed
use std::os::unix::process::CommandExt;
fn main() {
std::process::Command::new(env!("CARGO_BIN_EXE_picodata"))
let err = std::process::Command::new(env!("CARGO_BIN_EXE_picodata"))
.arg("test")
.args(std::env::args().skip(1))
.exec();
panic!("failed to exec: {err}");
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment