You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
libcxx/test/std/utilities/smartptr/unique.ptr
Billy Robert O'Neal III 7e250fcdc1 Change (void) casts to TEST_IGNORE_NODISCARD, as requested by Eric. Reviewed as https://reviews.llvm.org/D40065
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@318804 91177308-0d34-0410-b5e6-96231b3b80d8
7 years ago
..
unique.ptr.class Change (void) casts to TEST_IGNORE_NODISCARD, as requested by Eric. Reviewed as https://reviews.llvm.org/D40065 7 years ago
unique.ptr.create Rewrite and cleanup unique_ptr tests. 8 years ago
unique.ptr.dltr Rewrite and cleanup unique_ptr tests. 8 years ago
unique.ptr.special Rewrite and cleanup unique_ptr tests. 8 years ago
README.TXT Rewrite and cleanup unique_ptr tests. 8 years ago
nothing_to_do.pass.cpp Rewrite and cleanup unique_ptr tests. 8 years ago

README.TXT

Test Naming and Directory Structure
===================================

The directory structure for the unique_ptr class templates differs from the
normal test directory naming conventions (e.g. matching the stable name in the standard).

Instead of having a [unique.ptr.single] and [unique.ptr.runtime] directory,
each containing their own tests, a single directory, "unique.ptr.class",
contains both sets of tests.

This allows the common behavior of the two unique_ptr specializations to be
tested in the same place without duplication.

Tests specific to [unique.ptr.single] have the suffix ".single.pass.cpp"
and those specific to [unique.ptr.runtime] are named "*.runtime.pass.cpp".
Tests for both specializations are named normally.