• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <stdio.h>
2 
main(void)3 int main(void) {
4 #ifdef MESON_IS_SUBPROJECT
5 	fprintf(stderr, "libfuse tests were skipped because it's a meson subproject.\n"
6 			"If you wish to run them try:\n"
7 			"'cd <srcdir>/subprojects/libfuse && meson . build && cd build && python3 -m pytest test/' instead");
8 	return 77; /* report as a skipped test */
9 #else
10 	fprintf(stderr, "\x1B[31m\e[1m"
11 		"This is not the command you are looking for.\n"
12 		"You probably want to run 'python3 -m pytest test/' instead"
13 		"\e[0m\n");
14 	return 1;
15 #endif
16 }
17