Skip to content

Commit

Permalink
test: update remove selected update tests from BUSYBOX systems (temp)
Browse files Browse the repository at this point in the history
  • Loading branch information
flhofer committed Mar 10, 2024
1 parent 4022f36 commit d92d86a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/orchestrator/updateTest.c
Original file line number Diff line number Diff line change
Expand Up @@ -289,16 +289,20 @@ void orchestrator_update (Suite * s) {
TCase *tc1 = tcase_create("update_thread");
tcase_add_checked_fixture(tc1, orchestrator_update_setup, orchestrator_update_teardown);
tcase_add_exit_test(tc1, orchestrator_update_stop, EXIT_SUCCESS);
#ifndef BUSYBOX // FIXME: these tests go in timeout on busybox - see ps command differences
tcase_add_test(tc1, orchestrator_update_findprocs);
tcase_add_test(tc1, orchestrator_update_findprocsall);
#endif

suite_add_tcase(s, tc1);

#ifndef BUSYBOX // FIXME: these tests go in timeout on busybox - see ps command differences
TCase *tc2 = tcase_create("update_thread_resources");
tcase_add_checked_fixture(tc2, orchestrator_update_setup, orchestrator_update_teardown);
tcase_add_test(tc2, orchestrator_update_rscs);

suite_add_tcase(s, tc2);
#endif

return;
}

0 comments on commit d92d86a

Please sign in to comment.