Skip to content
Snippets Groups Projects
Commit fff773a4 authored by Georgy Moshkin's avatar Georgy Moshkin :speech_balloon:
Browse files

test: don't panic in unit test runner if tests failed

parent f3364158
No related branches found
Tags 23.12.1
1 merge request!741rename: _pico_space -> _pico_table & some type defintions
......@@ -5,5 +5,7 @@ fn main() {
.status()
.unwrap();
assert!(status.success());
if !status.success() {
std::process::exit(1);
}
}
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