diff options
author | Brad King <brad.king@kitware.com> | 2019-11-11 10:59:17 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-11-11 11:18:35 -0500 |
commit | 77a8f9ecbcf6458eb07e91a12035a34532d53c7c (patch) | |
tree | 9591d16537c03bcafe0d141738610800649e3ece /Tests | |
parent | c1d5d5eb11e0260ffadda0851ac844ab46b6b179 (diff) | |
download | cmake-77a8f9ecbcf6458eb07e91a12035a34532d53c7c.tar.gz |
Tests: Fix ExportImport PCH expectation on Cray Classic compiler
Do not expect PCH-included definitions for this compiler.
Diffstat (limited to 'Tests')
-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 a460d0d76f..a18bbde23f 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) |