Commit b7dda772a8

Andrew Kelley <superjoe30@gmail.com>
2018-10-06 06:06:36
disable C ABI tests on macos due to LLD deficiency
See #1535 we'll have a better macos linker someday
1 parent 4640853
Changed files (1)
test/build_examples.zig
@@ -31,6 +31,7 @@ pub fn addCases(cases: *tests.BuildExamplesContext) void {
 
     if (!is_windows // TODO support compiling C files on windows with zig build system
         and builtin.arch == builtin.Arch.x86_64 // TODO add C ABI support for other architectures
+        and builtin.os != builtin.Os.macosx // TODO macosx C ABI test failures
     ) {
         cases.addBuildFile("test/stage1/c_abi/build.zig");
     }