Changeset 815


Ignore:
Timestamp:
Feb 3, 2012 3:05:06 PM (12 years ago)
Author:
maronga
Message:

namelist file check temporary disabled (bugs)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SCRIPTS/mrun

    r807 r815  
    237237     #                     been implemented (check_namelist_files).
    238238     #                     New option -z can be used to skip the check
    239 
     239     # 03/02/12 - BjornM - namelist file check temporary disabled
     240     #                     until severel bugs are fixed
    240241 
    241242    # VARIABLENVEREINBARUNGEN + DEFAULTWERTE
     
    24032404
    24042405#### PERFORM PARAMETER FILE CHECK (COUPLED RUNS ARE NOT SUPPORTED YET)
    2405  if [[ $check_namelist_files == true && $fromhost == $localhost && $run_coupled_model == false ]]
     2406 skip_check=true
     2407 if [[ $check_namelist_files == false || $fromhost != $localhost || $run_coupled_model == true ]]
     2408 then
     2409    skip_check=true
     2410 fi
     2411 if [[ $skip_check == false ]]
    24062412 then
    24072413    if [[ $ocean_file_appendix == true ]]
     
    25322538       if [[ $? != 0 ]]
    25332539       then
    2534           rm -rf  $check_sources
    2535           locat=check_namelist; exit
     2540          printf "\n  +++ error during make."       
     2541          answer=dummy
     2542          printf "\n\n"
     2543          while [[ "$answer" != c  &&  "$answer" != C  && "$answer" != a  &&  "$answer" != A ]]
     2544          do
     2545             printf " >>> continue anyway (c(ontinue)/a(bort)) ?  "
     2546             read  answer
     2547          done
     2548          if [[ $answer = a  ||  $answer = A ]]
     2549          then
     2550             printf "\n  +++ Aborting..."
     2551             rm -rf  $check_sources
     2552             locat=normal; exit
     2553          else
     2554             skip_check=true
     2555          fi
    25362556       fi
    25372557    else
     
    25742594          printf "\n  *** Skipping parameter file check."
    25752595       fi       
    2576     else
     2596    elif [[ $skip_check == false ]]
     2597    then
    25772598#      STARTING THE PARAMETER FILE CHECK
    25782599       printf "\n\n  *** starting parameter file check..."
Note: See TracChangeset for help on using the changeset viewer.