Commit 5a71e15f1f
Changed files (2)
test
test/src/ErrorTrace.zig
@@ -41,7 +41,7 @@ pub fn addCase(self: *ErrorTrace, case: Case) void {
fn shouldTestNonLlvm(target: *const std.Target) bool {
return switch (target.cpu.arch) {
.x86_64 => switch (target.ofmt) {
- .elf => true,
+ .elf => !target.os.tag.isBSD(),
else => false,
},
else => false,
test/src/StackTrace.zig
@@ -46,7 +46,7 @@ fn addCaseTarget(
) void {
const both_backends = switch (target.result.cpu.arch) {
.x86_64 => switch (target.result.ofmt) {
- .elf => true,
+ .elf => !target.result.os.tag.isBSD(),
else => false,
},
else => false,