[Driver] Don't use capture for InstalledDir
authorPetr Hosek <phosek@google.com>
Tue, 20 Apr 2021 20:42:18 +0000 (13:42 -0700)
committerPetr Hosek <phosek@google.com>
Tue, 20 Apr 2021 20:43:56 +0000 (13:43 -0700)
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

index 7c782e1..9fe68f1 100644 (file)
 
 // 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"