summaryrefslogtreecommitdiffstats
path: root/Tests/Preprocess/preprocess.c
diff options
context:
space:
mode:
authorZsolt Parragi <zsolt.parragi@cancellar.hu>2019-04-10 12:11:21 (GMT)
committerZsolt Parragi <zsolt.parragi@cancellar.hu>2019-05-24 06:43:55 (GMT)
commit19669abe1d714d9dba3dcd642588160c0814f9e7 (patch)
tree2d4f07906a49eba1721e209546e0e9eb0d66aad6 /Tests/Preprocess/preprocess.c
parenta2a90f41e312ef1b6f60dd700db441e4b637d853 (diff)
downloadCMake-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.c3
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) {