Update Notifier fixture to Block

このコミットが含まれているのは:
Brandon Potter
2024-08-13 12:01:24 -07:00
コミット 5b42cff96c
4個のファイルの変更43行の追加30行の削除
+14 -14
ファイルの表示
@@ -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);
}