Fix PR23041. Use lock_shared() as opposed to lock() in shared_lock test.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@233367 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Fiselier 2015-03-27 07:07:51 +00:00
parent 28cf403441
commit 91220d1043

View File

@ -22,7 +22,7 @@ int main()
{
#if _LIBCPP_STD_VER > 11
std::shared_timed_mutex m;
m.lock();
m.lock_shared();
std::shared_lock<std::shared_timed_mutex> lk(m, std::adopt_lock);
assert(lk.mutex() == &m);
assert(lk.owns_lock() == true);