Update Notifier fixture to Block

This commit is contained in:
Brandon Potter
2024-08-13 12:01:24 -07:00
parent 51c33b2a66
commit 5b42cff96c
4 changed files with 43 additions and 30 deletions
+14 -14
View File
@@ -28,30 +28,30 @@ using namespace rocshmem;
******************************* Fixture Tests *******************************
*****************************************************************************/
TEST_F(NotifierTestFixture, run_all_threads_once_1_1) {
run_all_threads_once(1, 1);
TEST_F(NotifierBlockTestFixture, run_all_threads_once_1_1) {
run_all_threads_once_block(1, 1);
}
TEST_F(NotifierTestFixture, run_all_threads_once_2_1) {
run_all_threads_once(2, 1);
TEST_F(NotifierBlockTestFixture, run_all_threads_once_2_1) {
run_all_threads_once_block(2, 1);
}
TEST_F(NotifierTestFixture, run_all_threads_once_64_1) {
run_all_threads_once(64, 1);
TEST_F(NotifierBlockTestFixture, run_all_threads_once_64_1) {
run_all_threads_once_block(64, 1);
}
TEST_F(NotifierTestFixture, run_all_threads_once_128_1) {
run_all_threads_once(128, 1);
TEST_F(NotifierBlockTestFixture, run_all_threads_once_128_1) {
run_all_threads_once_block(128, 1);
}
TEST_F(NotifierTestFixture, run_all_threads_once_256_1) {
run_all_threads_once(256, 1);
TEST_F(NotifierBlockTestFixture, run_all_threads_once_256_1) {
run_all_threads_once_block(256, 1);
}
TEST_F(NotifierTestFixture, run_all_threads_once_512_1) {
run_all_threads_once(512, 1);
TEST_F(NotifierBlockTestFixture, run_all_threads_once_512_1) {
run_all_threads_once_block(512, 1);
}
TEST_F(NotifierTestFixture, run_all_threads_once_1024_1) {
run_all_threads_once(1024, 1);
TEST_F(NotifierBlockTestFixture, run_all_threads_once_1024_1) {
run_all_threads_once_block(1024, 1);
}