Eric Fiselier 20f2ecc862 Use C++11 implementation of unique_ptr in C++03. 6 жил өмнө
..
unique.ptr.class 20f2ecc862 Use C++11 implementation of unique_ptr in C++03. 6 жил өмнө
unique.ptr.create b6e011b18b Add include for 'test_macros.h' to all the tests that were missing them. Thanks to Zoe for the (big, but simple) patch. NFC intended. 6 жил өмнө
unique.ptr.dltr b6e011b18b Add include for 'test_macros.h' to all the tests that were missing them. Thanks to Zoe for the (big, but simple) patch. NFC intended. 6 жил өмнө
unique.ptr.special b6e011b18b Add include for 'test_macros.h' to all the tests that were missing them. Thanks to Zoe for the (big, but simple) patch. NFC intended. 6 жил өмнө
README.TXT 81f58e5052 Rewrite and cleanup unique_ptr tests. 8 жил өмнө
nothing_to_do.pass.cpp e15dd4e32e Support tests in freestanding 6 жил өмнө

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.