Changeset 1724


Ignore:
Timestamp:
09/26/19 09:17:11 (5 years ago)
Author:
yushan
Message:

Generic_testcase : delete root reference and related bash scripts. Need to find a solution to delete them from svn server

Location:
XIOS/dev/dev_trunk_omp
Files:
4 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/dev_trunk_omp/GENERIC_TESTCASE/run_sub_test.sh

    r1712 r1724  
    11#!/bin/bash 
    2  
    3  
    4 cp ../user_config.py sub_config1.py 
    5 cp ../config.py sub_config2.py 
    6 cp ../check.py sub_check.py 
    7 cp ../default_param.py default_param.py 
    8  
    9  
    10 touch report.txt 
    11 > report.txt 
    12  
    13 nb_config=$(python sub_config1.py 2>&1)                                                                                                                     
    14  
    15  
    16 counter=0 
    17 while [ $counter -lt $nb_config ] 
    18 do 
    19  
    20 rm -f user_param.py 
    21  
    22 cp user_param.py.$counter user_param.py 
    23  
    24 ((counter++)) 
    25  
    26 nb_proc=$(python sub_config2.py 2>&1)  
    27  
    28 mpirun -np $nb_proc ../../build_prod/bin/generic_testcase.exe 
    29  
    30 python sub_check.py 
    31  
    32 rm -f iodef.xml 
    33 mv iodef.xml.bkp iodef.xml 
    34  
    35 done 
  • XIOS/dev/dev_trunk_omp/GENERIC_TESTCASE/run_test.sh

    r1708 r1724  
    11#!/bin/bash 
    2  
    3 fname=test_report.txt 
    4 touch $fname 
    5  
    6 > $fname 
    7  
    8 gname=report.txt 
    9  
    10  
    11 cd test_function 
    12  
    13 echo "" >> ../$fname 
    14 echo "testing reduce functions..." >> ../$fname 
    15 echo "" >> ../$fname 
    16  
    17 ../run_sub_test.sh 
    18 cat $gname >> ../$fname  
    192 
    203 
    214 
    225 
    23 cd ../test_axis_algo 
    24  
    25 echo "" >> ../$fname 
    26 echo "testing axis transformations..." >> ../$fname 
    27 echo "" >> ../$fname 
    28  
    29 ../run_sub_test.sh 
    30 cat $gname >> ../$fname  
    31  
    32  
    33  
    34  
  • XIOS/dev/dev_trunk_omp/src/transformation/Functions/sum_reduction.cpp

    r1677 r1724  
    3333                                   bool ignoreMissingValue, bool firstPass) 
    3434{ 
    35   std::cout<<"================================ CSumReductionAlgorithm::apply"<<std::endl; 
    3635  if (ignoreMissingValue) 
    3736  { 
  • XIOS/dev/dev_trunk_omp/src/transformation/scalar_algorithm_reduce_domain.cpp

    r1677 r1724  
    9797TRY 
    9898{ 
    99   std::cout<<"================================ CScalarAlgorithmReduceDomain::apply"<<std::endl; 
    10099  reduction_->apply(localIndex, dataInput, dataOut, flagInitial, ignoreMissingValue, firstPass); 
    101100} 
Note: See TracChangeset for help on using the changeset viewer.