mirror of
https://github.com/llvm-mirror/libcxx.git
synced 2025-10-21 23:30:38 +08:00

Summary: Filesystem doesn't work on Windows, so we need a mechanism to turn it off for the time being. Reviewers: ldionne, serge-sans-paille, EricWF Reviewed By: EricWF Subscribers: mstorsjo, mgorny, christof, jdoerfert, libcxx-commits Differential Revision: https://reviews.llvm.org/D59619 git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@356633 91177308-0d34-0410-b5e6-96231b3b80d8
7 lines
258 B
INI
7 lines
258 B
INI
# Disable all of the filesystem tests if the dylib under test doesn't support them.
|
|
if 'dylib-has-no-filesystem' in config.available_features:
|
|
config.unsupported = True
|
|
if 'c++filesystem-disabled' in config.available_features:
|
|
config.unsupported = True
|
|
|