Changes between Version 15 and Version 16 of doc/tec/testsuite


Ignore:
Timestamp:
Nov 22, 2018 2:33:04 PM (6 years ago)
Author:
knoop
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • doc/tec/testsuite

    v15 v16  
    55#!sh
    66palmtest --help
    7 }}}
    8 
    9 == The Testserver ==
    10 
    11 The server responsible for testing can be found [https://testserver.palm-model.org/ here]. It is a 32 Core shared memory node running Jenkins on top of Ubuntu Server 16.04. The server runs the following test script based on a plain PALM installation.
    12 {{{
    13 #!sh
    14 #!/bin/bash
    15 
    16 palmtest --no-color --test-id "${BUILD_NUMBER}"
    17 
    18 result=$?
    19 
    20 if [[ ${result} -ne 0 ]]; then
    21    echo ""
    22    echo "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
    23    echo "%%%%%%%%%%%%%%%%%%%%   DUMPING palmtest.log   %%%%%%%%%%%%%%%%%%%%%%%%"
    24    echo "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
    25    cat ${WORKSPACE}/tests/${BUILD_NUMBER}/palmtest.log
    26    exit 1
    27 else
    28    exit 0
    29 fi
    30 
    317}}}
    328
     
    7046||  ||FFTW - only required after OpenACC is part of default code (Siggi)    ||Missing  ||  ||
    7147||  ||KPP_CHEM  ||Missing  ||  ||
     48
     49
     50
     51= The Testserver =
     52
     53The server responsible for testing can be found [https://testserver.palm-model.org/ here]. It is a 32 Core shared memory node running Jenkins on top of Ubuntu Server 16.04. The server runs the following test script based on a plain PALM installation.
     54{{{
     55#!sh
     56#!/bin/bash
     57
     58palmtest --no-color --test-id "${BUILD_NUMBER}"
     59
     60result=$?
     61
     62if [[ ${result} -ne 0 ]]; then
     63   echo ""
     64   echo "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
     65   echo "%%%%%%%%%%%%%%%%%%%%   DUMPING palmtest.log   %%%%%%%%%%%%%%%%%%%%%%%%"
     66   echo "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
     67   cat ${WORKSPACE}/tests/${BUILD_NUMBER}/palmtest.log
     68   exit 1
     69else
     70   exit 0
     71fi
     72
     73}}}