#!/bin/bash cp ../context_grid_dynamico.xml ./ cp ../dynamico_grid.nc ./ cp ../config.py sub_config.py cp ../check.py sub_check.py # cp ../default_param.py default_param.py # Black 0;30 Dark Gray 1;30 # Red 0;31 Light Red 1;31 # Green 0;32 Light Green 1;32 # Brown/Orange 0;33 Yellow 1;33 # Blue 0;34 Light Blue 1;34 # Purple 0;35 Light Purple 1;35 # Cyan 0;36 Light Cyan 1;36 # Light Gray 0;37 White 1;37 { nb_proc=$(python sub_config.py 2>&1 1>&3-) ;} 3>&1 # nb_proc=$(python sub_config.py 2>&1) # echo $nb_proc if [[ ($machine_name == irene) ]] then echo "Testing on Irene" echo "build_dir="$build_dir ccc_mprun -n $nb_proc $xios_dir/$build_dir/bin/generic_testcase.exe elif [[ ($machine_name == ada) ]] then echo "Testing on ADA" mpirun -np $nb_proc $xios_dir/$build_dir/bin/generic_testcase.exe elif [[ ($machine_name == jeanzay) ]] then echo "Testing on Jean-Zay" echo "build_dir="$build_dir srun -n $nb_proc --mpi=pmi2 $xios_dir/$build_dir/bin/generic_testcase.exe if [ $? -ne 0 ] then echo "execution failed" rm -f iodef.xml rm -f user_param.py rm -f default_param.py rm -f sub_config.py rm -f sub_check.py exit 1234 fi else echo "other machine" exit 1234 fi { check_stderr=$(python sub_check.py 2>&1 1>&3-) ;} 3>&1 #captures stderr, letting stdout through # check_stderr=$(python sub_check.py 2>&1 >/dev/null) if [[ "$check_stderr" -ne 0 ]] then echo "check.py failed" rm -f iodef.xml rm -f user_param.py rm -f default_param.py rm -f sub_config.py rm -f sub_check.py exit 1234 # else # echo "check.py OK" fi rm -f iodef.xml rm -f user_param.py rm -f default_param.py rm -f sub_config.py rm -f sub_check.py