Beispiel #1
0
 def doExecute( self ):
     Subprocess.execute( self.__base, self.__options, self.__wd, self.__context )
Beispiel #2
0
 def valgrind( self ):
     Subprocess.execute( [ "valgrind", "--leak-check=full", self.__fileName ], context = self.context )
Beispiel #3
0
 def run(self, arguments):
     Subprocess.execute([self.__executableFile] + arguments, context=self.context, silent=True)
Beispiel #4
0
 def debug( self, arguments ):
     Subprocess.execute( [ "gdb", self.__fileName ] + arguments, context = self.context )
Beispiel #5
0
 def run( self, arguments ):
     Subprocess.execute( [ "python", self.__fileName ] + arguments, context = self.context, silent = True )