File tree 2 files changed +5
-13
lines changed
2 files changed +5
-13
lines changed Original file line number Diff line number Diff line change 9
9
// up clobbering `/dev/null`. Instead we'll use a non-existent path, which
10
10
// also used to ICE, but even root can't magically write there.
11
11
12
- // compile-flags: -o /does-not-exist/output
12
+ // compile-flags: -o . /does-not-exist/output
13
13
14
14
// The error-pattern check occurs *before* normalization, and the error patterns
15
15
// are wildly different between build environments. So this is a cop-out (and we
19
19
// error-pattern: error
20
20
21
21
// On Mac OS X, we get an error like the below
22
- // normalize-stderr-test "failed to write bytecode to /does-not-exist/output.non_ice_error_on_worker_io_fail.*" -> "io error modifying /does-not-exist/"
22
+ // normalize-stderr-test "failed to write bytecode to . /does-not-exist/output.non_ice_error_on_worker_io_fail.*" -> "io error modifying . /does-not-exist/"
23
23
24
24
// On Linux, we get an error like the below
25
- // normalize-stderr-test "couldn't create a temp dir.*" -> "io error modifying /does-not-exist/"
25
+ // normalize-stderr-test "couldn't create a temp dir.*" -> "io error modifying . /does-not-exist/"
26
26
27
27
// ignore-windows - this is a unix-specific test
28
28
// ignore-emscripten - the file-system issues do not replicate here
29
29
// ignore-wasm - the file-system issues do not replicate here
30
30
// ignore-arm - the file-system issues do not replicate here, at least on armhf-gnu
31
31
32
- #![ crate_type="lib" ]
33
-
34
- #![ cfg_attr( not( feature = "std" ) , no_std) ]
35
- pub mod task {
36
- pub mod __internal {
37
- use crate :: task:: Waker ;
38
- }
39
- pub use core:: task:: Waker ;
40
- }
32
+ #![ crate_type = "lib" ]
Original file line number Diff line number Diff line change 1
1
warning: ignoring --out-dir flag due to -o flag
2
2
3
- error: io error modifying /does-not-exist/
3
+ error: io error modifying . /does-not-exist/
4
4
5
5
error: aborting due to previous error; 1 warning emitted
6
6
You can’t perform that action at this time.
0 commit comments