| author | |
| committer | |
| log | 5a71e15f1f5c641ca8ecf9418d0e168e0ac0b2ce |
| tree | 15ca43a7a4b3510e391645e6c173ca18a5477094 |
| parent | 43806cf0bd786827367ed3c2680ffee2e9ad4ded |
| signature |
See: 0700ec35bda705fccb61cb3f28734ce11166fda52 files changed, 2 insertions(+), 2 deletions(-)
test/src/ErrorTrace.zig+1-1| ... | ... | @@ -41,7 +41,7 @@ pub fn addCase(self: *ErrorTrace, case: Case) void { |
| 41 | 41 | fn shouldTestNonLlvm(target: *const std.Target) bool { |
| 42 | 42 | return switch (target.cpu.arch) { |
| 43 | 43 | .x86_64 => switch (target.ofmt) { |
| 44 | .elf => true, | |
| 44 | .elf => !target.os.tag.isBSD(), | |
| 45 | 45 | else => false, |
| 46 | 46 | }, |
| 47 | 47 | else => false, |
test/src/StackTrace.zig+1-1| ... | ... | @@ -46,7 +46,7 @@ fn addCaseTarget( |
| 46 | 46 | ) void { |
| 47 | 47 | const both_backends = switch (target.result.cpu.arch) { |
| 48 | 48 | .x86_64 => switch (target.result.ofmt) { |
| 49 | .elf => true, | |
| 49 | .elf => !target.result.os.tag.isBSD(), | |
| 50 | 50 | else => false, |
| 51 | 51 | }, |
| 52 | 52 | else => false, |