Beispiel #1
0
 def load_config(self):
     """Load the suite config."""
     if self.suiterc:
         is_reload = True
         collapsed = self.suiterc.closed_families
     else:
         is_reload = False
         collapsed = []
     try:
         self.suiterc = SuiteConfig(
             self.suite,
             self.file,
             self.template_vars,
             is_reload=is_reload,
             collapsed=collapsed,
             cli_initial_point_string=self.start_point_string,
             vis_start_string=self.start_point_string,
             vis_stop_string=self.stop_point_string)
     except Exception as exc:
         msg = "Failed - parsing error?\n\n" + str(exc)
         ERR.error(msg)
         dia = gtk.MessageDialog(type=gtk.MESSAGE_ERROR,
                                 buttons=gtk.BUTTONS_OK,
                                 message_format=msg)
         dia.run()
         dia.destroy()
         return False
     self.inherit = self.suiterc.get_parent_lists()
     return True
Beispiel #2
0
 def load_config(self):
     if self.suiterc:
         is_reload = True
         collapsed = self.suiterc.closed_families
     else:
         is_reload = False
         collapsed = []
     try:
         self.suiterc = SuiteConfig(
             self.suite, self.file, self.template_vars,
             is_reload=is_reload, collapsed=collapsed,
             cli_initial_point_string=self.start_point_string,
             vis_start_string=self.start_point_string,
             vis_stop_string=self.stop_point_string)
     except Exception, x:
         ERR.error("Failed - parsing error?\n" + str(x))
         return False
Beispiel #3
0
 def load_config(self):
     if self.suiterc:
         is_reload = True
         collapsed = self.suiterc.closed_families
     else:
         is_reload = False
         collapsed = []
     try:
         self.suiterc = SuiteConfig(
             self.suite,
             self.file,
             template_vars=self.template_vars,
             template_vars_file=self.template_vars_file,
             is_reload=is_reload,
             collapsed=collapsed,
             vis_start_string=self.start_point_string,
             vis_stop_string=self.stop_point_string)
     except Exception, x:
         print >> sys.stderr, "Failed - parsing error?"
         print >> sys.stderr, x
         return False