mirror of
https://github.com/intel/llvm.git
synced 2026-01-18 16:50:51 +08:00
[libc++] add test for latch ctor
Currently, there are no tests to confirm without a doubt the constructor of latch is really constexpr and explicit. I think this would be an addition that it would not harm to have. In another revision, I was asked to add tests for an almost identical case which made me consider adding this test for the latch class too. Reviewed By: #libc, philnik Spies: philnik, libcxx-commits, kristof.beyls Differential Revision: https://reviews.llvm.org/D154957
This commit is contained in:
committed by
Nikolas Klauser
parent
c77af00eb9
commit
dd2cfabddb
35
libcxx/test/std/thread/thread.latch/ctor.pass.cpp
Normal file
35
libcxx/test/std/thread/thread.latch/ctor.pass.cpp
Normal file
@@ -0,0 +1,35 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
||||
// See https://llvm.org/LICENSE.txt for license information.
|
||||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// UNSUPPORTED: no-threads
|
||||
// UNSUPPORTED: c++03, c++11
|
||||
|
||||
// <latch>
|
||||
|
||||
// inline constexpr explicit latch(ptrdiff_t __expected);
|
||||
|
||||
// Make sure that the ctor of latch is constexpr and explicit.
|
||||
|
||||
#include <latch>
|
||||
|
||||
#include "test_convertible.h"
|
||||
|
||||
static_assert(!test_convertible<std::latch, std::ptrdiff_t>(), "This constructor must be explicit");
|
||||
|
||||
constexpr bool test() {
|
||||
std::latch l(5);
|
||||
(void)l;
|
||||
return true;
|
||||
}
|
||||
|
||||
int main(int, char**) {
|
||||
test();
|
||||
static_assert(test(), "");
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user