| ... | @@ -211,7 +211,7 @@ fn testDuplicateDefinitions(b: *Build, opts: Options) *Step { | ... | @@ -211,7 +211,7 @@ fn testDuplicateDefinitions(b: *Build, opts: Options) *Step { |
| 211 | expectLinkErrors(exe, test_step, .{ .exact = &.{ | 211 | expectLinkErrors(exe, test_step, .{ .exact = &.{ |
| 212 | "error: duplicate symbol definition: _strong", | 212 | "error: duplicate symbol definition: _strong", |
| 213 | "note: defined by /?/a.o", | 213 | "note: defined by /?/a.o", |
| 214 | "note: defined by /?/main.o", | 214 | "note: defined by /?/main_zcu.o", |
| 215 | } }); | 215 | } }); |
| 216 | | 216 | |
| 217 | return test_step; | 217 | return test_step; |
| ... | @@ -2648,7 +2648,7 @@ fn testUnresolvedError(b: *Build, opts: Options) *Step { | ... | @@ -2648,7 +2648,7 @@ fn testUnresolvedError(b: *Build, opts: Options) *Step { |
| 2648 | expectLinkErrors(exe, test_step, .{ .exact = &.{ | 2648 | expectLinkErrors(exe, test_step, .{ .exact = &.{ |
| 2649 | "error: undefined symbol: _foo", | 2649 | "error: undefined symbol: _foo", |
| 2650 | "note: referenced by /?/a.o:_bar", | 2650 | "note: referenced by /?/a.o:_bar", |
| 2651 | "note: referenced by /?/main.o:_main.main", | 2651 | "note: referenced by /?/main_zcu.o:_main.main", |
| 2652 | } }); | 2652 | } }); |
| 2653 | } else { | 2653 | } else { |
| 2654 | expectLinkErrors(exe, test_step, .{ .exact = &.{ | 2654 | expectLinkErrors(exe, test_step, .{ .exact = &.{ |