Author: dcandler Date: 2026-09-23T18:56:08+01:00 New Revision: 2c80b3dae3bc1f0ee7b4e686a0b411b64c83560c
URL: https://github.com/llvm/llvm-project/commit/2c80b3dae3bc1f0ee7b4e686a0b411b64c83560c DIFF: https://github.com/llvm/llvm-project/commit/2c80b3dae3bc1f0ee7b4e686a0b411b64c83560c.diff LOG: [Clang] Restrict darwin-static-lib-universal.c in cross-builds (#225447) A new test was added in 841dbaab188ecfa756d4c946f33b58758d34d339 which will fail when run on macOS if macOS is not set as the default target. This has previously been solved in other tests by further restricting the REQUIRES line to also check the target. Added: Modified: clang/test/Driver/darwin-static-lib-universal.c Removed: ################################################################################ diff --git a/clang/test/Driver/darwin-static-lib-universal.c b/clang/test/Driver/darwin-static-lib-universal.c index 4ad542d4c7700..bee9ce28e2fd8 100644 --- a/clang/test/Driver/darwin-static-lib-universal.c +++ b/clang/test/Driver/darwin-static-lib-universal.c @@ -1,4 +1,4 @@ -// REQUIRES: system-darwin +// REQUIRES: system-darwin && target={{.*}}-{{darwin|macos}}{{.*}} // RUN: touch %t1.o %t2.o _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
