@@ -413,7 +413,7 @@ fn targets_with_relative_path_in_workspace_members() {
413413 . with_stderr_data ( str![ [ r#"
414414[COMPILING] relative-bar v0.1.0 ([ROOT]/foo/relative-bar)
415415[WARNING] unused variable: `a`
416- --> relative-bar/./ build.rs:1:17
416+ --> relative-bar/build.rs:1:17
417417 |
4184181 | fn main() { let a = 1; }
419419 | ^ [HELP] if this is intentional, prefix it with an underscore: `_a`
@@ -422,7 +422,7 @@ fn targets_with_relative_path_in_workspace_members() {
422422
423423[WARNING] `relative-bar` (build script) generated 1 warning
424424[WARNING] function `a` is never used
425- --> relative-bar/./ src/lib.rs:1:4
425+ --> relative-bar/src/lib.rs:1:4
426426 |
4274271 | fn a() {}
428428 | ^
@@ -431,7 +431,7 @@ fn targets_with_relative_path_in_workspace_members() {
431431
432432[WARNING] `relative-bar` (lib) generated 1 warning
433433[WARNING] unused variable: `a`
434- --> relative-bar/./ src/main.rs:1:17
434+ --> relative-bar/src/main.rs:1:17
435435 |
4364361 | fn main() { let a = 1; }
437437 | ^ [HELP] if this is intentional, prefix it with an underscore: `_a`
@@ -447,7 +447,7 @@ fn targets_with_relative_path_in_workspace_members() {
447447 p. cargo ( "check --example example" )
448448 . with_stderr_data ( str![ [ r#"
449449[WARNING] unused variable: `a`
450- --> relative-bar/./ build.rs:1:17
450+ --> relative-bar/build.rs:1:17
451451 |
4524521 | fn main() { let a = 1; }
453453 | ^ [HELP] if this is intentional, prefix it with an underscore: `_a`
@@ -456,7 +456,7 @@ fn targets_with_relative_path_in_workspace_members() {
456456
457457[WARNING] `relative-bar` (build script) generated 1 warning
458458[WARNING] function `a` is never used
459- --> relative-bar/./ src/lib.rs:1:4
459+ --> relative-bar/src/lib.rs:1:4
460460 |
4614611 | fn a() {}
462462 | ^
@@ -466,7 +466,7 @@ fn targets_with_relative_path_in_workspace_members() {
466466[WARNING] `relative-bar` (lib) generated 1 warning
467467[CHECKING] relative-bar v0.1.0 ([ROOT]/foo/relative-bar)
468468[WARNING] unused variable: `a`
469- --> relative-bar/./ example.rs:1:17
469+ --> relative-bar/example.rs:1:17
470470 |
4714711 | fn main() { let a = 1; }
472472 | ^ [HELP] if this is intentional, prefix it with an underscore: `_a`
@@ -481,7 +481,7 @@ fn targets_with_relative_path_in_workspace_members() {
481481
482482 p. cargo ( "check --test test" ) . with_stderr_data ( str![ [ r#"
483483[WARNING] unused variable: `a`
484- --> relative-bar/./ build.rs:1:17
484+ --> relative-bar/build.rs:1:17
485485 |
4864861 | fn main() { let a = 1; }
487487 | ^ [HELP] if this is intentional, prefix it with an underscore: `_a`
@@ -490,7 +490,7 @@ fn targets_with_relative_path_in_workspace_members() {
490490
491491[WARNING] `relative-bar` (build script) generated 1 warning
492492[WARNING] function `a` is never used
493- --> relative-bar/./ src/lib.rs:1:4
493+ --> relative-bar/src/lib.rs:1:4
494494 |
4954951 | fn a() {}
496496 | ^
@@ -500,7 +500,7 @@ fn targets_with_relative_path_in_workspace_members() {
500500[WARNING] `relative-bar` (lib) generated 1 warning
501501[CHECKING] relative-bar v0.1.0 ([ROOT]/foo/relative-bar)
502502[WARNING] unused variable: `a`
503- --> relative-bar/./ test.rs:5:35
503+ --> relative-bar/test.rs:5:35
504504 |
5055055 | fn test_a() { let a = 1; }
506506 | ^ [HELP] if this is intentional, prefix it with an underscore: `_a`
@@ -514,7 +514,7 @@ fn targets_with_relative_path_in_workspace_members() {
514514
515515 p. cargo ( "check --bench bench" ) . with_stderr_data ( str![ [ r#"
516516[WARNING] unused variable: `a`
517- --> relative-bar/./ build.rs:1:17
517+ --> relative-bar/build.rs:1:17
518518 |
5195191 | fn main() { let a = 1; }
520520 | ^ [HELP] if this is intentional, prefix it with an underscore: `_a`
@@ -523,7 +523,7 @@ fn targets_with_relative_path_in_workspace_members() {
523523
524524[WARNING] `relative-bar` (build script) generated 1 warning
525525[WARNING] function `a` is never used
526- --> relative-bar/./ src/lib.rs:1:4
526+ --> relative-bar/src/lib.rs:1:4
527527 |
5285281 | fn a() {}
529529 | ^
@@ -533,7 +533,7 @@ fn targets_with_relative_path_in_workspace_members() {
533533[WARNING] `relative-bar` (lib) generated 1 warning
534534[CHECKING] relative-bar v0.1.0 ([ROOT]/foo/relative-bar)
535535[WARNING] unused variable: `a`
536- --> relative-bar/./ bench.rs:7:58
536+ --> relative-bar/bench.rs:7:58
537537 |
5385387 | fn bench_a(_b: &mut test::Bencher) { let a = 1; }
539539 | ^ [HELP] if this is intentional, prefix it with an underscore: `_a`
0 commit comments