source: XIOS/dev/dev_trunk_omp/GENERIC_TESTCASE/test_axis_algo/run_sub_test.sh @ 1723

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

Generic_testcase : html report added for viewing on jenkins

  • Property svn:executable set to *
File size: 1.5 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
35touch report.html
36> report.html
37echo "<p> </p> " >> report.html
38echo "<p> </p> " >> report.html
39echo "<p>testing  <font color="blue">axis</font> algorithms...</p>" >> report.html
40echo "<p> </p> " >> report.html
41
42nb_config=$(python sub_config1.py 2>&1)                                                                                                                   
43
44
45counter=0
46while [ $counter -lt $nb_config ]
47do
48
49rm -f user_param.py
50
51cp user_param.py.$counter user_param.py
52
53((counter++))
54
55nb_proc=$(python sub_config2.py 2>&1) 
56
57if [$machine_name == irene]
58then
59    ccc_mprun -n $nb_proc ../../build_prod/bin/generic_testcase.exe
60else
61    mpirun -np $nb_proc ../../build_prod/bin/generic_testcase.exe
62fi
63
64python sub_check.py
65
66rm -f iodef.xml
67mv iodef.xml.bkp iodef.xml
68
69done
Note: See TracBrowser for help on using the repository browser.