diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-04-08 16:40:31 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-04-08 16:40:31 +0000 |
commit | 95794225e9f80d4b45d4767e0b4b43f818c585da (patch) | |
tree | f154c7be9479b398373cf811d54b0c651b4450b9 | |
parent | 65ea45a447c1862da654e3eb56bea80f89c0d5b7 (diff) |
Rephrase the preprocessor test to directly use CC1 and not bother
testing any of the strange driver behavior. We already have some tiny
tests for the driver behavior, and I'm going to expand them greatly in
the next commit.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@154290 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Preprocessor/pic.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/test/Preprocessor/pic.c b/test/Preprocessor/pic.c index a65cef8409..4597f4301f 100644 --- a/test/Preprocessor/pic.c +++ b/test/Preprocessor/pic.c @@ -1,12 +1,12 @@ -// RUN: %clang -target i386-unknown-unknown -static -dM -E -o - %s \ -// RUN: | FileCheck --check-prefix=CHECK-STATIC %s -// CHECK-STATIC-NOT: #define __PIC__ -// CHECK-STATIC-NOT: #define __pic__ -// RUN: %clang -target i386-unknown-unknown -fpic -dM -E -o - %s \ -// RUN: | FileCheck --check-prefix=CHECK-LOWERPIC %s -// CHECK-LOWERPIC: #define __PIC__ 1 -// CHECK-LOWERPIC: #define __pic__ 1 -// RUN: %clang -target i386-unknown-unknown -fPIC -dM -E -o - %s \ -// RUN: | FileCheck --check-prefix=CHECK-UPPERPIC %s -// CHECK-UPPERPIC: #define __PIC__ 2 -// CHECK-UPPERPIC: #define __pic__ 2 +// RUN: %clang_cc1 -dM -E -o - %s \ +// RUN: | FileCheck %s +// CHECK-NOT: #define __PIC__ +// CHECK-NOT: #define __pic__ +// RUN: %clang_cc1 -pic-level 1 -dM -E -o - %s \ +// RUN: | FileCheck --check-prefix=CHECK-PIC1 %s +// CHECK-PIC1: #define __PIC__ 1 +// CHECK-PIC1: #define __pic__ 1 +// RUN: %clang_cc1 -pic-level 2 -dM -E -o - %s \ +// RUN: | FileCheck --check-prefix=CHECK-PIC2 %s +// CHECK-PIC2: #define __PIC__ 2 +// CHECK-PIC2: #define __pic__ 2 |