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
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3074,6 +3074,8 @@ fn bad_bin_name() {
3074
3074
Caused by:
3075
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
+
[HELP] a bin with a similar name exists: `bin`
3078
+
3077
3079
"#]])
3078
3080
.run();
3079
3081
}
@@ -3089,6 +3091,8 @@ fn bad_example_name() {
3089
3091
Caused by:
3090
3092
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
3093
3094
+
[HELP] a example with a similar name exists: `example`
3095
+
3092
3096
"#]])
3093
3097
.run();
3094
3098
}
@@ -3104,6 +3108,8 @@ fn bad_test_name() {
3104
3108
Caused by:
3105
3109
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
3110
3111
+
[HELP] a test with a similar name exists: `test`
3112
+
3107
3113
"#]])
3108
3114
.run();
3109
3115
}
@@ -3119,6 +3125,8 @@ fn bad_bench_name() {
3119
3125
Caused by:
3120
3126
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.
3121
3127
3128
+
[HELP] a bench with a similar name exists: `bench`
0 commit comments