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 722e63a commit 3329c43Copy full SHA for 3329c43
src/librustdoc/doctest.rs
@@ -359,7 +359,9 @@ pub(crate) fn run_tests(
359
if nb_errors != 0 {
360
// We ensure temp dir destructor is called.
361
std::mem::drop(temp_dir);
362
- std::process::exit(test::ERROR_EXIT_CODE);
+ // FIXME(GuillaumeGomez): Uncomment the next line once #144297 has been merged.
363
+ // std::process::exit(test::ERROR_EXIT_CODE);
364
+ std::process::exit(101);
365
}
366
367
0 commit comments