16881f68fSopenharmony_ci#include <stdio.h> 26881f68fSopenharmony_ci 36881f68fSopenharmony_ciint main(void) { 46881f68fSopenharmony_ci#ifdef MESON_IS_SUBPROJECT 56881f68fSopenharmony_ci fprintf(stderr, "libfuse tests were skipped because it's a meson subproject.\n" 66881f68fSopenharmony_ci "If you wish to run them try:\n" 76881f68fSopenharmony_ci "'cd <srcdir>/subprojects/libfuse && meson . build && cd build && python3 -m pytest test/' instead"); 86881f68fSopenharmony_ci return 77; /* report as a skipped test */ 96881f68fSopenharmony_ci#else 106881f68fSopenharmony_ci fprintf(stderr, "\x1B[31m\e[1m" 116881f68fSopenharmony_ci "This is not the command you are looking for.\n" 126881f68fSopenharmony_ci "You probably want to run 'python3 -m pytest test/' instead" 136881f68fSopenharmony_ci "\e[0m\n"); 146881f68fSopenharmony_ci return 1; 156881f68fSopenharmony_ci#endif 166881f68fSopenharmony_ci} 17