source: XIOS/dev/dev_trunk_omp/GENERIC_TESTCASE/test_axis_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
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
25Color='\033[0;36m'
26NC='\033[0m' # No Color
27
28touch report.txt
29> report.txt
30echo " " >> report.txt
31echo " " >> report.txt
32echo -e "testing ${Color}axis${NC} algorithms..." >> report.txt
33echo " " >> report.txt
34
35nb_config=$(python sub_config1.py 2>&1)                                                                                                                   
36
37
38counter=0
39while [ $counter -lt $nb_config ]
40do
41
42rm -f user_param.py
43
44cp user_param.py.$counter user_param.py
45
46((counter++))
47
48nb_proc=$(python sub_config2.py 2>&1) 
49
50if [$machine_name == irene]
51then
52    ccc_mprun -n $nb_proc ../../build_prod/bin/generic_testcase.exe
53else
54    mpirun -np $nb_proc ../../build_prod/bin/generic_testcase.exe
55fi
56
57python sub_check.py
58
59rm -f iodef.xml
60mv iodef.xml.bkp iodef.xml
61
62done
Note: See TracBrowser for help on using the repository browser.