diff options
author | Zsolt Parragi <zsolt.parragi@cancellar.hu> | 2019-04-10 12:11:21 (GMT) |
---|---|---|
committer | Zsolt Parragi <zsolt.parragi@cancellar.hu> | 2019-05-24 06:43:55 (GMT) |
commit | 19669abe1d714d9dba3dcd642588160c0814f9e7 (patch) | |
tree | 2d4f07906a49eba1721e209546e0e9eb0d66aad6 /Tests/Preprocess/preprocess.c | |
parent | a2a90f41e312ef1b6f60dd700db441e4b637d853 (diff) | |
download | CMake-19669abe1d714d9dba3dcd642588160c0814f9e7.zip CMake-19669abe1d714d9dba3dcd642588160c0814f9e7.tar.gz CMake-19669abe1d714d9dba3dcd642588160c0814f9e7.tar.bz2 |
Tests: handle string escaping differences with NMake+clang
Diffstat (limited to 'Tests/Preprocess/preprocess.c')
-rw-r--r-- | Tests/Preprocess/preprocess.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Tests/Preprocess/preprocess.c b/Tests/Preprocess/preprocess.c index 2913f93..958c77e 100644 --- a/Tests/Preprocess/preprocess.c +++ b/Tests/Preprocess/preprocess.c @@ -10,7 +10,8 @@ int check_defines_C(void) { int result = 1; if (strcmp(FILE_STRING, STRING_VALUE) != 0) { - fprintf(stderr, "FILE_STRING has wrong value in C [%s]\n", FILE_STRING); + fprintf(stderr, "FILE_STRING has wrong value in C [%s] vs [%s]\n", + FILE_STRING, STRING_VALUE); result = 0; } if (strcmp(TARGET_STRING, STRING_VALUE) != 0) { |