Skip to content

Commit

Permalink
Completed implementation of EASY BF
Browse files Browse the repository at this point in the history
  • Loading branch information
henricasanova committed Dec 7, 2024
1 parent b30045b commit 4ef0cf5
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ TEST_F(BatchServiceEASY_BFTest, SimpleEASY_BFTest_1)
{"job4", 2, 50, 0, 140}
};

DO_TEST_WITH_FORK_THREE_ARGS(do_EASY_BF_test, 4, spec, true);
DO_TEST_WITH_FORK_THREE_ARGS(do_EASY_BF_test, 4, spec, false);
}


Expand All @@ -250,7 +250,7 @@ TEST_F(BatchServiceEASY_BFTest, SimpleEASY_BFTest_2)
{"job5", 1, 6000, 0, 6000},
};

DO_TEST_WITH_FORK_THREE_ARGS(do_EASY_BF_test, 6, spec, true);
DO_TEST_WITH_FORK_THREE_ARGS(do_EASY_BF_test, 6, spec, false);
}

#ifdef ENABLE_BATSCHED
Expand All @@ -267,7 +267,7 @@ TEST_F(BatchServiceEASY_BFTest, SimpleEASY_BFTest_3)
{"job4", 1, 1080, 1, 660 + 1080},
};

DO_TEST_WITH_FORK_THREE_ARGS(do_EASY_BF_test, 6, spec, true);
DO_TEST_WITH_FORK_THREE_ARGS(do_EASY_BF_test, 6, spec, false);
}

#ifdef ENABLE_BATSCHED
Expand All @@ -290,7 +290,7 @@ TEST_F(BatchServiceEASY_BFTest, SimpleEASY_BFTest_RANDOM)
int expected_ct = -1;
spec.emplace_back(job_name, num_nodes, duration, 0, expected_ct);
}
DO_TEST_WITH_FORK_THREE_ARGS(do_EASY_BF_test, 6, spec, true);
DO_TEST_WITH_FORK_THREE_ARGS(do_EASY_BF_test, 6, spec, false);
}
}

Expand Down

0 comments on commit 4ef0cf5

Please sign in to comment.