diff options
Diffstat (limited to 'Tests/CustomCommand/check_command_line.c.in')
-rw-r--r-- | Tests/CustomCommand/check_command_line.c.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Tests/CustomCommand/check_command_line.c.in b/Tests/CustomCommand/check_command_line.c.in index a4dbe22..71d5278 100644 --- a/Tests/CustomCommand/check_command_line.c.in +++ b/Tests/CustomCommand/check_command_line.c.in @@ -20,7 +20,7 @@ int main(int argc, const char* argv[]) } else { - printf("[%s]\n", *a); + /*printf("[%s]\n", *a);*/ } } if(*a || *e) @@ -28,5 +28,6 @@ int main(int argc, const char* argv[]) fprintf(stderr, "Number of arguments does not match expected.\n"); return 1; } + printf("Command line escapes work!\n"); return 0; } |