diff options
author | Francisco Facioni <fran6co@gmail.com> | 2020-01-10 14:00:43 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-02-28 16:07:38 (GMT) |
commit | 1ae9ddbb9dc763564255ecdf1ad25925f7982451 (patch) | |
tree | d4232306eb61813f1f3fffd763fe76058a37ed96 /Tests/Preprocess/preprocess.c | |
parent | 2caae281722b645a5842e1f1689b152b72bb6038 (diff) | |
download | CMake-1ae9ddbb9dc763564255ecdf1ad25925f7982451.zip CMake-1ae9ddbb9dc763564255ecdf1ad25925f7982451.tar.gz CMake-1ae9ddbb9dc763564255ecdf1ad25925f7982451.tar.bz2 |
Tests: Output the expected value in Preprocess test for debugging
Diffstat (limited to 'Tests/Preprocess/preprocess.c')
-rw-r--r-- | Tests/Preprocess/preprocess.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Tests/Preprocess/preprocess.c b/Tests/Preprocess/preprocess.c index 958c77e..b3117da 100644 --- a/Tests/Preprocess/preprocess.c +++ b/Tests/Preprocess/preprocess.c @@ -15,21 +15,21 @@ int check_defines_C(void) result = 0; } if (strcmp(TARGET_STRING, STRING_VALUE) != 0) { - fprintf(stderr, "TARGET_STRING has wrong value in C [%s]\n", - TARGET_STRING); + fprintf(stderr, "TARGET_STRING has wrong value in C [%s] vs [%s]\n", + TARGET_STRING, STRING_VALUE); result = 0; } { int x = 2; int y = 3; if ((FILE_EXPR) != (EXPR)) { - fprintf(stderr, "FILE_EXPR did not work in C [%s]\n", - TO_STRING(FILE_EXPR)); + fprintf(stderr, "FILE_EXPR did not work in C [%s] vs [%s]\n", + TO_STRING(FILE_EXPR), TO_STRING(EXPR)); result = 0; } if ((TARGET_EXPR) != (EXPR)) { - fprintf(stderr, "TARGET_EXPR did not work in C [%s]\n", - TO_STRING(FILE_EXPR)); + fprintf(stderr, "TARGET_EXPR did not work in C [%s] vs [%s]\n", + TO_STRING(TARGET_EXPR), TO_STRING(EXPR)); result = 0; } } |