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 | | |
| 48 | |
| 49 | |
| 50 | |
| 51 | = The Testserver = |
| 52 | |
| 53 | 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. |
| 54 | {{{ |
| 55 | #!sh |
| 56 | #!/bin/bash |
| 57 | |
| 58 | palmtest --no-color --test-id "${BUILD_NUMBER}" |
| 59 | |
| 60 | result=$? |
| 61 | |
| 62 | if [[ ${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 |
| 69 | else |
| 70 | exit 0 |
| 71 | fi |
| 72 | |
| 73 | }}} |