From caff17e503fe81d69e90dd69b14f5149659f9db4 Mon Sep 17 00:00:00 2001 From: Petr Hosek Date: Tue, 20 Apr 2021 13:42:18 -0700 Subject: [PATCH] [Driver] Don't use capture for InstalledDir This is another attempt to address the issue introduced in ae8b2cab67408a043a4fe964d16e4803553c4ee0. We cannot capture InstalledDir because FileCheck doesn't handle the backslashes correctly, so instead we just consume the entire path prefix which is what other tests are doing. --- clang/test/Driver/darwin-ld.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/clang/test/Driver/darwin-ld.c b/clang/test/Driver/darwin-ld.c index 7c782e1..9fe68f1 100644 --- a/clang/test/Driver/darwin-ld.c +++ b/clang/test/Driver/darwin-ld.c @@ -368,5 +368,4 @@ // RUN: %clang -target x86_64-apple-darwin10 -### %t.o 2> %t.log // RUN: FileCheck -check-prefix=INSTALL-DIR %s < %t.log -// INSTALL-DIR: InstalledDir: [[INSTALLDIR:.+$]] -// INSTALL-DIR: "-L[[INSTALLDIR]]{{/|\\\\}}..{{/|\\\\}}lib" +// INSTALL-DIR: "-L{{.*}}{{/|\\\\}}..{{/|\\\\}}lib" -- 2.7.4