You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/testsuite/bad_config.rs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -3072,7 +3072,7 @@ fn bad_bin_name() {
3072
3072
[ERROR] failed to parse manifest at `[ROOT]/foo/Cargo.toml`
3073
3073
3074
3074
Caused by:
3075
-
can't find `bin.rs` bin at `src/bin/bin.rs` or `src/bin/bin.rs/main.rs`. Please specify bin.path if you want to use a non-default path.
3075
+
can't find `bin.rs` bin at `src/bin/bin.rs.rs` or `src/bin/bin.rs/main.rs`. Please specify bin.path if you want to use a non-default path.
3076
3076
3077
3077
"#]])
3078
3078
.run();
@@ -3087,7 +3087,7 @@ fn bad_example_name() {
3087
3087
[ERROR] failed to parse manifest at `[ROOT]/foo/Cargo.toml`
3088
3088
3089
3089
Caused by:
3090
-
can't find `example.rs` example at `examples/example.rs` or `examples/example.rs/main.rs`. Please specify example.path if you want to use a non-default path.
3090
+
can't find `example.rs` example at `examples/example.rs.rs` or `examples/example.rs/main.rs`. Please specify example.path if you want to use a non-default path.
3091
3091
3092
3092
"#]])
3093
3093
.run();
@@ -3102,7 +3102,7 @@ fn bad_test_name() {
3102
3102
[ERROR] failed to parse manifest at `[ROOT]/foo/Cargo.toml`
3103
3103
3104
3104
Caused by:
3105
-
can't find `test.rs` test at `tests/test.rs` or `tests/test.rs/main.rs`. Please specify test.path if you want to use a non-default path.
3105
+
can't find `test.rs` test at `tests/test.rs.rs` or `tests/test.rs/main.rs`. Please specify test.path if you want to use a non-default path.
3106
3106
3107
3107
"#]])
3108
3108
.run();
@@ -3117,7 +3117,7 @@ fn bad_bench_name() {
3117
3117
[ERROR] failed to parse manifest at `[ROOT]/foo/Cargo.toml`
3118
3118
3119
3119
Caused by:
3120
-
can't find `bench.rs` bench at `benches/bench.rs` or `benches/bench.rs/main.rs`. Please specify bench.path if you want to use a non-default path.
3120
+
can't find `bench.rs` bench at `benches/bench.rs.rs` or `benches/bench.rs/main.rs`. Please specify bench.path if you want to use a non-default path.
0 commit comments