xref: /petsc/config/gmakegentest.py (revision 0aac28659db282372d1c8fdcab6e01426a5a09c5)
129921a8fSScott Kruger#!/usr/bin/env python
229921a8fSScott Kruger
329921a8fSScott Krugerimport os,shutil, string, re
429921a8fSScott Krugerfrom distutils.sysconfig import parse_makefile
529921a8fSScott Krugerimport sys
66ac365aeSScott Krugerimport logging, time
729921a8fSScott Krugerimport types
829921a8fSScott Krugersys.path.insert(0, os.path.abspath(os.path.dirname(__file__)))
929921a8fSScott Krugerfrom cmakegen import Mistakes, stripsplit, AUTODIRS, SKIPDIRS
1029921a8fSScott Krugerfrom cmakegen import defaultdict # collections.defaultdict, with fallback for python-2.4
1129921a8fSScott Krugerfrom gmakegen import *
1229921a8fSScott Kruger
1329921a8fSScott Krugerimport inspect
1429921a8fSScott Krugerthisscriptdir = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
1529921a8fSScott Krugersys.path.insert(0,thisscriptdir)
1629921a8fSScott Krugerimport testparse
1729921a8fSScott Krugerimport example_template
1829921a8fSScott Kruger
1929921a8fSScott Krugerclass generateExamples(Petsc):
2029921a8fSScott Kruger  """
2129921a8fSScott Kruger    gmakegen.py has basic structure for finding the files, writing out
2229921a8fSScott Kruger      the dependencies, etc.
2329921a8fSScott Kruger  """
2429921a8fSScott Kruger  def __init__(self,petsc_dir=None, petsc_arch=None, verbose=False, single_ex=False):
2529921a8fSScott Kruger    super(generateExamples, self).__init__(petsc_dir=None, petsc_arch=None, verbose=False)
2629921a8fSScott Kruger
2729921a8fSScott Kruger    self.single_ex=single_ex
2829921a8fSScott Kruger    self.arch_dir=os.path.join(self.petsc_dir,self.petsc_arch)
2929921a8fSScott Kruger    self.ptNaming=True
3029921a8fSScott Kruger    # Whether to write out a useful debugging
3129921a8fSScott Kruger    #if verbose: self.summarize=True
3229921a8fSScott Kruger    self.summarize=True
3329921a8fSScott Kruger
3429921a8fSScott Kruger    # For help in setting the requirements
3529921a8fSScott Kruger    self.precision_types="single double quad int32".split()
3629921a8fSScott Kruger    self.integer_types="int32 int64".split()
3729921a8fSScott Kruger    self.languages="fortran cuda cxx".split()    # Always requires C so do not list
3829921a8fSScott Kruger
3929921a8fSScott Kruger    # Things that are not test
4029921a8fSScott Kruger    self.buildkeys=testparse.buildkeys
4129921a8fSScott Kruger
4229921a8fSScott Kruger    # Adding a dictionary for storing sources, objects, and tests
4329921a8fSScott Kruger    # to make building the dependency tree easier
4429921a8fSScott Kruger    self.sources={}
4529921a8fSScott Kruger    self.objects={}
4629921a8fSScott Kruger    self.tests={}
4729921a8fSScott Kruger    for pkg in PKGS:
4829921a8fSScott Kruger      self.sources[pkg]={}
4929921a8fSScott Kruger      self.objects[pkg]=[]
5029921a8fSScott Kruger      self.tests[pkg]={}
5129921a8fSScott Kruger      for lang in LANGS:
5229921a8fSScott Kruger        self.sources[pkg][lang]={}
5329921a8fSScott Kruger        self.sources[pkg][lang]['srcs']=[]
5429921a8fSScott Kruger        self.tests[pkg][lang]={}
5529921a8fSScott Kruger
566ac365aeSScott Kruger    # Do some initialization
5729921a8fSScott Kruger    self.testroot_dir=os.path.join(self.arch_dir,"tests")
5829921a8fSScott Kruger    if not os.path.isdir(self.testroot_dir): os.makedirs(self.testroot_dir)
5929921a8fSScott Kruger    return
6029921a8fSScott Kruger
6129921a8fSScott Kruger  def nameSpace(self,srcfile,srcdir):
6229921a8fSScott Kruger    """
6329921a8fSScott Kruger    Because the scripts have a non-unique naming, the pretty-printing
6429921a8fSScott Kruger    needs to convey the srcdir and srcfile.  There are two ways of doing this.
6529921a8fSScott Kruger    """
6629921a8fSScott Kruger    if self.ptNaming:
6729921a8fSScott Kruger      cdir=srcdir.split('src')[1].lstrip("/").rstrip("/")
6829921a8fSScott Kruger      prefix=cdir.replace('/examples/','_').replace("/","_")+"-"
6929921a8fSScott Kruger      nameString=prefix+srcfile
7029921a8fSScott Kruger    else:
7129921a8fSScott Kruger      #nameString=srcdir+": "+srcfile
7229921a8fSScott Kruger      nameString=srcfile
7329921a8fSScott Kruger    return nameString
7429921a8fSScott Kruger
7529921a8fSScott Kruger  def getLanguage(self,srcfile):
7629921a8fSScott Kruger    """
7729921a8fSScott Kruger    Based on the source, determine associated language as found in gmakegen.LANGS
7829921a8fSScott Kruger    Can we just return srcext[1:\] now?
7929921a8fSScott Kruger    """
8029921a8fSScott Kruger    langReq=None
8129921a8fSScott Kruger    srcext=os.path.splitext(srcfile)[-1]
8229921a8fSScott Kruger    if srcext in ".F90".split(): langReq="F90"
8329921a8fSScott Kruger    if srcext in ".F".split(): langReq="F"
8429921a8fSScott Kruger    if srcext in ".cxx".split(): langReq="cxx"
8529921a8fSScott Kruger    if srcext == ".cu": langReq="cu"
8629921a8fSScott Kruger    if srcext == ".c": langReq="c"
87*0aac2865SBarry Smith    #if not langReq: print "ERROR: ", srcext, srcfile
8829921a8fSScott Kruger    return langReq
8929921a8fSScott Kruger
9029921a8fSScott Kruger  def getArgLabel(self,testDict):
9129921a8fSScott Kruger    """
9229921a8fSScott Kruger    In all of the arguments in the test dictionary, create a simple
9329921a8fSScott Kruger    string for searching within the makefile system.  For simplicity in
9429921a8fSScott Kruger    search, remove "-", for strings, etc.
9529921a8fSScott Kruger    Also, concatenate the arg commands
9629921a8fSScott Kruger    For now, ignore nsize -- seems hard to search for anyway
9729921a8fSScott Kruger    """
9829921a8fSScott Kruger    # Collect all of the args associated with a test
9929921a8fSScott Kruger    argStr=("" if not testDict.has_key('args') else testDict['args'])
10029921a8fSScott Kruger    if testDict.has_key('subtests'):
10129921a8fSScott Kruger      for stest in testDict["subtests"]:
10229921a8fSScott Kruger         sd=testDict[stest]
10329921a8fSScott Kruger         argStr=argStr+("" if not sd.has_key('args') else sd['args'])
10429921a8fSScott Kruger
10529921a8fSScott Kruger    # Now go through and cleanup
10629921a8fSScott Kruger    argStr=re.sub('{{(.*?)}}',"",argStr)
10729921a8fSScott Kruger    argStr=re.sub('-'," ",argStr)
10829921a8fSScott Kruger    for digit in string.digits: argStr=re.sub(digit," ",argStr)
10929921a8fSScott Kruger    argStr=re.sub("\.","",argStr)
11029921a8fSScott Kruger    argStr=re.sub(",","",argStr)
11129921a8fSScott Kruger    argStr=re.sub('\+',' ',argStr)
11229921a8fSScott Kruger    argStr=re.sub(' +',' ',argStr)  # Remove repeated white space
11329921a8fSScott Kruger    return argStr.strip()
11429921a8fSScott Kruger
11529921a8fSScott Kruger  def addToSources(self,exfile,root,srcDict):
11629921a8fSScott Kruger    """
11729921a8fSScott Kruger      Put into data structure that allows easy generation of makefile
11829921a8fSScott Kruger    """
11929921a8fSScott Kruger    pkg=self.relpath(self.petsc_dir,root).split("/")[1]
12029921a8fSScott Kruger    fullfile=os.path.join(root,exfile)
12129921a8fSScott Kruger    relpfile=self.relpath(self.petsc_dir,fullfile)
12229921a8fSScott Kruger    lang=self.getLanguage(exfile)
123*0aac2865SBarry Smith    if not lang: return
12429921a8fSScott Kruger    self.sources[pkg][lang]['srcs'].append(relpfile)
12529921a8fSScott Kruger    if srcDict.has_key('depends'):
12629921a8fSScott Kruger      depSrc=srcDict['depends']
12729921a8fSScott Kruger      depObj=os.path.splitext(depSrc)[0]+".o"
12829921a8fSScott Kruger      self.sources[pkg][lang][exfile]=depObj
12929921a8fSScott Kruger
13029921a8fSScott Kruger    # In gmakefile, ${TESTDIR} var specifies the object compilation
13129921a8fSScott Kruger    testsdir=self.relpath(self.petsc_dir,root)+"/"
13229921a8fSScott Kruger    objfile="${TESTDIR}/"+testsdir+os.path.splitext(exfile)[0]+".o"
13329921a8fSScott Kruger    self.objects[pkg].append(objfile)
13429921a8fSScott Kruger    return
13529921a8fSScott Kruger
13629921a8fSScott Kruger  def addToTests(self,test,root,exfile,execname,testDict):
13729921a8fSScott Kruger    """
13829921a8fSScott Kruger      Put into data structure that allows easy generation of makefile
13929921a8fSScott Kruger      Organized by languages to allow testing of languages
14029921a8fSScott Kruger    """
14129921a8fSScott Kruger    pkg=self.relpath(self.petsc_dir,root).split("/")[1]
14229921a8fSScott Kruger    #nmtest=self.nameSpace(test,root)
14329921a8fSScott Kruger    rpath=self.relpath(self.petsc_dir,root)
14429921a8fSScott Kruger    nmtest=os.path.join(rpath,test)
14529921a8fSScott Kruger    lang=self.getLanguage(exfile)
146*0aac2865SBarry Smith    if not lang: return
14729921a8fSScott Kruger    self.tests[pkg][lang][nmtest]={}
14829921a8fSScott Kruger    self.tests[pkg][lang][nmtest]['exfile']=os.path.join(rpath,exfile)
14929921a8fSScott Kruger    self.tests[pkg][lang][nmtest]['exec']=execname
15029921a8fSScott Kruger    self.tests[pkg][lang][nmtest]['argLabel']=self.getArgLabel(testDict)
15129921a8fSScott Kruger    return
15229921a8fSScott Kruger
15329921a8fSScott Kruger  def getFor(self,subst,i,j):
15429921a8fSScott Kruger    """
15529921a8fSScott Kruger      Get the for and done lines
15629921a8fSScott Kruger    """
15729921a8fSScott Kruger    forlines=""
15829921a8fSScott Kruger    donlines=""
15929921a8fSScott Kruger    indent="   "
16029921a8fSScott Kruger    nsizeStr=subst['nsize']
16129921a8fSScott Kruger    for loop in re.findall('{{(.*?)}}',subst['nsize']):
16229921a8fSScott Kruger      lindex=string.ascii_lowercase[i]
16329921a8fSScott Kruger      forline=indent*j+"for "+lindex+" in '"+loop+"'; do"
16429921a8fSScott Kruger      nsizeStr=re.sub("{{"+loop+"}}","${"+lindex+"}",nsizeStr)
16529921a8fSScott Kruger      donline=indent*j+"done"
16629921a8fSScott Kruger      forlines=forlines+forline+"\n"
16729921a8fSScott Kruger      donlines=donlines+donline+"\n"
16829921a8fSScott Kruger      i=i+1
16929921a8fSScott Kruger      j=j+1
17029921a8fSScott Kruger    subst['nsize']=nsizeStr
17129921a8fSScott Kruger    argStr=subst['args']
17229921a8fSScott Kruger    for loop in re.findall('{{(.*?)}}',subst['args']):
17329921a8fSScott Kruger      lindex=string.ascii_lowercase[i]
17429921a8fSScott Kruger      forline=indent*j+"for "+lindex+" in '"+loop+"'; do"
17529921a8fSScott Kruger      argStr=re.sub("{{"+loop+"}}","${"+lindex+"}",argStr)
17629921a8fSScott Kruger      donline=indent*j+"done"
17729921a8fSScott Kruger      forlines=forlines+forline+"\n"
17829921a8fSScott Kruger      donlines=donlines+donline+"\n"
17929921a8fSScott Kruger      i=i+1
18029921a8fSScott Kruger      j=j+1
18129921a8fSScott Kruger    subst['args']=argStr
18229921a8fSScott Kruger
18329921a8fSScott Kruger    # The do lines have reverse order with respect to indentation
18429921a8fSScott Kruger    dl=donlines.rstrip("\n").split("\n")
18529921a8fSScott Kruger    dl.reverse()
18629921a8fSScott Kruger    donlines="\n".join(dl)+"\n"
18729921a8fSScott Kruger
18829921a8fSScott Kruger    return forlines,donlines,i,j
18929921a8fSScott Kruger
19029921a8fSScott Kruger
19129921a8fSScott Kruger  def getExecname(self,exfile,root):
19229921a8fSScott Kruger    """
19329921a8fSScott Kruger      Generate bash script using template found next to this file.
19429921a8fSScott Kruger      This file is read in at constructor time to avoid file I/O
19529921a8fSScott Kruger    """
19629921a8fSScott Kruger    rpath=self.relpath(self.petsc_dir,root)
19729921a8fSScott Kruger    if self.single_ex:
19829921a8fSScott Kruger      execname=rpath.split("/")[1]+"-ex"
19929921a8fSScott Kruger    else:
20029921a8fSScott Kruger      execname=os.path.splitext(exfile)[0]
20129921a8fSScott Kruger    return execname
20229921a8fSScott Kruger
20329921a8fSScott Kruger  def getSubstVars(self,testDict,rpath,testname):
20429921a8fSScott Kruger    """
20529921a8fSScott Kruger      Create a dictionary with all of the variables that get substituted
20629921a8fSScott Kruger      into the template commands found in example_template.py
20729921a8fSScott Kruger      TODO: Cleanup
20829921a8fSScott Kruger    """
20929921a8fSScott Kruger    subst={}
21029921a8fSScott Kruger    # Handle defaults
21129921a8fSScott Kruger    if not testDict.has_key('nsize'): testDict['nsize']=1
21229921a8fSScott Kruger    if not testDict.has_key('filter'): testDict['filter']=""
21364ca018dSScott Kruger    if not testDict.has_key('filter_output'): testDict['filter_output']=""
21464ca018dSScott Kruger    if not testDict.has_key('localrunfiles'): testDict['localrunfiles']=""
21529921a8fSScott Kruger    if not testDict.has_key('args'): testDict['args']=""
21629921a8fSScott Kruger    defroot=(re.sub("run","",testname) if testname.startswith("run") else testname)
2177dbb4497SScott Kruger    if not "_" in defroot: defroot=defroot+"_1"
2186d044f5fSScott Kruger    if not testDict.has_key('redirect_file'): testDict['redirect_file']=defroot+".tmp"
21929921a8fSScott Kruger    if not testDict.has_key('output_file'): testDict['output_file']="output/"+defroot+".out"
22029921a8fSScott Kruger
22129921a8fSScott Kruger    # Setup the variables in template_string that need to be substituted
22229921a8fSScott Kruger    subst['srcdir']=os.path.join(self.petsc_dir,rpath)
22329921a8fSScott Kruger    subst['label']=self.nameSpace(defroot,subst['srcdir'])
2246d044f5fSScott Kruger    subst['redirect_file']=testDict['redirect_file']
22529921a8fSScott Kruger    subst['output_file']=os.path.join(subst['srcdir'],testDict['output_file'])
22629921a8fSScott Kruger    subst['exec']="../"+testDict['execname']
22764ca018dSScott Kruger    subst['filter']="'"+testDict['filter']+"'"   # Quotes are tricky
22864ca018dSScott Kruger    subst['filter_output']=testDict['filter_output']
22964ca018dSScott Kruger    subst['localrunfiles']=testDict['localrunfiles']
23029921a8fSScott Kruger    subst['testroot']=self.testroot_dir
23129921a8fSScott Kruger    subst['testname']=testname
23229921a8fSScott Kruger
23329921a8fSScott Kruger    # Be careful with this
23429921a8fSScott Kruger    if testDict.has_key('command'): subst['command']=testDict['command']
23529921a8fSScott Kruger
23629921a8fSScott Kruger    # These can have for loops and are treated separately later
23729921a8fSScott Kruger    if testDict.has_key('nsize'): subst['nsize']=str(testDict['nsize'])
23829921a8fSScott Kruger    if testDict.has_key('args'):  subst['args']=testDict['args']
23929921a8fSScott Kruger
24029921a8fSScott Kruger    #Conf vars
24129921a8fSScott Kruger    subst['mpiexec']=self.conf['MPIEXEC']  # make sure PETSC_DIR is defined!
2424c8d737cSSatish Balay    subst['petsc_dir']=self.petsc_dir # not self.conf['PETSC_DIR'] as this could be windows path
24329921a8fSScott Kruger    subst['diff']=self.conf['DIFF']
24429921a8fSScott Kruger    subst['rm']=self.conf['RM']
24529921a8fSScott Kruger    subst['grep']=self.conf['GREP']
246d6f00007SSatish Balay    subst['petsc_lib_dir']=self.conf['PETSC_LIB_DIR']
24729921a8fSScott Kruger
24829921a8fSScott Kruger    return subst
24929921a8fSScott Kruger
25029921a8fSScott Kruger  def getCmds(self,subst,i):
25129921a8fSScott Kruger    """
25229921a8fSScott Kruger      Generate bash script using template found next to this file.
25329921a8fSScott Kruger      This file is read in at constructor time to avoid file I/O
25429921a8fSScott Kruger    """
25529921a8fSScott Kruger    indent="   "
25629921a8fSScott Kruger    nindent=i # the start and has to be consistent with below
25729921a8fSScott Kruger    cmdLines=""
25829921a8fSScott Kruger    # MPI is the default -- but we have a few odd commands
25929921a8fSScott Kruger    if not subst.has_key('command'):
26029921a8fSScott Kruger      cmd=indent*nindent+self._substVars(subst,example_template.mpitest)
26129921a8fSScott Kruger    else:
26229921a8fSScott Kruger      cmd=indent*nindent+self._substVars(subst,example_template.commandtest)
26329921a8fSScott Kruger    cmdLines=cmdLines+cmd+"\n\n"
26429921a8fSScott Kruger
26564ca018dSScott Kruger    if not subst['filter_output']:
26629921a8fSScott Kruger      cmd=indent*nindent+self._substVars(subst,example_template.difftest)
26764ca018dSScott Kruger    else:
26864ca018dSScott Kruger      cmd=indent*nindent+self._substVars(subst,example_template.filterdifftest)
26929921a8fSScott Kruger    cmdLines=cmdLines+cmd+"\n"
27029921a8fSScott Kruger    return cmdLines
27129921a8fSScott Kruger
27229921a8fSScott Kruger  def _substVars(self,subst,origStr):
27329921a8fSScott Kruger    """
27429921a8fSScott Kruger      Substitute varial
27529921a8fSScott Kruger    """
27629921a8fSScott Kruger    Str=origStr
27729921a8fSScott Kruger    for subkey in subst:
27829921a8fSScott Kruger      if type(subst[subkey])!=types.StringType: continue
27929921a8fSScott Kruger      patt="@"+subkey.upper()+"@"
28029921a8fSScott Kruger      Str=re.sub(patt,subst[subkey],Str)
28129921a8fSScott Kruger    return Str
28229921a8fSScott Kruger
28329921a8fSScott Kruger  def genRunScript(self,testname,root,isRun,srcDict):
28429921a8fSScott Kruger    """
28529921a8fSScott Kruger      Generate bash script using template found next to this file.
28629921a8fSScott Kruger      This file is read in at constructor time to avoid file I/O
28729921a8fSScott Kruger    """
28829921a8fSScott Kruger    # runscript_dir directory has to be consistent with gmakefile
28929921a8fSScott Kruger    testDict=srcDict[testname]
29029921a8fSScott Kruger    rpath=self.relpath(self.petsc_dir,root)
29129921a8fSScott Kruger    runscript_dir=os.path.join(self.testroot_dir,rpath)
29229921a8fSScott Kruger    if not os.path.isdir(runscript_dir): os.makedirs(runscript_dir)
29329921a8fSScott Kruger    fh=open(os.path.join(runscript_dir,testname+".sh"),"w")
29429921a8fSScott Kruger    petscvarfile=os.path.join(self.arch_dir,'lib','petsc','conf','petscvariables')
29529921a8fSScott Kruger
29629921a8fSScott Kruger    subst=self.getSubstVars(testDict,rpath,testname)
29729921a8fSScott Kruger
29864ca018dSScott Kruger    #Handle runfiles
29964ca018dSScott Kruger    if subst['localrunfiles']:
30064ca018dSScott Kruger      for lfile in subst['localrunfiles'].split():
30164ca018dSScott Kruger        fullfile=os.path.join(self.petsc_dir,rpath,lfile)
30264ca018dSScott Kruger        shutil.copy(fullfile,runscript_dir)
30364ca018dSScott Kruger    # Check subtests for local runfiles
30464ca018dSScott Kruger    if testDict.has_key("subtests"):
30564ca018dSScott Kruger      for stest in testDict["subtests"]:
30664ca018dSScott Kruger        if testDict[stest].has_key('localrunfiles'):
30764ca018dSScott Kruger          for lfile in testDict[stest]['localrunfiles'].split():
30864ca018dSScott Kruger            fullfile=os.path.join(self.petsc_dir,rpath,lfile)
30964ca018dSScott Kruger            shutil.copy(fullfile,self.runscript_dir)
31064ca018dSScott Kruger
31129921a8fSScott Kruger    # Now substitute the key variables into the header and footer
31229921a8fSScott Kruger    header=self._substVars(subst,example_template.header)
3135e7f8670SScott Kruger    footer=re.sub('@TESTROOT@',subst['testroot'],example_template.footer)
31429921a8fSScott Kruger
31529921a8fSScott Kruger    # Start writing the file
31629921a8fSScott Kruger    fh.write(header+"\n")
31729921a8fSScott Kruger
31829921a8fSScott Kruger    # If there is a TODO or a SKIP then we do it before writing out the
31929921a8fSScott Kruger    # rest of the command (which is useful for working on the test)
32029921a8fSScott Kruger    # SKIP and TODO can be for the source file or for the runs
32129921a8fSScott Kruger    if srcDict.has_key("SKIP") or srcDict.has_key("TODO"):
32229921a8fSScott Kruger      if srcDict.has_key("TODO"):
32329921a8fSScott Kruger        todo=re.sub("@TODOCOMMENT@",srcDict['TODO'],example_template.todoline)
32429921a8fSScott Kruger        fh.write(todo+"\ntotal=1; todo=1\n")
32529921a8fSScott Kruger        fh.write(footer+"\n")
32629921a8fSScott Kruger        fh.write("exit\n\n\n")
32729921a8fSScott Kruger      elif srcDict.has_key("SKIP") or srcDict.has_key("TODO"):
32829921a8fSScott Kruger        skip=re.sub("@SKIPCOMMENT@",srcDict['SKIP'],example_template.skipline)
32929921a8fSScott Kruger        fh.write(skip+"\ntotal=1; skip=1\n")
33029921a8fSScott Kruger        fh.write(footer+"\n")
33129921a8fSScott Kruger        fh.write("exit\n\n\n")
33229921a8fSScott Kruger    elif not isRun:
33329921a8fSScott Kruger      skip=re.sub("@SKIPCOMMENT@",testDict['SKIP'],example_template.skipline)
33429921a8fSScott Kruger      fh.write(skip+"\ntotal=1; skip=1\n")
33529921a8fSScott Kruger      fh.write(footer+"\n")
33629921a8fSScott Kruger      fh.write("exit\n\n\n")
33729921a8fSScott Kruger    elif testDict.has_key('TODO'):
33829921a8fSScott Kruger      todo=re.sub("@TODOCOMMENT@",testDict['TODO'],example_template.todoline)
33929921a8fSScott Kruger      fh.write(todo+"\ntotal=1; todo=1\n")
34029921a8fSScott Kruger      fh.write(footer+"\n")
34129921a8fSScott Kruger      fh.write("exit\n\n\n")
34229921a8fSScott Kruger
34329921a8fSScott Kruger    # Need to handle loops
34429921a8fSScott Kruger    i=8  # for loop counters
34529921a8fSScott Kruger    j=0  # for indentation
34629921a8fSScott Kruger
34729921a8fSScott Kruger    doForP=False
34829921a8fSScott Kruger    if "{{" in subst['args']+subst['nsize']:
34929921a8fSScott Kruger      doForP=True
35029921a8fSScott Kruger      flinesP,dlinesP,i,j=self.getFor(subst,i,j)
35129921a8fSScott Kruger      fh.write(flinesP+"\n")
35229921a8fSScott Kruger
35329921a8fSScott Kruger    # Subtests are special
35429921a8fSScott Kruger    if testDict.has_key("subtests"):
35529921a8fSScott Kruger      substP=subst   # Subtests can inherit args but be careful
35629921a8fSScott Kruger      if not substP.has_key("arg"): substP["arg"]=""
35729921a8fSScott Kruger      jorig=j
35829921a8fSScott Kruger      for stest in testDict["subtests"]:
35929921a8fSScott Kruger        j=jorig
36029921a8fSScott Kruger        subst=substP
36129921a8fSScott Kruger        subst.update(testDict[stest])
36229921a8fSScott Kruger        subst['nsize']=str(subst['nsize'])
36329921a8fSScott Kruger        if not testDict[stest].has_key('args'): testDict[stest]['args']=""
36429921a8fSScott Kruger        subst['args']=substP['args']+testDict[stest]['args']
36529921a8fSScott Kruger        doFor=False
36629921a8fSScott Kruger        if "{{" in subst['args']+subst['nsize']:
36729921a8fSScott Kruger          doFor=True
36829921a8fSScott Kruger          flines,dlines,i,j=self.getFor(subst,i,j)
36929921a8fSScott Kruger          fh.write(flines+"\n")
37029921a8fSScott Kruger        fh.write(self.getCmds(subst,j)+"\n")
37129921a8fSScott Kruger        if doFor: fh.write(dlines+"\n")
37229921a8fSScott Kruger    else:
37329921a8fSScott Kruger      fh.write(self.getCmds(subst,j)+"\n")
37429921a8fSScott Kruger      if doForP: fh.write(dlinesP+"\n")
37529921a8fSScott Kruger
37629921a8fSScott Kruger    fh.write(footer+"\n")
377b181ea86SSatish Balay    os.chmod(os.path.join(runscript_dir,testname+".sh"),0755)
37829921a8fSScott Kruger    return
37929921a8fSScott Kruger
38029921a8fSScott Kruger  def  genScriptsAndInfo(self,exfile,root,srcDict):
38129921a8fSScott Kruger    """
38229921a8fSScott Kruger    Generate scripts from the source file, determine if built, etc.
38329921a8fSScott Kruger     For every test in the exfile with info in the srcDict:
38429921a8fSScott Kruger      1. Determine if it needs to be run for this arch
38529921a8fSScott Kruger      2. Generate the script
38629921a8fSScott Kruger      3. Generate the data needed to write out the makefile in a
38729921a8fSScott Kruger         convenient way
38829921a8fSScott Kruger     All tests are *always* run, but some may be SKIP'd per the TAP standard
38929921a8fSScott Kruger    """
39029921a8fSScott Kruger    debug=False
39129921a8fSScott Kruger    fileIsTested=False
39229921a8fSScott Kruger    execname=self.getExecname(exfile,root)
39329921a8fSScott Kruger    isBuilt=self._isBuilt(exfile,srcDict)
39429921a8fSScott Kruger    for test in srcDict:
39529921a8fSScott Kruger      if test in self.buildkeys: continue
39629921a8fSScott Kruger      if debug: print self.nameSpace(exfile,root), test
39729921a8fSScott Kruger      srcDict[test]['execname']=execname   # Convenience in generating scripts
39829921a8fSScott Kruger      isRun=self._isRun(srcDict[test])
39929921a8fSScott Kruger      self.genRunScript(test,root,isRun,srcDict)
40029921a8fSScott Kruger      srcDict[test]['isrun']=isRun
40129921a8fSScott Kruger      if isRun: fileIsTested=True
40229921a8fSScott Kruger      self.addToTests(test,root,exfile,execname,srcDict[test])
40329921a8fSScott Kruger
40429921a8fSScott Kruger    # This adds to datastructure for building deps
40529921a8fSScott Kruger    if fileIsTested and isBuilt: self.addToSources(exfile,root,srcDict)
40629921a8fSScott Kruger    #print self.nameSpace(exfile,root), fileIsTested
40729921a8fSScott Kruger    return
40829921a8fSScott Kruger
40929921a8fSScott Kruger  def _isBuilt(self,exfile,srcDict):
41029921a8fSScott Kruger    """
41129921a8fSScott Kruger    Determine if this file should be built.
41229921a8fSScott Kruger    """
41329921a8fSScott Kruger    # Get the language based on file extension
41429921a8fSScott Kruger    lang=self.getLanguage(exfile)
4156b53ca5fSScott Kruger    if (lang=="F" or lang=="F90") and not self.have_fortran:
41629921a8fSScott Kruger      srcDict["SKIP"]="Fortran required for this test"
41729921a8fSScott Kruger      return False
41829921a8fSScott Kruger    if lang=="cu" and not self.conf.has_key('PETSC_HAVE_CUDA'):
41929921a8fSScott Kruger      srcDict["SKIP"]="CUDA required for this test"
42029921a8fSScott Kruger      return False
42129921a8fSScott Kruger    if lang=="cxx" and not self.conf.has_key('PETSC_HAVE_CXX'):
42229921a8fSScott Kruger      srcDict["SKIP"]="C++ required for this test"
42329921a8fSScott Kruger      return False
42429921a8fSScott Kruger
42529921a8fSScott Kruger    # Deprecated source files
42629921a8fSScott Kruger    if srcDict.has_key("TODO"): return False
42729921a8fSScott Kruger
42829921a8fSScott Kruger    # isRun can work with srcDict to handle the requires
42929921a8fSScott Kruger    if srcDict.has_key("requires"):
43029921a8fSScott Kruger      if len(srcDict["requires"])>0:
43129921a8fSScott Kruger        return self._isRun(srcDict)
43229921a8fSScott Kruger
43329921a8fSScott Kruger    return True
43429921a8fSScott Kruger
43529921a8fSScott Kruger
43629921a8fSScott Kruger  def _isRun(self,testDict):
43729921a8fSScott Kruger    """
43829921a8fSScott Kruger    Based on the requirements listed in the src file and the petscconf.h
43929921a8fSScott Kruger    info, determine whether this test should be run or not.
44029921a8fSScott Kruger    """
44129921a8fSScott Kruger    indent="  "
44229921a8fSScott Kruger    debug=False
44329921a8fSScott Kruger
44429921a8fSScott Kruger    # MPI requirements
44529921a8fSScott Kruger    if testDict.has_key('nsize'):
44629921a8fSScott Kruger      if testDict['nsize']>1 and self.conf.has_key('MPI_IS_MPIUNI'):
44729921a8fSScott Kruger        if debug: print indent+"Cannot run parallel tests"
44829921a8fSScott Kruger        testDict['SKIP']="Parallel test with serial build"
44929921a8fSScott Kruger        return False
45029921a8fSScott Kruger
45129921a8fSScott Kruger    # The requirements for the test are the sum of all the run subtests
45229921a8fSScott Kruger    if testDict.has_key('subtests'):
45329921a8fSScott Kruger      if not testDict.has_key('requires'): testDict['requires']=""
45429921a8fSScott Kruger      for stest in testDict['subtests']:
45529921a8fSScott Kruger        if testDict[stest].has_key('requires'):
45629921a8fSScott Kruger          testDict['requires']=testDict['requires']+" "+testDict[stest]['requires']
45729921a8fSScott Kruger
45829921a8fSScott Kruger
45929921a8fSScott Kruger    # Now go through all requirements
46029921a8fSScott Kruger    if testDict.has_key('requires'):
46129921a8fSScott Kruger      for requirement in testDict['requires'].split():
46229921a8fSScott Kruger        requirement=requirement.strip()
46329921a8fSScott Kruger        if not requirement: continue
46429921a8fSScott Kruger        if debug: print indent+"Requirement: ", requirement
46529921a8fSScott Kruger        isNull=False
46629921a8fSScott Kruger        if requirement.startswith("!"):
46729921a8fSScott Kruger          requirement=requirement[1:]; isNull=True
46829921a8fSScott Kruger        # Precision requirement for reals
46929921a8fSScott Kruger        if requirement in self.precision_types:
47029921a8fSScott Kruger          if self.conf['PETSC_PRECISION']==requirement:
47129921a8fSScott Kruger            testDict['SKIP']="not "+requirement+" required"
47229921a8fSScott Kruger            if isNull: return False
47329921a8fSScott Kruger          else:
47429921a8fSScott Kruger            testDict['SKIP']=requirement+" required"
47529921a8fSScott Kruger            return False
47629921a8fSScott Kruger        # Precision requirement for ints
47729921a8fSScott Kruger        if requirement in self.integer_types:
47829921a8fSScott Kruger          if requirement=="int32":
47929921a8fSScott Kruger            if self.conf['PETSC_SIZEOF_INT']==4:
48029921a8fSScott Kruger              testDict['SKIP']="not int32 required"
48129921a8fSScott Kruger              if isNull: return False
48229921a8fSScott Kruger            else:
48329921a8fSScott Kruger              testDict['SKIP']="int32 required"
48429921a8fSScott Kruger              return False
48529921a8fSScott Kruger          if requirement=="int64":
48629921a8fSScott Kruger            if self.conf['PETSC_SIZEOF_INT']==8:
48729921a8fSScott Kruger              testDict['SKIP']="NOT int64 required"
48829921a8fSScott Kruger              if isNull: return False
48929921a8fSScott Kruger            else:
49029921a8fSScott Kruger              testDict['SKIP']="int64 required"
49129921a8fSScott Kruger              return False
49229921a8fSScott Kruger        # Datafilespath
49329921a8fSScott Kruger        if requirement=="datafilespath":
49429921a8fSScott Kruger          testDict['SKIP']="Requires DATAFILESPATH"
49529921a8fSScott Kruger          return False
49629921a8fSScott Kruger        # Defines -- not sure I have comments matching
4978304fa3fSScott Kruger        if "define(" in requirement.lower():
49829921a8fSScott Kruger          reqdef=requirement.split("(")[1].split(")")[0]
49929921a8fSScott Kruger          val=(reqdef.split()[1] if " " in reqdef else "")
50029921a8fSScott Kruger          if self.conf.has_key(reqdef):
50129921a8fSScott Kruger            if val:
50229921a8fSScott Kruger              if self.conf[reqdef]==val:
50329921a8fSScott Kruger                if isNull:
50429921a8fSScott Kruger                  testDict['SKIP']="Null requirement not met: "+requirement
50529921a8fSScott Kruger                  return False
50629921a8fSScott Kruger              else:
50729921a8fSScott Kruger                testDict['SKIP']="Required: "+requirement
50829921a8fSScott Kruger                return False
50929921a8fSScott Kruger            else:
51029921a8fSScott Kruger              if isNull:
51129921a8fSScott Kruger                testDict['SKIP']="Null requirement not met: "+requirement
51229921a8fSScott Kruger                return False
51329921a8fSScott Kruger              else:
5148304fa3fSScott Kruger                return True
5158304fa3fSScott Kruger          else:
51629921a8fSScott Kruger            testDict['SKIP']="Requirement not met: "+requirement
51729921a8fSScott Kruger            return False
51829921a8fSScott Kruger
51929921a8fSScott Kruger        # Rest should be packages that we can just get from conf
520df3aec83SJed Brown        if requirement == "complex":  petscconfvar="PETSC_USE_COMPLEX"
52196f627aeSBarry Smith        else:   petscconfvar="PETSC_HAVE_"+requirement.upper()
52229921a8fSScott Kruger        if self.conf.get(petscconfvar):
52329921a8fSScott Kruger          if isNull:
52429921a8fSScott Kruger            testDict['SKIP']="Not "+petscconfvar+" requirement not met"
52529921a8fSScott Kruger            return False
526df3aec83SJed Brown        elif not isNull:
52729921a8fSScott Kruger          if debug: print "requirement not found: ", requirement
52829921a8fSScott Kruger          testDict['SKIP']=petscconfvar+" requirement not met"
52929921a8fSScott Kruger          return False
53029921a8fSScott Kruger
53129921a8fSScott Kruger    return True
53229921a8fSScott Kruger
53329921a8fSScott Kruger  def genPetscTests_summarize(self,dataDict):
53429921a8fSScott Kruger    """
53529921a8fSScott Kruger    Required method to state what happened
53629921a8fSScott Kruger    """
53729921a8fSScott Kruger    if not self.summarize: return
53829921a8fSScott Kruger    indent="   "
539cfaa06beSSatish Balay    fhname=os.path.join(self.testroot_dir,'GenPetscTests_summarize.txt')
54029921a8fSScott Kruger    fh=open(fhname,"w")
54164ca018dSScott Kruger    #print "See ", fhname
54229921a8fSScott Kruger    for root in dataDict:
54329921a8fSScott Kruger      relroot=self.relpath(self.petsc_dir,root)
54429921a8fSScott Kruger      pkg=relroot.split("/")[1]
54529921a8fSScott Kruger      fh.write(relroot+"\n")
54629921a8fSScott Kruger      allSrcs=[]
54729921a8fSScott Kruger      for lang in LANGS: allSrcs=allSrcs+self.sources[pkg][lang]['srcs']
54829921a8fSScott Kruger      for exfile in dataDict[root]:
54929921a8fSScott Kruger        # Basic  information
55029921a8fSScott Kruger        fullfile=os.path.join(root,exfile)
55129921a8fSScott Kruger        rfile=self.relpath(self.petsc_dir,fullfile)
55229921a8fSScott Kruger        builtStatus=(" Is built" if rfile in allSrcs else " Is NOT built")
55329921a8fSScott Kruger        fh.write(indent+exfile+indent*4+builtStatus+"\n")
55429921a8fSScott Kruger
55529921a8fSScott Kruger        for test in dataDict[root][exfile]:
55629921a8fSScott Kruger          if test in self.buildkeys: continue
55729921a8fSScott Kruger          line=indent*2+test
55829921a8fSScott Kruger          fh.write(line+"\n")
55929921a8fSScott Kruger          # Looks nice to have the keys in order
56029921a8fSScott Kruger          #for key in dataDict[root][exfile][test]:
56129921a8fSScott Kruger          for key in "isrun abstracted nsize args requires script".split():
56229921a8fSScott Kruger            if not dataDict[root][exfile][test].has_key(key): continue
56329921a8fSScott Kruger            line=indent*3+key+": "+str(dataDict[root][exfile][test][key])
56429921a8fSScott Kruger            fh.write(line+"\n")
56529921a8fSScott Kruger          fh.write("\n")
56629921a8fSScott Kruger        fh.write("\n")
56729921a8fSScott Kruger      fh.write("\n")
56829921a8fSScott Kruger    #fh.write("\nClass Sources\n"+str(self.sources)+"\n")
56929921a8fSScott Kruger    #fh.write("\nClass Tests\n"+str(self.tests)+"\n")
57029921a8fSScott Kruger    fh.close()
57129921a8fSScott Kruger    return
57229921a8fSScott Kruger
57329921a8fSScott Kruger  def genPetscTests(self,root,dirs,files,dataDict):
57429921a8fSScott Kruger    """
57529921a8fSScott Kruger     Go through and parse the source files in the directory to generate
57629921a8fSScott Kruger     the examples based on the metadata contained in the source files
57729921a8fSScott Kruger    """
57829921a8fSScott Kruger    debug=False
57929921a8fSScott Kruger    # Use examplesAnalyze to get what the makefles think are sources
58029921a8fSScott Kruger    #self.examplesAnalyze(root,dirs,files,anlzDict)
58129921a8fSScott Kruger
58229921a8fSScott Kruger    dataDict[root]={}
58329921a8fSScott Kruger
58429921a8fSScott Kruger    for exfile in files:
58529921a8fSScott Kruger      #TST: Until we replace files, still leaving the orginals as is
58629921a8fSScott Kruger      #if not exfile.startswith("new_"+"ex"): continue
58729921a8fSScott Kruger      if not exfile.startswith("ex"): continue
58829921a8fSScott Kruger
58929921a8fSScott Kruger      # Convenience
59029921a8fSScott Kruger      fullex=os.path.join(root,exfile)
59129921a8fSScott Kruger      relpfile=self.relpath(self.petsc_dir,fullex)
59229921a8fSScott Kruger      if debug: print relpfile
59329921a8fSScott Kruger      dataDict[root].update(testparse.parseTestFile(fullex))
59429921a8fSScott Kruger      # Need to check and make sure tests are in the file
59529921a8fSScott Kruger      # if verbosity>=1: print relpfile
59629921a8fSScott Kruger      if dataDict[root].has_key(exfile):
59729921a8fSScott Kruger        self.genScriptsAndInfo(exfile,root,dataDict[root][exfile])
59829921a8fSScott Kruger
59929921a8fSScott Kruger    return
60029921a8fSScott Kruger
60129921a8fSScott Kruger  def walktree(self,top,action="printFiles"):
60229921a8fSScott Kruger    """
60329921a8fSScott Kruger    Walk a directory tree, starting from 'top'
60429921a8fSScott Kruger    """
60529921a8fSScott Kruger    #print "action", action
60629921a8fSScott Kruger    # Goal of action is to fill this dictionary
60729921a8fSScott Kruger    dataDict={}
60829921a8fSScott Kruger    for root, dirs, files in os.walk(top, topdown=False):
60929921a8fSScott Kruger      if not "examples" in root: continue
61029921a8fSScott Kruger      if not os.path.isfile(os.path.join(root,"makefile")): continue
61129921a8fSScott Kruger      bname=os.path.basename(root.rstrip("/"))
61229921a8fSScott Kruger      if bname=="tests" or bname=="tutorials":
61329921a8fSScott Kruger        eval("self."+action+"(root,dirs,files,dataDict)")
61429921a8fSScott Kruger      if type(top) != types.StringType:
61529921a8fSScott Kruger          raise TypeError("top must be a string")
61629921a8fSScott Kruger    # Now summarize this dictionary
61729921a8fSScott Kruger    eval("self."+action+"_summarize(dataDict)")
61829921a8fSScott Kruger    return dataDict
61929921a8fSScott Kruger
620b0790570SJed Brown  def gen_gnumake(self, fd):
62129921a8fSScott Kruger    """
62229921a8fSScott Kruger     Overwrite of the method in the base PETSc class
62329921a8fSScott Kruger    """
62429921a8fSScott Kruger    def write(stem, srcs):
62529921a8fSScott Kruger        for lang in LANGS:
62629921a8fSScott Kruger            fd.write('%(stem)s.%(lang)s := %(srcs)s\n' % dict(stem=stem, lang=lang, srcs=' '.join(srcs[lang]['srcs'])))
62729921a8fSScott Kruger    for pkg in PKGS:
62829921a8fSScott Kruger        srcs = self.gen_pkg(pkg)
629b0790570SJed Brown        write('testsrcs-' + pkg, srcs)
63029921a8fSScott Kruger    return self.gendeps
63129921a8fSScott Kruger
63229921a8fSScott Kruger  def gen_pkg(self, pkg):
63329921a8fSScott Kruger    """
63429921a8fSScott Kruger     Overwrite of the method in the base PETSc class
63529921a8fSScott Kruger    """
63629921a8fSScott Kruger    return self.sources[pkg]
63729921a8fSScott Kruger
63829921a8fSScott Kruger  def write_gnumake(self,dataDict):
63929921a8fSScott Kruger    """
64029921a8fSScott Kruger     Write out something similar to files from gmakegen.py
64129921a8fSScott Kruger
64229921a8fSScott Kruger     There is not a lot of has_key type checking because
64329921a8fSScott Kruger     should just work and need to know if there are bugs
64429921a8fSScott Kruger
64529921a8fSScott Kruger     Test depends on script which also depends on source
64629921a8fSScott Kruger     file, but since I don't have a good way generating
64729921a8fSScott Kruger     acting on a single file (oops) just depend on
64829921a8fSScott Kruger     executable which in turn will depend on src file
64929921a8fSScott Kruger    """
65068f6ad6bSScott Kruger    # Different options for how to set up the targets
65168f6ad6bSScott Kruger    compileExecsFirst=False
65268f6ad6bSScott Kruger
65329921a8fSScott Kruger    # Open file
65429921a8fSScott Kruger    arch_files = self.arch_path('lib','petsc','conf', 'testfiles')
65529921a8fSScott Kruger    fd = open(arch_files, 'w')
65629921a8fSScott Kruger
65729921a8fSScott Kruger    # Write out the sources
658b0790570SJed Brown    gendeps = self.gen_gnumake(fd)
65929921a8fSScott Kruger
66029921a8fSScott Kruger    # Write out the tests and execname targets
66129921a8fSScott Kruger    fd.write("\n#Tests and executables\n")    # Delimiter
66229921a8fSScott Kruger
66329921a8fSScott Kruger    for pkg in PKGS:
66429921a8fSScott Kruger      # These grab the ones that are built
66529921a8fSScott Kruger      for lang in LANGS:
66685a27222SJed Brown        testdeps=[]
66729921a8fSScott Kruger        for ftest in self.tests[pkg][lang]:
66829921a8fSScott Kruger          test=os.path.basename(ftest)
66929921a8fSScott Kruger          basedir=os.path.dirname(ftest)
67085a27222SJed Brown          testdeps.append(self.nameSpace(test,basedir))
671612eee3eSJed Brown        fd.write("test-"+pkg+"."+lang+" := "+' '.join(testdeps)+"\n")
67265ea9442SJed Brown        fd.write('test-%s.%s : $(test-%s.%s)\n' % (pkg, lang, pkg, lang))
67329921a8fSScott Kruger
67429921a8fSScott Kruger        # test targets
67529921a8fSScott Kruger        for ftest in self.tests[pkg][lang]:
67629921a8fSScott Kruger          test=os.path.basename(ftest)
67729921a8fSScott Kruger          basedir=os.path.dirname(ftest)
67829921a8fSScott Kruger          testdir="${TESTDIR}/"+basedir+"/"
67929921a8fSScott Kruger          nmtest=self.nameSpace(test,basedir)
68029921a8fSScott Kruger          rundir=os.path.join(testdir,test)
68129921a8fSScott Kruger          #print test, nmtest
68229921a8fSScott Kruger          script=test+".sh"
68329921a8fSScott Kruger
68429921a8fSScott Kruger          # Deps
68529921a8fSScott Kruger          exfile=self.tests[pkg][lang][ftest]['exfile']
68629921a8fSScott Kruger          fullex=os.path.join(self.petsc_dir,exfile)
68729921a8fSScott Kruger          localexec=self.tests[pkg][lang][ftest]['exec']
68829921a8fSScott Kruger          execname=os.path.join(testdir,localexec)
68968f6ad6bSScott Kruger          fullscript=os.path.join(testdir,script)
69068f6ad6bSScott Kruger          tmpfile=os.path.join(testdir,test,test+".tmp")
69129921a8fSScott Kruger
692b91d4a07SJed Brown          # *.counts depends on the script and either executable (will
693b91d4a07SJed Brown          # be run) or the example source file (SKIP or TODO)
694b91d4a07SJed Brown          fd.write('%s.counts : %s %s\n'
695b91d4a07SJed Brown                   % (os.path.join('$(TESTDIR)/counts', nmtest),
696b91d4a07SJed Brown                      fullscript,
697b91d4a07SJed Brown                      execname if exfile in self.sources[pkg][lang]['srcs'] else fullex))
69829921a8fSScott Kruger          # Now write the args:
699612eee3eSJed Brown          fd.write(nmtest+"_ARGS := '"+self.tests[pkg][lang][ftest]['argLabel']+"'\n")
700df2e1f37SScott Kruger
701612eee3eSJed Brown    fd.close()
70229921a8fSScott Kruger    return
70329921a8fSScott Kruger
70429921a8fSScott Kruger  def writeHarness(self,output,dataDict):
70529921a8fSScott Kruger    """
70629921a8fSScott Kruger     This is set up to write out multiple harness even if only gnumake
70729921a8fSScott Kruger     is supported now
70829921a8fSScott Kruger    """
70929921a8fSScott Kruger    eval("self.write_"+output+"(dataDict)")
71029921a8fSScott Kruger    return
71129921a8fSScott Kruger
71229921a8fSScott Krugerdef main(petsc_dir=None, petsc_arch=None, output=None, verbose=False, single_ex=False):
71329921a8fSScott Kruger    if output is None:
71429921a8fSScott Kruger        output = 'gnumake'
71529921a8fSScott Kruger
71629921a8fSScott Kruger
71729921a8fSScott Kruger    pEx=generateExamples(petsc_dir=petsc_dir, petsc_arch=petsc_arch, verbose=verbose, single_ex=single_ex)
71829921a8fSScott Kruger    dataDict=pEx.walktree(os.path.join(pEx.petsc_dir,'src'),action="genPetscTests")
71929921a8fSScott Kruger    pEx.writeHarness(output,dataDict)
72029921a8fSScott Kruger
72129921a8fSScott Krugerif __name__ == '__main__':
72229921a8fSScott Kruger    import optparse
72329921a8fSScott Kruger    parser = optparse.OptionParser()
72429921a8fSScott Kruger    parser.add_option('--verbose', help='Show mismatches between makefiles and the filesystem', action='store_true', default=False)
72529921a8fSScott Kruger    parser.add_option('--petsc-arch', help='Set PETSC_ARCH different from environment', default=os.environ.get('PETSC_ARCH'))
72629921a8fSScott Kruger    parser.add_option('--output', help='Location to write output file', default=None)
72729921a8fSScott Kruger    parser.add_option('-s', '--single_executable', dest='single_executable', action="store_false", help='Whether there should be single executable per src subdir.  Default is false')
72829921a8fSScott Kruger    opts, extra_args = parser.parse_args()
72929921a8fSScott Kruger    if extra_args:
73029921a8fSScott Kruger        import sys
73129921a8fSScott Kruger        sys.stderr.write('Unknown arguments: %s\n' % ' '.join(extra_args))
73229921a8fSScott Kruger        exit(1)
73329921a8fSScott Kruger    main(petsc_arch=opts.petsc_arch, output=opts.output, verbose=opts.verbose, single_ex=opts.single_executable)
734