Skip to content

Commit 07f99b9

Browse files
committed
Update tests that don't run on my platform
1 parent c1cfacf commit 07f99b9

File tree

4 files changed

+3
-51
lines changed

4 files changed

+3
-51
lines changed

src/test/ui/error-codes/E0161.stderr

-16
This file was deleted.

src/test/ui/parser/mod_file_not_exist.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
error[E0583]: file not found for module `not_a_real_file`
22
--> $DIR/mod_file_not_exist.rs:3:5
33
|
4-
LL | mod not_a_real_file; //~ ERROR file not found for module `not_a_real_file`
4+
LL | mod not_a_real_file;
55
| ^^^^^^^^^^^^^^^
66
|
77
= help: name the file either not_a_real_file.rs or not_a_real_file/mod.rs inside the directory "$DIR"

src/test/ui/regions/regions-free-region-ordering-caller.stderr

-32
This file was deleted.

src/test/ui/wasm-custom-section-relocations.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
error: statics with a custom `#[link_section]` must be a simple list of bytes on the wasm target with no extra levels of indirection such as references
22
--> $DIR/wasm-custom-section-relocations.rs:4:1
33
|
4-
LL | pub static A: &[u8] = &[1]; //~ ERROR: no extra levels of indirection
4+
LL | pub static A: &[u8] = &[1];
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
66

77
error: statics with a custom `#[link_section]` must be a simple list of bytes on the wasm target with no extra levels of indirection such as references
88
--> $DIR/wasm-custom-section-relocations.rs:13:1
99
|
10-
LL | pub static D: &usize = &C; //~ ERROR: no extra levels of indirection
10+
LL | pub static D: &usize = &C;
1111
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
1212

1313
error: aborting due to 2 previous errors

0 commit comments

Comments
 (0)