summaryrefslogtreecommitdiff
path: root/test/PCH
diff options
context:
space:
mode:
authorJustin Bogner <mail@justinbogner.com>2016-07-05 16:14:58 +0000
committerJustin Bogner <mail@justinbogner.com>2016-07-05 16:14:58 +0000
commit84ae3e5f78b454eda4e8d6e5befbb51de9bd0172 (patch)
tree18b3c93c52484ffedb55664ac46eae09965849ee /test/PCH
parentbfff4d2cf95c509405e42e7798765e3cfb242095 (diff)
Revert "test: Use add_lit_testsuites so that subsets of tests can be specified"
This reverts r274560. It's breaking a bunch of bots due to a directory with a space in the name. Doesn't repro locally for some reason. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@274562 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/PCH')
-rw-r--r--test/PCH/libroot/usr/include/reloc.h (renamed from test/PCH/Inputs/libroot/usr/include/reloc.h)0
-rw-r--r--test/PCH/libroot/usr/include/reloc2.h (renamed from test/PCH/Inputs/libroot/usr/include/reloc2.h)0
-rw-r--r--test/PCH/reloc.c8
3 files changed, 4 insertions, 4 deletions
diff --git a/test/PCH/Inputs/libroot/usr/include/reloc.h b/test/PCH/libroot/usr/include/reloc.h
index 04eeacba8f..04eeacba8f 100644
--- a/test/PCH/Inputs/libroot/usr/include/reloc.h
+++ b/test/PCH/libroot/usr/include/reloc.h
diff --git a/test/PCH/Inputs/libroot/usr/include/reloc2.h b/test/PCH/libroot/usr/include/reloc2.h
index 995415ce95..995415ce95 100644
--- a/test/PCH/Inputs/libroot/usr/include/reloc2.h
+++ b/test/PCH/libroot/usr/include/reloc2.h
diff --git a/test/PCH/reloc.c b/test/PCH/reloc.c
index 14788f019f..bf70ab6f69 100644
--- a/test/PCH/reloc.c
+++ b/test/PCH/reloc.c
@@ -1,7 +1,7 @@
// RUN: %clang -target x86_64-apple-darwin10 --relocatable-pch -o %t \
-// RUN: -isysroot %S/Inputs/libroot %S/Inputs/libroot/usr/include/reloc.h
+// RUN: -isysroot %S/libroot %S/libroot/usr/include/reloc.h
// RUN: %clang -target x86_64-apple-darwin10 -fsyntax-only \
-// RUN: -include-pch %t -isysroot %S/Inputs/libroot %s -Xclang -verify
+// RUN: -include-pch %t -isysroot %S/libroot %s -Xclang -verify
// RUN: not %clang -target x86_64-apple-darwin10 -include-pch %t %s
// REQUIRES: x86-registered-target
@@ -11,5 +11,5 @@ int x = 2; // expected-error{{redefinition}}
int y = 5; // expected-error{{redefinition}}
-// expected-note@Inputs/libroot/usr/include/reloc.h:13{{previous definition}}
-// expected-note@Inputs/libroot/usr/include/reloc2.h:14{{previous definition}}
+// expected-note@libroot/usr/include/reloc.h:13{{previous definition}}
+// expected-note@libroot/usr/include/reloc2.h:14{{previous definition}}