diff options
author | Kaelyn Uhrain <rikka@google.com> | 2012-10-25 19:43:57 +0000 |
---|---|---|
committer | Kaelyn Uhrain <rikka@google.com> | 2012-10-25 19:43:57 +0000 |
commit | ebcb468a75b36ee5d132a942caa9a27fe0839e3b (patch) | |
tree | 5e661da66f25a8f4550abd9c16b68b9478d09a55 | |
parent | c3f1742bdd1ae0091d51168e111cd63861587b13 (diff) |
Move the input files for test/PCH/badpch.c under test/PCH/Inputs/.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@166711 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/PCH/Inputs/badpch-dir.h.gch/.keep (renamed from test/PCH/badpch-dir.h.gch/.keep) | 0 | ||||
-rw-r--r-- | test/PCH/Inputs/badpch-empty.h.gch (renamed from test/PCH/badpch-empty.h.gch) | 0 | ||||
-rw-r--r-- | test/PCH/badpch.c | 4 |
3 files changed, 2 insertions, 2 deletions
diff --git a/test/PCH/badpch-dir.h.gch/.keep b/test/PCH/Inputs/badpch-dir.h.gch/.keep index e69de29bb2..e69de29bb2 100644 --- a/test/PCH/badpch-dir.h.gch/.keep +++ b/test/PCH/Inputs/badpch-dir.h.gch/.keep diff --git a/test/PCH/badpch-empty.h.gch b/test/PCH/Inputs/badpch-empty.h.gch index e69de29bb2..e69de29bb2 100644 --- a/test/PCH/badpch-empty.h.gch +++ b/test/PCH/Inputs/badpch-empty.h.gch diff --git a/test/PCH/badpch.c b/test/PCH/badpch.c index dfe367786d..f34e3d6a15 100644 --- a/test/PCH/badpch.c +++ b/test/PCH/badpch.c @@ -1,5 +1,5 @@ -// RUN: %clang_cc1 -fsyntax-only -include-pch %S/badpch-empty.h.gch %s 2>&1 | FileCheck -check-prefix=CHECK-EMPTY %s -// RUN: %clang_cc1 -fsyntax-only -include-pch %S/badpch-dir.h.gch %s 2>&1 | FileCheck -check-prefix=CHECK-DIR %s +// RUN: %clang_cc1 -fsyntax-only -include-pch %S/Inputs/badpch-empty.h.gch %s 2>&1 | FileCheck -check-prefix=CHECK-EMPTY %s +// RUN: %clang_cc1 -fsyntax-only -include-pch %S/Inputs/badpch-dir.h.gch %s 2>&1 | FileCheck -check-prefix=CHECK-DIR %s // The purpose of this test is to verify that various invalid PCH files are // reported as such. |