Skip to content

Commit

Permalink
Fix bslstl_function_invokerutil nightly test failure (#4841)
Browse files Browse the repository at this point in the history
  • Loading branch information
nosybug authored and GitHub Enterprise committed Jul 24, 2024
1 parent fe4d1a4 commit 78efe41
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions groups/bsl/bslstl/bslstl_function_invokerutil.t.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1760,11 +1760,11 @@ int main(int argc, char *argv[])
TEST.run<rrcD ( ), rrB ( ) >(L_, YES);
TEST.run<rrcD ( ), rrcB ( ) >(L_, YES);

TEST.run< DA( ), BA ( ) >(L_, CPP_20);
TEST.run< DA( ), rBA ( ) >(L_, CPP_20);
TEST.run< DA( ), rcBA ( ) >(L_, CPP_20);
TEST.run< DA( ), rrBA ( ) >(L_, CPP_20);
TEST.run< DA( ), rrcBA ( ) >(L_, CPP_20);
TEST.run< DA( ), BA ( ) >(L_, CPP_20 && !CLANG);
TEST.run< DA( ), rBA ( ) >(L_, CPP_20 && !CLANG);
TEST.run< DA( ), rcBA ( ) >(L_, CPP_20 && !CLANG);
TEST.run< DA( ), rrBA ( ) >(L_, CPP_20 && !CLANG);
TEST.run< DA( ), rrcBA ( ) >(L_, CPP_20 && !CLANG);
TEST.run< rDA( ), BA ( ) >(L_, MS_REF_BUG);
TEST.run< rDA( ), rBA ( ) >(L_, YES);
TEST.run< rDA( ), rcBA ( ) >(L_, NO );
Expand Down

0 comments on commit 78efe41

Please sign in to comment.