about summary refs log tree commit diff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test-compcov.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test-compcov.c b/test/test-compcov.c
index 4959c39c..ae63ca45 100644
--- a/test/test-compcov.c
+++ b/test/test-compcov.c
@@ -29,6 +29,8 @@ int main(int argc, char **argv) {
     printf("your string was APRI\n");
   else if (strcasecmp(input, "Kiwi") == 0)
     printf("your string was Kiwi\n");
+  else if (strstr(input, "tsala") == 0)
+    printf("your string is a fruit salad\n");
   else if (strncasecmp(input, "avocado", 9) == 0)
     printf("your string was avocado\n");
   else if (strncasecmp(input, "Grapes", argc > 2 ? atoi(argv[2]) : 3) == 0)