Skip to content

Commit 6a56087

Browse files
committed
Separate into std_async test
1 parent e44db4c commit 6a56087

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/show_versions.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ TEST_CASE("show_versions - print_defines")
3333
std::cout << "__GLIBCXX__: " << __GLIBCXX__ << std::endl;
3434
#endif
3535

36+
}
37+
38+
TEST_CASE("show_versions - std_async")
39+
{
3640
auto handle = std::async(std::launch::async, []() { return 1; });
3741
auto result = handle.get();
3842
}

0 commit comments

Comments
 (0)