@@ -414,7 +414,7 @@ fn targets_with_relative_path_in_workspace_members() {
414414 . with_stderr_data ( str![ [ r#"
415415[COMPILING] relative-bar v0.1.0 ([ROOT]/foo/relative-bar)
416416[WARNING] unused variable: `a`
417- --> relative-bar/./ build.rs:1:17
417+ --> relative-bar/build.rs:1:17
418418 |
4194191 | fn main() { let a = 1; }
420420 | ^ [HELP] if this is intentional, prefix it with an underscore: `_a`
@@ -423,7 +423,7 @@ fn targets_with_relative_path_in_workspace_members() {
423423
424424[WARNING] `relative-bar` (build script) generated 1 warning
425425[WARNING] function `a` is never used
426- --> relative-bar/./ src/lib.rs:1:4
426+ --> relative-bar/src/lib.rs:1:4
427427 |
4284281 | fn a() {}
429429 | ^
@@ -432,7 +432,7 @@ fn targets_with_relative_path_in_workspace_members() {
432432
433433[WARNING] `relative-bar` (lib) generated 1 warning
434434[WARNING] unused variable: `a`
435- --> relative-bar/./ src/main.rs:1:17
435+ --> relative-bar/src/main.rs:1:17
436436 |
4374371 | fn main() { let a = 1; }
438438 | ^ [HELP] if this is intentional, prefix it with an underscore: `_a`
@@ -448,7 +448,7 @@ fn targets_with_relative_path_in_workspace_members() {
448448 p. cargo ( "check --example example" )
449449 . with_stderr_data ( str![ [ r#"
450450[WARNING] unused variable: `a`
451- --> relative-bar/./ build.rs:1:17
451+ --> relative-bar/build.rs:1:17
452452 |
4534531 | fn main() { let a = 1; }
454454 | ^ [HELP] if this is intentional, prefix it with an underscore: `_a`
@@ -457,7 +457,7 @@ fn targets_with_relative_path_in_workspace_members() {
457457
458458[WARNING] `relative-bar` (build script) generated 1 warning
459459[WARNING] function `a` is never used
460- --> relative-bar/./ src/lib.rs:1:4
460+ --> relative-bar/src/lib.rs:1:4
461461 |
4624621 | fn a() {}
463463 | ^
@@ -467,7 +467,7 @@ fn targets_with_relative_path_in_workspace_members() {
467467[WARNING] `relative-bar` (lib) generated 1 warning
468468[CHECKING] relative-bar v0.1.0 ([ROOT]/foo/relative-bar)
469469[WARNING] unused variable: `a`
470- --> relative-bar/./ example.rs:1:17
470+ --> relative-bar/example.rs:1:17
471471 |
4724721 | fn main() { let a = 1; }
473473 | ^ [HELP] if this is intentional, prefix it with an underscore: `_a`
@@ -482,7 +482,7 @@ fn targets_with_relative_path_in_workspace_members() {
482482
483483 p. cargo ( "check --test test" ) . with_stderr_data ( str![ [ r#"
484484[WARNING] unused variable: `a`
485- --> relative-bar/./ build.rs:1:17
485+ --> relative-bar/build.rs:1:17
486486 |
4874871 | fn main() { let a = 1; }
488488 | ^ [HELP] if this is intentional, prefix it with an underscore: `_a`
@@ -491,7 +491,7 @@ fn targets_with_relative_path_in_workspace_members() {
491491
492492[WARNING] `relative-bar` (build script) generated 1 warning
493493[WARNING] function `a` is never used
494- --> relative-bar/./ src/lib.rs:1:4
494+ --> relative-bar/src/lib.rs:1:4
495495 |
4964961 | fn a() {}
497497 | ^
@@ -501,7 +501,7 @@ fn targets_with_relative_path_in_workspace_members() {
501501[WARNING] `relative-bar` (lib) generated 1 warning
502502[CHECKING] relative-bar v0.1.0 ([ROOT]/foo/relative-bar)
503503[WARNING] unused variable: `a`
504- --> relative-bar/./ test.rs:5:35
504+ --> relative-bar/test.rs:5:35
505505 |
5065065 | fn test_a() { let a = 1; }
507507 | ^ [HELP] if this is intentional, prefix it with an underscore: `_a`
@@ -516,7 +516,7 @@ fn targets_with_relative_path_in_workspace_members() {
516516 if is_nightly ( ) {
517517 p. cargo ( "check --bench bench" ) . with_stderr_data ( str![ [ r#"
518518[WARNING] unused variable: `a`
519- --> relative-bar/./ build.rs:1:17
519+ --> relative-bar/build.rs:1:17
520520 |
5215211 | fn main() { let a = 1; }
522522 | ^ [HELP] if this is intentional, prefix it with an underscore: `_a`
@@ -525,7 +525,7 @@ fn targets_with_relative_path_in_workspace_members() {
525525
526526[WARNING] `relative-bar` (build script) generated 1 warning
527527[WARNING] function `a` is never used
528- --> relative-bar/./ src/lib.rs:1:4
528+ --> relative-bar/src/lib.rs:1:4
529529 |
5305301 | fn a() {}
531531 | ^
@@ -535,7 +535,7 @@ fn targets_with_relative_path_in_workspace_members() {
535535[WARNING] `relative-bar` (lib) generated 1 warning
536536[CHECKING] relative-bar v0.1.0 ([ROOT]/foo/relative-bar)
537537[WARNING] unused variable: `a`
538- --> relative-bar/./ bench.rs:7:58
538+ --> relative-bar/bench.rs:7:58
539539 |
5405407 | fn bench_a(_b: &mut test::Bencher) { let a = 1; }
541541 | ^ [HELP] if this is intentional, prefix it with an underscore: `_a`
0 commit comments