aboutsummaryrefslogtreecommitdiff
path: root/test/wrong_command.c
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2017-01-05 09:37:00 -0800
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2017-01-12 15:19:04 -0800
commit9f96db71252fc66b72c433e2ca0d49e031c6a5fd (patch)
tree494132dae14dba3de18a9013f2299cfc37cceda5 /test/wrong_command.c
parent3006686b536942f6f96675e3d12b793087e78e6a (diff)
Added experimental support for building with Meson+Ninja
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;
+}