Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't test inplace_merge with libc++ #3078

Merged
merged 3 commits into from Dec 25, 2017
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions tests/unit/parallel/algorithms/inplace_merge.cpp
Expand Up @@ -47,9 +47,11 @@ int hpx_main(boost::program_options::variables_map& vm)
std::cout << "using seed: " << seed << std::endl;
std::srand(seed);

#if !defined(_LIBCPP_VERSION) || (_LIBCPP_VERSION >= 6)
inplace_merge_test();
inplace_merge_exception_test();
inplace_merge_bad_alloc_test();
#endif

std::cout << "Test Finish!" << std::endl;

Expand Down