hanchenye-llvm-project/libcxx/test/support
Ed Schouten 97fdea618e Add option to disable access to the global filesystem namespace.
Systems like FreeBSD's Capsicum and Nuxi CloudABI apply the concept of
capability-based security on the way processes can interact with the
filesystem API. It is no longer possible to interact with the VFS
through calls like open(), unlink(), rename(), etc. Instead, processes
are only allowed to interact with files and directories to which they
have been granted access. The *at() functions can be used for this
purpose.

This change adds a new config switch called
_LIBCPP_HAS_NO_GLOBAL_FILESYSTEM_NAMESPACE. If set, all functionality
that requires the global filesystem namespace will be disabled. More
concretely:

- fstream's open() function will be removed.
- cstdio will no longer pull in fopen(), rename(), etc.
- The test suite's get_temp_file_name() will be removed. This will cause
  all tests that use the global filesystem namespace to break, but will
  at least make all the other tests run (as get_temp_file_name will not
  build anyway).

It is important to mention that this change will make fstream rather
useless on those systems for now. Still, I'd rather not have fstream
disabled entirely, as it is of course possible to come up with an
extension for fstream that would allow access to local filesystem
namespaces (e.g., by adding an openat() member function).

Differential revision:	http://reviews.llvm.org/D8194
Reviewed by:		jroelofs (thanks!)

llvm-svn: 232049
2015-03-12 15:44:39 +00:00
..
Counter.h Fix PR22366. When move-constructing an associative container and explicitly passing an allocator that compares different, we were not calling the destructor of the elements in the moved-from container. 2015-01-28 19:54:25 +00:00
DefaultOnly.h
MoveOnly.h We had two identical files named 'MoveOnly.h' in the test suite. Move one to support/, remove the other, and update all the tests that included them. No functionality change. 2015-01-28 21:22:53 +00:00
allocators.h
asan_testing.h
cmpxchg_loop.h
constexpr_char_traits.hpp Add pragma system header to some experimental headers and add newlines to files. 2015-02-10 17:32:49 +00:00
count_new.hpp Use generic feature name for sanitizers that replace new and delete 2015-03-10 20:46:04 +00:00
counting_predicates.hpp
hexfloat.h
min_allocator.h
nasty_containers.hpp
nasty_macros.hpp Remove use of _[A-Z] identifiers and poison them to detect usage 2015-02-05 23:01:40 +00:00
nothing_to_do.pass.cpp
platform_support.h Add option to disable access to the global filesystem namespace. 2015-03-12 15:44:39 +00:00
private_constructor.hpp
test_allocator.h
test_iterators.h
tracked_value.h Add TrackedValue to test/support. Thanks to Louis Dionne 2015-03-09 18:02:16 +00:00
user_defined_integral.hpp [libcxx] Properly convert the count arguments to the *_n algorithms before use. 2015-02-10 16:46:42 +00:00