source: XIOS/dev/dev_trunk_omp/GENERIC_TESTCASE/test_function/run_sub_test.sh @ 1734

Last change on this file since 1734 was 1734, checked in by yushan, 5 years ago

GENERIC_TESTCASE : check all .nc files by default. Generate Cmake files from python scripts (user_config.py, setup.py). Add scripts for copy to/from compressed reference stored in /gpfswork/rech/psl/rpsl954 (Jean-Zay and Irene).

  • Property svn:executable set to *
File size: 1.4 KB
Line 
1#!/bin/bash
2
3
4
5cp ../context_grid_dynamico.xml ./
6cp ../dynamico_grid.nc ./
7
8cp ../config.py sub_config.py
9cp ../check.py sub_check.py
10
11cp ../default_param.py default_param.py
12
13
14# Black        0;30     Dark Gray     1;30
15# Red          0;31     Light Red     1;31
16# Green        0;32     Light Green   1;32
17# Brown/Orange 0;33     Yellow        1;33
18# Blue         0;34     Light Blue    1;34
19# Purple       0;35     Light Purple  1;35
20# Cyan         0;36     Light Cyan    1;36
21# Light Gray   0;37     White         1;37
22
23
24
25nb_proc=$(python sub_config.py 2>&1) 
26
27machine_name=jeanzay
28
29# echo $nb_proc
30if [[ ($machine_name == irene) ]]
31then
32    echo "Testing on Irene"
33    ccc_mprun -n $nb_proc ../../build_prod/bin/generic_testcase.exe
34elif [[($machine_name == ada)]]
35then
36    echo "Testing on ADA"
37    mpirun -np $nb_proc ../../build_prod/bin/generic_testcase.exe
38elif [[($machine_name == jeanzay)]]
39then
40    echo "Testing on Jean-Zay" 
41    srun -n $nb_proc --mpi=pmi2 ../../build_prod/bin/generic_testcase.exe
42    if [ $? -ne 0 ]
43        then
44            echo "execution failed"
45            rm -f iodef.xml
46            rm -f user_param.py
47            rm -f default_param.py
48            rm -f sub_config.py
49            rm -f sub_check.py
50            exit 1234
51    fi
52else
53    echo "other machine"
54    exit 1234
55fi
56
57python sub_check.py
58
59rm -f iodef.xml
60rm -f user_param.py
61rm -f default_param.py
62rm -f sub_config.py
63rm -f sub_check.py
Note: See TracBrowser for help on using the repository browser.