mirror of
https://github.com/llvm-mirror/libcxx.git
synced 2025-10-22 16:37:40 +08:00

Summary: Also add the corresponding XFAILs to tests that require filesystem. The approach taken to mark <filesystem> as unavailable in this patch is to mark all the header as unavailable using #pragma clang attribute. Marking each declaration using the attribute is more intrusive and does not provide a lot of value right now because pretty much everything in <filesystem> requires dylib support, often transitively. This is an alternative to https://reviews.llvm.org/D59093. A similar (but partial) patch was already applied in r356558. Reviewers: mclow.lists, EricWF, serge-sans-paille Subscribers: christof, jkorous, dexonsmith, libcxx-commits Differential Revision: https://reviews.llvm.org/D59224 git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@356616 91177308-0d34-0410-b5e6-96231b3b80d8
29 lines
770 B
C++
29 lines
770 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// 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: c++98, c++03, c++11, c++14, c++17
|
|
// XFAIL: dylib-has-no-filesystem
|
|
|
|
// <chrono>
|
|
|
|
// file_clock
|
|
|
|
// rep should be signed
|
|
|
|
#include <chrono>
|
|
#include <cassert>
|
|
|
|
int main(int, char**)
|
|
{
|
|
static_assert(std::is_signed<std::chrono::file_clock::rep>::value, "");
|
|
assert(std::chrono::file_clock::duration::min() <
|
|
std::chrono::file_clock::duration::zero());
|
|
|
|
return 0;
|
|
}
|