Changeset 740


Ignore:
Timestamp:
09/21/18 01:47:26 (6 years ago)
Author:
dubos
Message:

testing : small improvements

Location:
configs/testing
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • configs/testing/python/common.py

    r727 r740  
    55matplotlib.use('Agg')  
    66import matplotlib.pyplot as plt 
     7 
     8import matplotlib.style 
     9import matplotlib as mpl 
     10mpl.style.use('classic') 
    711 
    812def getdims(nc, *names): return [len(nc.dimensions[name]) for name in names] 
  • configs/testing/setup.sh

    r702 r740  
    66full_defined="FALSE" 
    77arch_defined="FALSE" 
     8proj_defined="FALSE" 
    89job=1 
    910 
     
    1920 -arch nom_arch            : nom de l\'architecture cible 
    2021 -job N                    : parallel compilation 
     22 -project X                : project name for job submission 
    2123 -full                     : full compilation 
    2224extra options will be passed to make_icosa 
     
    2729      "-job") 
    2830          job=$2 ; shift ; shift;; 
     31      "-project") 
     32          project=$2 ; proj_defined="TRUE"; shift; shift;; 
    2933      "-full") 
    3034          full_defined="TRUE" ; shift ;; 
     
    4448arch="$arch" 
    4549job="$job" 
     50project="$project" 
    4651other_XIOS="$pther_XIOS" 
    4752other="$other" 
     
    6772  echo "You may now run bash/build.sh" 
    6873else 
    69   echo "Please define a target architecture" 
     74  echo "Please define a target architecture with -arch XXX" 
    7075  exit 1 
    7176fi 
Note: See TracChangeset for help on using the changeset viewer.