
First I removed all of the uses of _LIBCPP_STD_VER and added LIT UNSUPPORTED tags to prevent the tests from being run in older standard dialects. Second I increased the time tolerances used in some tests when testing with Thread Sanitizer because thread sanitizer make these tests take longer. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@245793 91177308-0d34-0410-b5e6-96231b3b80d8
34 lines
917 B
C++
34 lines
917 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
// Source Licenses. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// UNSUPPORTED: libcpp-has-no-threads
|
|
// UNSUPPORTED: c++98, c++03, c++11
|
|
|
|
// <shared_mutex>
|
|
|
|
// template <class Mutex> class shared_lock;
|
|
|
|
// mutex_type *mutex() const noexcept;
|
|
|
|
#include <shared_mutex>
|
|
#include <cassert>
|
|
|
|
std::shared_timed_mutex m;
|
|
|
|
int main()
|
|
{
|
|
std::shared_lock<std::shared_timed_mutex> lk0;
|
|
assert(lk0.mutex() == nullptr);
|
|
std::shared_lock<std::shared_timed_mutex> lk1(m);
|
|
assert(lk1.mutex() == &m);
|
|
lk1.unlock();
|
|
assert(lk1.mutex() == &m);
|
|
static_assert(noexcept(lk0.mutex()), "mutex() must be noexcept");
|
|
}
|