FIXTURES_CLEANUP.rst 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. FIXTURES_CLEANUP
  2. ----------------
  3. Specifies a list of fixtures for which the test is to be treated as a cleanup
  4. test. These fixture names are distinct from test case names and are not
  5. required to have any similarity to the names of tests associated with them.
  6. Fixture cleanup tests are ordinary tests with all of the usual test
  7. functionality. Setting the ``FIXTURES_CLEANUP`` property for a test has two
  8. primary effects:
  9. - CTest will ensure the test executes after all other tests which list any of
  10. the fixtures in its :prop_test:`FIXTURES_REQUIRED` property.
  11. - If CTest is asked to run only a subset of tests (e.g. using regular
  12. expressions or the ``--rerun-failed`` option) and the cleanup test is not in
  13. the set of tests to run, it will automatically be added if any tests in the
  14. set require any fixture listed in ``FIXTURES_CLEANUP``.
  15. A cleanup test can have multiple fixtures listed in its ``FIXTURES_CLEANUP``
  16. property. It will execute only once for the whole CTest run, not once for each
  17. fixture. A fixture can also have more than one cleanup test defined. If there
  18. are multiple cleanup tests for a fixture, projects can control their order with
  19. the usual :prop_test:`DEPENDS` test property if necessary.
  20. A cleanup test is allowed to require other fixtures, but not any fixture listed
  21. in its ``FIXTURES_CLEANUP`` property. For example:
  22. .. code-block:: cmake
  23. # Ok: Dependent fixture is different to cleanup
  24. set_tests_properties(cleanupFoo PROPERTIES
  25. FIXTURES_CLEANUP Foo
  26. FIXTURES_REQUIRED Bar
  27. )
  28. # Error: cannot require same fixture as cleanup
  29. set_tests_properties(cleanupFoo PROPERTIES
  30. FIXTURES_CLEANUP Foo
  31. FIXTURES_REQUIRED Foo
  32. )
  33. Cleanup tests will execute even if setup or regular tests for that fixture fail
  34. or are skipped.
  35. See :prop_test:`FIXTURES_REQUIRED` for a more complete discussion of how to use
  36. test fixtures.