skip build test-arg-parser on windows

This commit is contained in:
Xuan Son Nguyen 2024-09-05 20:20:46 +02:00
parent f5e6a80c3f
commit 88e3a4f3bc

View file

@ -8,6 +8,9 @@
#include "common.h" #include "common.h"
int main(void) { int main(void) {
#ifdef _WIN32
printf("test-arg-parser: skip on windows build\n");
#else
gpt_params params; gpt_params params;
printf("test-arg-parser: make sure there is no duplicated arguments in any examples\n\n"); printf("test-arg-parser: make sure there is no duplicated arguments in any examples\n\n");
@ -88,4 +91,5 @@ int main(void) {
printf("test-arg-parser: all tests OK\n\n"); printf("test-arg-parser: all tests OK\n\n");
#endif // __MINGW32__
} }