diff options
author | Brad King <brad.king@kitware.com> | 2019-11-11 15:59:17 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-11-11 16:18:35 (GMT) |
commit | 77a8f9ecbcf6458eb07e91a12035a34532d53c7c (patch) | |
tree | 9591d16537c03bcafe0d141738610800649e3ece /Tests/ExportImport | |
parent | c1d5d5eb11e0260ffadda0851ac844ab46b6b179 (diff) | |
download | CMake-77a8f9ecbcf6458eb07e91a12035a34532d53c7c.zip CMake-77a8f9ecbcf6458eb07e91a12035a34532d53c7c.tar.gz CMake-77a8f9ecbcf6458eb07e91a12035a34532d53c7c.tar.bz2 |
Tests: Fix ExportImport PCH expectation on Cray Classic compiler
Do not expect PCH-included definitions for this compiler.
Diffstat (limited to 'Tests/ExportImport')
-rw-r--r-- | Tests/ExportImport/Import/Interface/pch_iface_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/ExportImport/Import/Interface/pch_iface_test.cpp b/Tests/ExportImport/Import/Interface/pch_iface_test.cpp index a460d0d..a18bbde 100644 --- a/Tests/ExportImport/Import/Interface/pch_iface_test.cpp +++ b/Tests/ExportImport/Import/Interface/pch_iface_test.cpp @@ -3,7 +3,7 @@ # ifndef PCH_PCH_H_INCLUDED # error "Expected PCH_PCH_H_INCLUDED." # endif -#elif defined(__PGIC__) || defined(__ibmxl__) +#elif defined(__PGIC__) || defined(__ibmxl__) || defined(_CRAYC) // No PCH expected but these compilers define macros below. #elif defined(__GNUC__) || defined(__clang__) || defined(_INTEL_COMPILER) || \ defined(_MSC_VER) |