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 227abb7 commit bee5fbfCopy full SHA for bee5fbf
src/librustdoc/doctest.rs
@@ -409,8 +409,9 @@ pub(crate) fn run_tests(
409
// We ensure temp dir destructor is called.
410
std::mem::drop(temp_dir);
411
times.display_times();
412
- // libtest::ERROR_EXIT_CODE is not public but it's the same value.
413
- std::process::exit(test::ERROR_EXIT_CODE);
+ // FIXME(GuillaumeGomez): Uncomment the next line once #144297 has been merged.
+ // std::process::exit(test::ERROR_EXIT_CODE);
414
+ std::process::exit(101);
415
}
416
417
0 commit comments