blob: b29638bb0b10d51616ee36c2a30d479b6779af32 [file] [log] [blame]
Douglas Gregore721f952009-04-28 18:58:38 +00001// Test with pch.
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00002// RUN: clang-cc -emit-pch -DFOO -o %t %S/variables.h
3// RUN: clang-cc -DBAR=int -include-pch %t -fsyntax-only -pedantic %s
4// RUN: clang-cc -DFOO -DBAR=int -include-pch %t -Werror %s
Douglas Gregor92b059e2009-04-28 20:33:11 +00005// RUN: not clang-cc -DFOO -DBAR=int -DX=5 -include-pch %t -Werror %s
Douglas Gregore721f952009-04-28 18:58:38 +00006
7BAR bar = 17;
8
9#ifndef FOO
10# error FOO was not defined
11#endif
12
13#if FOO != 1
14# error FOO has the wrong definition
15#endif
16
17#ifndef BAR
18# error BAR was not defined
19#endif