File tree 1 file changed +4
-2
lines changed
tests/run-make/inaccessible-temp-dir
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 13
13
// use a directory with non-existing parent like `/does-not-exist/output`.
14
14
// See https://github.com/rust-lang/rust/issues/66530
15
15
16
+ //@ ignore-riscv64
17
+ // Reason: The riscv build container runs as root, and can always write
18
+ // into `inaccessible/tmp`
16
19
//@ ignore-arm
17
20
// Reason: linker error on `armhf-gnu`
18
21
//@ ignore-windows
19
22
// Reason: `set_readonly` has no effect on directories
20
23
// and does not prevent modification.
21
24
22
- use run_make_support:: { fs_wrapper, rustc, target , test_while_readonly} ;
25
+ use run_make_support:: { fs_wrapper, rustc, test_while_readonly} ;
23
26
24
27
fn main ( ) {
25
28
// Create an inaccessible directory.
@@ -28,7 +31,6 @@ fn main() {
28
31
// Run rustc with `-Z temps-dir` set to a directory *inside* the inaccessible one,
29
32
// so that it can't create `tmp`.
30
33
rustc ( )
31
- . target ( & target ( ) )
32
34
. input ( "program.rs" )
33
35
. arg ( "-Ztemps-dir=inaccessible/tmp" )
34
36
. run_fail ( )
You can’t perform that action at this time.
0 commit comments