diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2017-06-03 15:21:10 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2017-06-03 15:21:10 +0000 |
commit | 7c5c4ef25000522f341d2edb21344a2fe2b881ad (patch) | |
tree | 2c5bc68012e6f7b4339698779427ad5ae81c0360 /test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.completion/done.pass.cpp | |
parent | edb11085302f80f38c9d976f003aa1c9002c7abb (diff) | |
download | src-7c5c4ef25000522f341d2edb21344a2fe2b881ad.tar.gz src-7c5c4ef25000522f341d2edb21344a2fe2b881ad.zip |
Vendor import of libc++ trunk r304659:vendor/libc++/libc++-trunk-r304659
Notes
Notes:
svn path=/vendor/libc++/dist/; revision=319529
svn path=/vendor/libc++/libc++-trunk-r304659/; revision=319530; tag=vendor/libc++/libc++-trunk-r304659
Diffstat (limited to 'test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.completion/done.pass.cpp')
-rw-r--r-- | test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.completion/done.pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.completion/done.pass.cpp b/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.completion/done.pass.cpp index 74a9e7bda04e..240d9324507c 100644 --- a/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.completion/done.pass.cpp +++ b/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.completion/done.pass.cpp @@ -33,7 +33,7 @@ void do_test(coro::coroutine_handle<Promise> const& H) { // FIXME Add a runtime test { ASSERT_SAME_TYPE(decltype(H.done()), bool); - ASSERT_NOT_NOEXCEPT(H.done()); + LIBCPP_ASSERT_NOT_NOEXCEPT(H.done()); } } |