diff options
Diffstat (limited to 'test/Preprocessor/pic.c')
-rw-r--r-- | test/Preprocessor/pic.c | 43 |
1 files changed, 34 insertions, 9 deletions
diff --git a/test/Preprocessor/pic.c b/test/Preprocessor/pic.c index 886beb7..3e649ee 100644 --- a/test/Preprocessor/pic.c +++ b/test/Preprocessor/pic.c @@ -1,9 +1,34 @@ -// RUN: %clang -ccc-host-triple i386-unknown-unknown -static -dM -E -o %t %s -// RUN: grep '#define __PIC__' %t | count 0 -// RUN: grep '#define __pic__' %t | count 0 -// RUN: %clang -ccc-host-triple i386-unknown-unknown -fpic -dM -E -o %t %s -// RUN: grep '#define __PIC__ 1' %t | count 1 -// RUN: grep '#define __pic__ 1' %t | count 1 -// RUN: %clang -ccc-host-triple i386-unknown-unknown -fPIC -dM -E -o %t %s -// RUN: grep '#define __PIC__ 2' %t | count 1 -// RUN: grep '#define __pic__ 2' %t | count 1 +// RUN: %clang_cc1 -dM -E -o - %s \ +// RUN: | FileCheck %s +// CHECK-NOT: #define __PIC__ +// CHECK-NOT: #define __PIE__ +// CHECK-NOT: #define __pic__ +// CHECK-NOT: #define __pie__ +// +// RUN: %clang_cc1 -pic-level 1 -dM -E -o - %s \ +// RUN: | FileCheck --check-prefix=CHECK-PIC1 %s +// CHECK-PIC1: #define __PIC__ 1 +// CHECK-PIC1-NOT: #define __PIE__ +// CHECK-PIC1: #define __pic__ 1 +// CHECK-PIC1-NOT: #define __pie__ +// +// RUN: %clang_cc1 -pic-level 2 -dM -E -o - %s \ +// RUN: | FileCheck --check-prefix=CHECK-PIC2 %s +// CHECK-PIC2: #define __PIC__ 2 +// CHECK-PIC2-NOT: #define __PIE__ +// CHECK-PIC2: #define __pic__ 2 +// CHECK-PIC2-NOT: #define __pie__ +// +// RUN: %clang_cc1 -pie-level 1 -dM -E -o - %s \ +// RUN: | FileCheck --check-prefix=CHECK-PIE1 %s +// CHECK-PIE1-NOT: #define __PIC__ +// CHECK-PIE1: #define __PIE__ 1 +// CHECK-PIE1-NOT: #define __pic__ +// CHECK-PIE1: #define __pie__ 1 +// +// RUN: %clang_cc1 -pie-level 2 -dM -E -o - %s \ +// RUN: | FileCheck --check-prefix=CHECK-PIE2 %s +// CHECK-PIE2-NOT: #define __PIC__ +// CHECK-PIE2: #define __PIE__ 2 +// CHECK-PIE2-NOT: #define __pic__ +// CHECK-PIE2: #define __pie__ 2 |