aboutsummaryrefslogtreecommitdiff
path: root/test/wrong_command.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/wrong_command.c')
-rw-r--r--test/wrong_command.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/wrong_command.c b/test/wrong_command.c
new file mode 100644
index 0000000..ef835b3
--- /dev/null
+++ b/test/wrong_command.c
@@ -0,0 +1,10 @@
+#include <stdio.h>
+
+int main(void) {
+ fprintf(stderr, "\x1B[31m\e[1m"
+ "This is not the command you are looking for.\n"
+ "You probably want to run 'ninja tests' instead "
+ "(note the 's' at the end).\n"
+ "\e[0m");
+ return 1;
+}