source: XIOS/dev/dev_trunk_omp/GENERIC_TESTCASE/test_grid_algo/run_sub_test.sh @ 1721

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

Generic_testcase : add folder xios_output in config reference to store XIOS output files

  • Property svn:executable set to *
File size: 1.3 KB
Line 
1#!/bin/bash
2
3rm -f sub_config1.py
4rm -f sub_config2.py
5rm -f sub_check.py
6rm -f default_param.py
7
8cp -n ../user_config.py sub_config1.py
9cp -n ../config.py sub_config2.py
10cp -n ../check.py sub_check.py
11cp -n ../default_param.py default_param.py
12
13# Black        0;30     Dark Gray     1;30
14# Red          0;31     Light Red     1;31
15# Green        0;32     Light Green   1;32
16# Brown/Orange 0;33     Yellow        1;33
17# Blue         0;34     Light Blue    1;34
18# Purple       0;35     Light Purple  1;35
19# Cyan         0;36     Light Cyan    1;36
20# Light Gray   0;37     White         1;37
21
22
23Color='\033[0;36m'
24NC='\033[0m' # No Color
25
26touch report.txt
27> report.txt
28echo " " >> report.txt
29echo " " >> report.txt
30echo -e "testing ${Color}grid${NC} algorithms..." >> report.txt
31echo " " >> report.txt
32
33nb_config=$(python sub_config1.py 2>&1)                                                                                                                   
34
35
36counter=0
37while [ $counter -lt $nb_config ]
38do
39
40rm -f user_param.py
41
42cp user_param.py.$counter user_param.py
43
44((counter++))
45
46nb_proc=$(python sub_config2.py 2>&1) 
47
48if [$machine_name == irene]
49then
50    ccc_mprun -n $nb_proc ../../build_prod/bin/generic_testcase.exe
51else
52mpirun -np $nb_proc ../../build_prod/bin/generic_testcase.exe
53fi
54
55python sub_check.py
56
57rm -f iodef.xml
58mv iodef.xml.bkp iodef.xml
59
60done
Note: See TracBrowser for help on using the repository browser.