forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#124807 - GuillaumeGomez:migrate-rustdoc-io-…
…error, r=jieyouxu Migrate `run-make/rustdoc-io-error` to `rmake.rs` Part of rust-lang#121876. r? `@jieyouxu` try-job: armhf-gnu
- Loading branch information
Showing
3 changed files
with
31 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// This test verifies that rustdoc doesn't ICE when it encounters an IO error | ||
// while generating files. Ideally this would be a rustdoc-ui test, so we could | ||
// verify the error message as well. | ||
// | ||
// It operates by creating a temporary directory and modifying its | ||
// permissions so that it is not writable. We have to take special care to set | ||
// the permissions back to normal so that it's able to be deleted later. | ||
|
||
// On windows, the `set_readonly` functions doesn't work on folders. | ||
//@ ignore-windows | ||
|
||
use run_make_support::{path, rustdoc}; | ||
use std::fs; | ||
|
||
fn main() { | ||
let out_dir = path("rustdoc-io-error"); | ||
let output = fs::create_dir(&out_dir).unwrap(); | ||
let mut permissions = fs::metadata(&out_dir).unwrap().permissions(); | ||
let original_permissions = permissions.clone(); | ||
|
||
permissions.set_readonly(true); | ||
fs::set_permissions(&out_dir, permissions).unwrap(); | ||
|
||
let output = rustdoc().input("foo.rs").output(&out_dir).env("RUST_BACKTRACE", "1").run_fail(); | ||
|
||
fs::set_permissions(&out_dir, original_permissions).unwrap(); | ||
|
||
output | ||
.assert_exit_code(1) | ||
.assert_stderr_contains("error: couldn't generate documentation: Permission denied"); | ||
} |