summaryrefslogtreecommitdiff
path: root/test/Import
diff options
context:
space:
mode:
authorSean Callanan <scallanan@apple.com>2016-12-19 19:15:43 +0000
committerSean Callanan <scallanan@apple.com>2016-12-19 19:15:43 +0000
commit01fa6f3b298b98d5f3ecccad52223326c30a280b (patch)
tree4e02ac8594d07467383921e82b8a96d3a6198c20 /test/Import
parent9ff49b7127f7c0009d2ea102032859fcea91937b (diff)
Reverting r290004, r290006, r290010 pending review.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@290130 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Import')
-rw-r--r--test/Import/clang-flags/Inputs/S.c2
-rw-r--r--test/Import/clang-flags/test.c5
-rw-r--r--test/Import/empty-struct/Inputs/S.c2
-rw-r--r--test/Import/empty-struct/test.c5
-rw-r--r--test/Import/error-in-expression/Inputs/S.c2
-rw-r--r--test/Import/error-in-expression/test.c6
-rw-r--r--test/Import/error-in-import/Inputs/S.c2
-rw-r--r--test/Import/error-in-import/test.c6
-rw-r--r--test/Import/missing-import/test.c6
9 files changed, 0 insertions, 36 deletions
diff --git a/test/Import/clang-flags/Inputs/S.c b/test/Import/clang-flags/Inputs/S.c
deleted file mode 100644
index 742dac8a35..0000000000
--- a/test/Import/clang-flags/Inputs/S.c
+++ /dev/null
@@ -1,2 +0,0 @@
-STRUCT S {
-};
diff --git a/test/Import/clang-flags/test.c b/test/Import/clang-flags/test.c
deleted file mode 100644
index 7a19ea7ff6..0000000000
--- a/test/Import/clang-flags/test.c
+++ /dev/null
@@ -1,5 +0,0 @@
-// RUN: clang-import-test -import %S/Inputs/S.c -expression %s -Xcc -DSTRUCT=struct
-void expr() {
- STRUCT S MyS;
- void *MyPtr = &MyS;
-}
diff --git a/test/Import/empty-struct/Inputs/S.c b/test/Import/empty-struct/Inputs/S.c
deleted file mode 100644
index 8c90352bc4..0000000000
--- a/test/Import/empty-struct/Inputs/S.c
+++ /dev/null
@@ -1,2 +0,0 @@
-struct S {
-};
diff --git a/test/Import/empty-struct/test.c b/test/Import/empty-struct/test.c
deleted file mode 100644
index d51a69706d..0000000000
--- a/test/Import/empty-struct/test.c
+++ /dev/null
@@ -1,5 +0,0 @@
-// RUN: clang-import-test -import %S/Inputs/S.c -expression %s
-void expr() {
- struct S MyS;
- void *MyPtr = &MyS;
-}
diff --git a/test/Import/error-in-expression/Inputs/S.c b/test/Import/error-in-expression/Inputs/S.c
deleted file mode 100644
index 8c90352bc4..0000000000
--- a/test/Import/error-in-expression/Inputs/S.c
+++ /dev/null
@@ -1,2 +0,0 @@
-struct S {
-};
diff --git a/test/Import/error-in-expression/test.c b/test/Import/error-in-expression/test.c
deleted file mode 100644
index 65d3b4a5dc..0000000000
--- a/test/Import/error-in-expression/test.c
+++ /dev/null
@@ -1,6 +0,0 @@
-// RUN: not clang-import-test -import %S/Inputs/S.c -expression %s 2>&1 | FileCheck %s
-// CHECK: {{.*}}no viable conversion{{.*}}
-void expr() {
- struct S MyS;
- void *MyPtr = MyS;
-}
diff --git a/test/Import/error-in-import/Inputs/S.c b/test/Import/error-in-import/Inputs/S.c
deleted file mode 100644
index 23ca763f67..0000000000
--- a/test/Import/error-in-import/Inputs/S.c
+++ /dev/null
@@ -1,2 +0,0 @@
-struct S [
-];
diff --git a/test/Import/error-in-import/test.c b/test/Import/error-in-import/test.c
deleted file mode 100644
index 197d4e3042..0000000000
--- a/test/Import/error-in-import/test.c
+++ /dev/null
@@ -1,6 +0,0 @@
-// RUN: not clang-import-test -import %S/Inputs/S.c -expression %s 2>&1 | FileCheck %s
-// CHECK: {{.*}}expected unqualified-id{{.*}}
-void expr() {
- struct S MyS;
- void *MyPtr = &MyS;
-}
diff --git a/test/Import/missing-import/test.c b/test/Import/missing-import/test.c
deleted file mode 100644
index acf6389cc5..0000000000
--- a/test/Import/missing-import/test.c
+++ /dev/null
@@ -1,6 +0,0 @@
-// RUN: not clang-import-test -import %S/Inputs/S.c -expression %s 2>&1 | FileCheck %s
-// CHECK: {{.*}}Couldn't open{{.*}}Inputs/S.c{{.*}}
-void expr() {
- struct S MyS;
- void *MyPtr = &MyS;
-}