]> granicus.if.org Git - clang/commitdiff
Make testcase more robust for completely-out-of-tree builds.
authorAdrian Prantl <aprantl@apple.com>
Fri, 7 Dec 2018 17:04:26 +0000 (17:04 +0000)
committerAdrian Prantl <aprantl@apple.com>
Fri, 7 Dec 2018 17:04:26 +0000 (17:04 +0000)
Thats to Dave Zarzycki for reprorting this!

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@348612 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/debug-info-abspath.c

index 3ca170621f9ba7e228424da66c31eff889905f3f..1273235793ec175f6f424aacf75188d8326ec287 100644 (file)
@@ -1,15 +1,19 @@
+// RUN: mkdir -p %t/UNIQUEISH_SENTINEL
+// RUN: cp %s %t/UNIQUEISH_SENTINEL/debug-info-abspath.c
+
 // RUN: %clang_cc1 -debug-info-kind=limited -triple %itanium_abi_triple \
-// RUN:   %s -emit-llvm -o - | FileCheck %s
+// RUN:   %t/UNIQUEISH_SENTINEL/debug-info-abspath.c -emit-llvm -o - \
+// RUN:   | FileCheck %s
 
 // RUN: cp %s %t.c
 // RUN: %clang_cc1 -debug-info-kind=limited -triple %itanium_abi_triple \
 // RUN:   %t.c -emit-llvm -o - | FileCheck %s --check-prefix=INTREE
 void foo() {}
 
-// Since %s is an absolute path, directory should be a nonempty
-// prefix, but the CodeGen part should be part of the filename.
+// Since %s is an absolute path, directory should be the common
+// prefix, but the directory part should be part of the filename.
 
-// CHECK: DIFile(filename: "{{.*}}CodeGen{{.*}}debug-info-abspath.c"
-// CHECK-SAME:   directory: "{{.+}}")
+// CHECK: DIFile(filename: "{{.*}}UNIQUEISH_SENTINEL{{.*}}debug-info-abspath.c"
+// CHECK-NOT:    directory: "{{.*}}UNIQUEISH_SENTINEL
 
 // INTREE: DIFile({{.*}}directory: "{{.+}}CodeGen{{.*}}")