From: Matthias Maier Date: Tue, 19 Nov 2013 21:14:03 +0000 (+0000) Subject: Documentation: Add a small section about how to create a new category X-Git-Tag: v8.1.0~241 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=825150c467c897fa02807e2bb184522b20efb095;p=dealii.git 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 --- 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