Files
third_party_libfuse/test/wrong_command.c
T
Nikolaus Rath e372d610ba Remove 'tests' target in favor of calling py.test directly.
Together with the previous commit, this fixes #156.
2017-04-10 17:08:58 -07:00

10 lines
211 B
C

#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 'python3 -m pytest test/' instead"
"\e[0m\n");
return 1;
}