ci: disable nonworking tests on windows

This commit is contained in:
xoviat 2023-08-20 20:40:02 -05:00
parent a1e877a01f
commit dda00cc443
2 changed files with 4 additions and 0 deletions

View File

@ -11,6 +11,8 @@ void test_redirect()
}
int main() {
#ifndef __USING_WINDOWS__
test_redirect();
#endif
return 0;
}

View File

@ -44,8 +44,10 @@ void test_ret_code_check_output()
int main() {
// test_ret_code();
#ifndef __USING_WINDOWS__
test_ret_code_comm();
test_ret_code_check_output();
#endif
return 0;
}