Exemple #1
0
 def GetTestStatus(self, sections, defs):
   status = join(self.root, "co19-runtime.status")
   if exists(status):
     test.ReadConfigurationInto(status, sections, defs)
   status = join(self.root, "co19-compiler.status")
   if exists(status):
     test.ReadConfigurationInto(status, sections, defs)
 def GetTestStatus(self, sections, defs):
     status_file = join(self.root, 'cctest.status')
     if exists(status_file):
         test.ReadConfigurationInto(status_file, sections, defs)
Exemple #3
0
 def GetTestStatus(self, sections, defs):
     status = join(self.root, 'vm.status')
     if exists(status): test.ReadConfigurationInto(status, sections, defs)
Exemple #4
0
 def GetTestStatus(self, sections, defs):
     status = os.path.join(self.root, 'dartc.status')
     if os.path.exists(status):
         test.ReadConfigurationInto(status, sections, defs)
Exemple #5
0
 def GetTestStatus(self, sections, defs):
     """Reads the .status file of the TestSuite."""
     status = os.path.join(self.root,
                           os.path.basename(self.root) + '.status')
     if os.path.exists(status):
         test.ReadConfigurationInto(status, sections, defs)