README.TXT 741 B

12345678910111213141516
  1. Test Naming and Directory Structure
  2. ===================================
  3. The directory structure for the unique_ptr class templates differs from the
  4. normal test directory naming conventions (e.g. matching the stable name in the standard).
  5. Instead of having a [unique.ptr.single] and [unique.ptr.runtime] directory,
  6. each containing their own tests, a single directory, "unique.ptr.class",
  7. contains both sets of tests.
  8. This allows the common behavior of the two unique_ptr specializations to be
  9. tested in the same place without duplication.
  10. Tests specific to [unique.ptr.single] have the suffix ".single.pass.cpp"
  11. and those specific to [unique.ptr.runtime] are named "*.runtime.pass.cpp".
  12. Tests for both specializations are named normally.