From: Chris Bieneman Date: Tue, 15 Mar 2016 18:17:48 +0000 (+0000) Subject: Fix a bot I broke. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f54be7fec5cb4e6e4f4f1acc1be739c746cbf502;p=clang Fix a bot I broke. The builtin library isn't added by the driver unless it exists, so we shouldn't check for it. I've marked this as a FIXME, because we probably should have a way to test this. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@263568 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Driver/darwin-ld.c b/test/Driver/darwin-ld.c index e81d882a1b..185ed88688 100644 --- a/test/Driver/darwin-ld.c +++ b/test/Driver/darwin-ld.c @@ -156,7 +156,10 @@ // RUN: FileCheck -check-prefix=LINK_IOSSIM_PROFILE %s < %t.log // LINK_IOSSIM_PROFILE: {{ld(.exe)?"}} // LINK_IOSSIM_PROFILE: libclang_rt.profile_iossim.a -// LINK_IOSSIM_PROFILE: libclang_rt.ios.a + +// FIXME: Currently the builtin library is only added to the command line if it, +// so we can't check for it here +// FIXME_LINK_IOSSIM_PROFILE: libclang_rt.ios.a // RUN: %clang -target arm64-apple-tvos8.3 -mtvos-version-min=8.3 -### %t.o 2> %t.log // RUN: FileCheck -check-prefix=LINK_TVOS_ARM64 %s < %t.log