source: XIOS/dev/dev_trunk_omp/GENERIC_TESTCASE/run_test.sh @ 1706

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

Generic_testcase : add a bash script for launching tests in different sub-folders (test_function, test_axis_algo). Generate a status report test_report.txt for all tests

  • Property svn:executable set to *
File size: 373 bytes
Line 
1#!/bin/bash
2
3fname=test_report.txt
4touch $fname
5
6> $fname
7
8gname=report.txt
9
10
11cd test_function
12echo "" >> ../$fname
13echo "testing reduce functions..." >> ../$fname
14echo "" >> ../$fname
15./run.sh
16cat $gname >> ../$fname 
17
18cd ../test_axis_algo
19echo "" >> ../$fname
20echo "testing axis transformations..." >> ../$fname
21echo "" >> ../$fname
22./run.sh
23cat $gname >> ../$fname 
24
25
26
27
Note: See TracBrowser for help on using the repository browser.