| author | |
| committer | |
| log | 4d2b216121e5fbdb019ab8e727df654e7b08e984 |
| tree | 18412381235bbf029ec2a504751628cbb4196cb4 |
| parent | ff89a98c50dbf826564657e7f98cc56194add163 |
| signature |
The name of the ZCU object file emitted by the LLVM backend has been
changed in this branch from e.g. `foo.obj` to `foo_zcu.obj`. This is to
avoid name clashes. This commit just updates the stack trace tests which
started failing on windows because of the object name change.1 files changed, 1 insertions(+), 1 deletions(-)
test/src/check-stack-trace.zig+1-1| ... | ... | @@ -65,7 +65,7 @@ pub fn main() !void { |
| 65 | 65 | // This actually violates the DWARF specification (DWARF5 § 3.1.1, lines 24-27). |
| 66 | 66 | // The self-hosted backend uses the root Zig source file of the module (in compilance with the spec). |
| 67 | 67 | if (std.mem.eql(u8, file_name, "test") or |
| 68 | std.mem.eql(u8, file_name, "test.exe.obj") or | |
| 68 | std.mem.eql(u8, file_name, "test_zcu.obj") or | |
| 69 | 69 | std.mem.endsWith(u8, file_name, ".zig")) |
| 70 | 70 | { |
| 71 | 71 | try buf.appendSlice("[main_file]"); |