| 
									
										
										
										
											2014-08-09 09:04:38 -07:00
										 |  |  | # Test if compile errors are produced where necessary.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | cmake_minimum_required(VERSION 2.8)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | include(CheckCXXSourceCompiles)
 | 
					
						
							|  |  |  | set(CMAKE_REQUIRED_INCLUDES ${CMAKE_CURRENT_SOURCE_DIR}/../..)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-30 23:49:39 +01:00
										 |  |  | function (generate_source result fragment)
 | 
					
						
							|  |  |  |   set(${result} " | 
					
						
							|  |  |  |   #define FMT_HEADER_ONLY 1
 | 
					
						
							| 
									
										
										
										
											2016-04-24 09:06:12 -07:00
										 |  |  |   #include \"fmt/format.h\"
 | 
					
						
							| 
									
										
										
										
											2014-08-09 09:04:38 -07:00
										 |  |  |   int main() {
 | 
					
						
							| 
									
										
										
										
											2016-01-30 23:49:39 +01:00
										 |  |  |     ${fragment}
 | 
					
						
							| 
									
										
										
										
											2014-08-09 09:04:38 -07:00
										 |  |  |   }
 | 
					
						
							| 
									
										
										
										
											2016-01-30 23:49:39 +01:00
										 |  |  |   " PARENT_SCOPE)
 | 
					
						
							|  |  |  | endfunction ()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function (expect_compile code)
 | 
					
						
							|  |  |  |   generate_source(source "${code}")
 | 
					
						
							|  |  |  |   check_cxx_source_compiles("${source}" compiles)
 | 
					
						
							|  |  |  |   if (NOT compiles)
 | 
					
						
							|  |  |  |     message(FATAL_ERROR "Compile error for: ${code}")
 | 
					
						
							|  |  |  |   endif ()
 | 
					
						
							| 
									
										
										
										
											2014-08-09 09:04:38 -07:00
										 |  |  |   # Unset the CMake cache variable compiles. Otherwise the compile test will
 | 
					
						
							|  |  |  |   # just use cached information next time it runs.
 | 
					
						
							|  |  |  |   unset(compiles CACHE)
 | 
					
						
							| 
									
										
										
										
											2016-01-30 23:49:39 +01:00
										 |  |  | endfunction ()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function (expect_compile_error code)
 | 
					
						
							|  |  |  |   generate_source(source "${code}")
 | 
					
						
							|  |  |  |   check_cxx_source_compiles("${source}" compiles)
 | 
					
						
							|  |  |  |   if (compiles)
 | 
					
						
							| 
									
										
										
										
											2014-08-09 09:04:38 -07:00
										 |  |  |     message(FATAL_ERROR "No compile error for: ${code}")
 | 
					
						
							|  |  |  |   endif ()
 | 
					
						
							| 
									
										
										
										
											2016-01-30 23:49:39 +01:00
										 |  |  |   # Unset the CMake cache variable compiles. Otherwise the compile test will
 | 
					
						
							|  |  |  |   # just use cached information next time it runs.
 | 
					
						
							|  |  |  |   unset(compiles CACHE)
 | 
					
						
							| 
									
										
										
										
											2014-08-09 09:04:38 -07:00
										 |  |  | endfunction ()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-30 23:49:39 +01:00
										 |  |  | # check if the source file skeleton compiles
 | 
					
						
							|  |  |  | expect_compile("")
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-09 09:04:38 -07:00
										 |  |  | # MakeArg doesn't accept [const] volatile char *.
 | 
					
						
							|  |  |  | expect_compile_error("volatile char s[] = \"test\"; (fmt::internal::MakeArg<char>)(s);")
 | 
					
						
							|  |  |  | expect_compile_error("const volatile char s[] = \"test\"; (fmt::internal::MakeArg<char>)(s);")
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # MakeArg<char> doesn't accept wchar_t.
 | 
					
						
							| 
									
										
										
										
											2015-03-01 17:03:44 -08:00
										 |  |  | expect_compile_error("fmt::internal::MakeValue<char>(L'a');")
 | 
					
						
							|  |  |  | expect_compile_error("fmt::internal::MakeValue<char>(L\"test\");")
 | 
					
						
							| 
									
										
										
										
											2014-08-09 09:04:38 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Writing a wide character to a character stream Writer is forbidden.
 | 
					
						
							| 
									
										
										
										
											2015-03-01 14:13:45 -08:00
										 |  |  | expect_compile_error("fmt::MemoryWriter() << L'a';")
 | 
					
						
							|  |  |  | expect_compile_error("fmt::MemoryWriter() << fmt::pad(\"abc\", 5, L' ');")
 | 
					
						
							|  |  |  | expect_compile_error("fmt::MemoryWriter() << fmt::pad(42, 5, L' ');")
 | 
					
						
							| 
									
										
										
										
											2014-08-09 09:04:38 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Formatting a wide character with a narrow format string is forbidden.
 | 
					
						
							|  |  |  | expect_compile_error("fmt::format(\"{}\", L'a';")
 | 
					
						
							| 
									
										
										
										
											2014-09-12 12:05:32 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | expect_compile_error("FMT_STATIC_ASSERT(0 > 1, \"oops\");")
 |