From 825150c467c897fa02807e2bb184522b20efb095 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Tue, 19 Nov 2013 21:14:03 +0000 Subject: [PATCH] Documentation: Add a small section about how to create a new category git-svn-id: https://svn.dealii.org/trunk@31716 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/doc/developers/testsuite.html | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/deal.II/doc/developers/testsuite.html b/deal.II/doc/developers/testsuite.html index c2691aa449..3ad09b31d7 100644 --- a/deal.II/doc/developers/testsuite.html +++ b/deal.II/doc/developers/testsuite.html @@ -65,6 +65,7 @@
  • Tests with binary output
  • Changing condition for success
  • Adding new tests
  • +
  • Adding new categories
  • Submitting test results
  • Build tests
  • @@ -684,6 +685,25 @@ int main () + +

    Adding new categories

    + +

    + If you want to create a new category in the testsuite, create an new + folder under ./tests that is named accordingly and put + a CMakeLists.txt file into it containing +

    +
    +
    +    CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
    +    INCLUDE(${DEAL_II_SOURCE_DIR}/cmake/setup_testsuite.cmake)
    +    PROJECT(testsuite CXX)
    +    INCLUDE(${DEAL_II_TARGET_CONFIG})
    +    DEAL_II_PICKUP_TESTS()
    +    
    + + +

    Submitting test results

    -- 2.39.5