All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
launcher Namespace Reference

Functions

def main
 

Function Documentation

def launcher.main ( )

Definition at line 9 of file launcher.py.

9 
10 def main():
11 
12  print 'starting'
13  import dependencyAnalysis as DA
14 
15  dir = "./newFormat"
16  fileList = sorted([ l for l in os.listdir(dir) if not l.startswith('.')])
17  for l in fileList:
18  n=fileList.index(l)
19  l = dir+'/'+l
20  fileList[n]=l
21 
22  testList = ''
23  for l in fileList :
24  testList+= l+" "
25 
26 # print DA.sniffer('/afs/cern.ch/user/v/valentin/workspace/Gaudi/GaudiExamples/tests/qmtest')\
27  proc= Popen(['/afs/cern.ch/user/v/valentin/workspace/Gaudi/build.x86_64-slc6-gcc48-opt/run', "/afs/cern.ch/sw/lcg/external/Python/2.7.3/x86_64-slc6-gcc48-opt/bin/python", '/afs/cern.ch/user/v/valentin/workspace/Gaudi/GaudiExamples/tests/qmtest/ScriptTest_V6.py']+fileList)
28  proc.wait()
29 
30  print 'end'
31 
main()
def main
Definition: launcher.py:9