Skip to content

Commit

Permalink
#1930: perf: fix wrong names
Browse files Browse the repository at this point in the history
  • Loading branch information
lifflander authored and stmcgovern committed Nov 17, 2022
1 parent 6c6bfa1 commit 1cfcbcf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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 @@ -104,7 +104,7 @@ struct NodeObj {
int i = 0;
};

VT_PERF_TEST(MyTest, test_ping_pong) {
VT_PERF_TEST(MyTest, test_make_runnable_micro) {
auto grp_proxy = vt::theObjGroup()->makeCollective<NodeObj>(
"test_reduce", this
);
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 @@ -108,7 +108,7 @@ void handlerFinished(MyMsg* msg) {
}
}

VT_PERF_TEST(MyTest, test_ping_pong) {
VT_PERF_TEST(MyTest, test_ping_pong_am) {
auto grp_proxy = vt::theObjGroup()->makeCollective<NodeObj>(
"test_reduce", this
);
Expand Down
2 changes: 1 addition & 1 deletion tests/perf/reduce.cc
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ struct NodeObj {
int i = 0;
};

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

0 comments on commit 1cfcbcf

Please sign in to comment.