source: XIOS/dev/dev_trunk_omp/GENERIC_TESTCASE/run_sub_test.sh @ 1743

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

GENERIC_TESTCASE: add build_dir for job scripts

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