blob: 7735b475e1ae881043fee467b5d1bfc23a9207b7 [file] [log] [blame]
Douglas Gregorf033f1d2010-07-20 20:18:03 +00001// Preamble detection test: see below for comments and test commands.
Daniel Dunbar0286de62010-07-21 19:40:01 +00002//
Douglas Gregorf033f1d2010-07-20 20:18:03 +00003#include <blah>
4#ifndef FOO
5#else
6#ifdef BAR
7#elif WIBBLE
8#endif
9#pragma unknown
10#endif
Douglas Gregorf033f1d2010-07-20 20:18:03 +000011#ifdef WIBBLE
12#include "honk"
13#else
14int foo();
15#endif
16
17// This test checks for detection of the preamble of a file, which
18// includes all of the starting comments and #includes. Note that any
19// changes to the preamble part of this file must be mirrored in
20// Inputs/preamble.txt, since we diff against it.
21
22// RUN: %clang_cc1 -print-preamble %s > %t
Daniel Dunbar9a570b42010-07-22 02:22:24 +000023// RUN: echo END. >> %t
Daniel Dunbar0286de62010-07-21 19:40:01 +000024// RUN: FileCheck < %t %s
25
26// CHECK: // Preamble detection test: see below for comments and test commands.
27// CHECK-NEXT: //
28// CHECK-NEXT: #include <blah>
29// CHECK-NEXT: #ifndef FOO
30// CHECK-NEXT: #else
31// CHECK-NEXT: #ifdef BAR
32// CHECK-NEXT: #elif WIBBLE
33// CHECK-NEXT: #endif
34// CHECK-NEXT: #pragma unknown
35// CHECK-NEXT: #endif
Daniel Dunbar9a570b42010-07-22 02:22:24 +000036// CHECK-NEXT: END.