Exemplo n.º 1
0
 def __init__(self, argv, app_name, moose_dir):
   TestHarness.__init__(self, argv, app_name, moose_dir)
   try:
     from sqlite3 import dbapi2 as sqlite
   except:
     print 'Error: --store-timing requires the sqlite3 python module.'
     sys.exit(1)
   self.app_name = app_name
   self.db_file = self.options.dbFile
   if not self.db_file:
     home = os.environ['HOME']
     self.db_file = os.path.join(home, 'timingDB/timing.sqlite')
     if not os.path.exists(self.db_file):
       print 'Warning: creating new database at default location: ' + str(self.db_file)
       self.createDB(self.db_file)
     else:
       print 'Warning: Assuming database location ' + self.db_file
Exemplo n.º 2
0
 def __init__(self, argv, app_name, moose_dir):
     TestHarness.__init__(self, argv, app_name, moose_dir)
     try:
         from sqlite3 import dbapi2 as sqlite
     except:
         print 'Error: --store-timing requires the sqlite3 python module.'
         sys.exit(1)
     self.app_name = app_name
     self.db_file = self.options.dbFile
     if not self.db_file:
         home = os.environ['HOME']
         self.db_file = os.path.join(home, 'timingDB/timing.sqlite')
         if not os.path.exists(self.db_file):
             print 'Warning: creating new database at default location: ' + str(
                 self.db_file)
             self.createDB(self.db_file)
         else:
             print 'Warning: Assuming database location ' + self.db_file