about summary refs log tree commit diff
path: root/test/test-compcov.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/test-compcov.c')
-rw-r--r--test/test-compcov.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test-compcov.c b/test/test-compcov.c
index 978d5551..b1711586 100644
--- a/test/test-compcov.c
+++ b/test/test-compcov.c
@@ -22,7 +22,9 @@ int main(int argc, char** argv) {
     strcat(buf, input);
     printf("This will only crash with libdislocator: %s\n", buf);
     return 0;
-  } else
+  } else if (*(unsigned int*)input == 0xabadcafe)
+    printf("GG you eat cmp tokens for breakfast!\n");
+  else
     printf("I do not know your string\n");
 
   return 0;