https://github.com/ian-twilightcoder created https://github.com/llvm/llvm-project/pull/204026
Driver/clang-offload-bundler-multi-compress.c isn't supported on Darwin, but neglected to list the macosx target. >From dd97ee55517b0f23a8b4e679f48f5fda124fa1ad Mon Sep 17 00:00:00 2001 From: Ian Anderson <[email protected]> Date: Mon, 15 Jun 2026 16:48:16 -0700 Subject: [PATCH] [clang][test][darwin] Driver/clang-offload-bundler-multi-compress.c fails on macOS Driver/clang-offload-bundler-multi-compress.c isn't supported on Darwin, but neglected to list the macosx target. --- clang/test/Driver/clang-offload-bundler-multi-compress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/test/Driver/clang-offload-bundler-multi-compress.c b/clang/test/Driver/clang-offload-bundler-multi-compress.c index 859d3e5773e6b..fce5698d8aaf0 100644 --- a/clang/test/Driver/clang-offload-bundler-multi-compress.c +++ b/clang/test/Driver/clang-offload-bundler-multi-compress.c @@ -1,6 +1,6 @@ // REQUIRES: x86-registered-target // REQUIRES: zlib || zstd -// UNSUPPORTED: target={{.*}}-darwin{{.*}}, target={{.*}}-aix{{.*}}, target={{.*}}-zos{{.*}} +// UNSUPPORTED: target={{.*}}-macosx{{.*}}, target={{.*}}-darwin{{.*}}, target={{.*}}-aix{{.*}}, target={{.*}}-zos{{.*}} // Tests that clang-offload-bundler --list correctly enumerates all bundle IDs // from multiple concatenated compressed (CCOB) fat binary blobs stored in the _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
