Skip to content

Commit

Permalink
#1930: update test names in strings
Browse files Browse the repository at this point in the history
  • Loading branch information
stmcgovern authored and cz4rs committed Dec 28, 2022
1 parent f54eeb1 commit 177cd2c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/perf/make_runnable_micro.cc
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ struct NodeObj {

VT_PERF_TEST(MyTest, test_make_runnable_micro) {
auto grp_proxy = vt::theObjGroup()->makeCollective<NodeObj>(
"test_reduce", this
"test_make_runnable_micro", this
);

grp_proxy[my_node_].invoke<decltype(&NodeObj::initialize), &NodeObj::initialize>();
Expand Down
4 changes: 2 additions & 2 deletions tests/perf/objgroup_local_send.cc
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ struct NodeObj {
int i = 0;
};

VT_PERF_TEST(MyTest, test_collection_local_send) {
VT_PERF_TEST(MyTest, test_objgroup_local_send) {
auto grp_proxy = vt::theObjGroup()->makeCollective<NodeObj>(
"test_collection_local_send", this
"test_objgroup_local_send", this
);

grp_proxy[my_node_].invoke<decltype(&NodeObj::initialize), &NodeObj::initialize>();
Expand Down
2 changes: 1 addition & 1 deletion tests/perf/ping_pong_am.cc
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ void handlerFinished(MyMsg* msg) {

VT_PERF_TEST(MyTest, test_ping_pong_am) {
auto grp_proxy = vt::theObjGroup()->makeCollective<NodeObj>(
"test_reduce", this
"test_ping_pong_am", this
);

if (theContext()->getNode() == 0) {
Expand Down

0 comments on commit 177cd2c

Please sign in to comment.