Conditionally renable tests

This commit is contained in:
David Gonzalez Martin 2024-03-25 13:00:00 -06:00
parent 7102578769
commit f245b28ed8

View File

@ -513,7 +513,15 @@ pub fn main() !void {
errors = true; errors = true;
}; };
// try runCmakeTests(allocator); switch (@import("builtin").os.tag) {
.macos => {},
.linux => switch (@import("builtin").abi) {
.gnu => try runCmakeTests(allocator),
.musl => {},
else => @compileError("ABI not supported"),
},
else => @compileError("OS not supported"),
}
if (errors) { if (errors) {
return error.fail; return error.fail;