Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SNOW-918603: temporarily comment out hang test case on Jenkins Linux #605

Merged
1 commit merged into from
Nov 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions tests/test_unit_cred_renew.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -453,6 +453,14 @@ static int gr_setup(void **unused)
}

int main(void) {
// temporarily comment out test case could hang on Linux Jenkins run
// sdk issue 658, 340 to follow up
char *genv = getenv("GITHUB_ACTIONS");
if ((!genv) || (strlen(genv) == 0)) {
#ifdef __linux__
return 0;
#endif
}
const struct CMUnitTest tests[] = {
cmocka_unit_test(test_parse_exception),
cmocka_unit_test(test_token_renew_small_files),
Expand Down
9 changes: 9 additions & 0 deletions tests/test_unit_put_fast_fail.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,15 @@ static int gr_setup(void **unused)
}

int main(void) {
// temporarily comment out test case could hang on Linux Jenkins run
// sdk issue 658, 340 to follow up
char *genv = getenv("GITHUB_ACTIONS");
if ((!genv) || (strlen(genv) == 0)) {
#ifdef __linux__
return 0;
#endif
}

void **unused;
const struct CMUnitTest tests[] = {
cmocka_unit_test(test_put_fast_fail_sequential),
Expand Down
Loading