Ejemplo n.º 1
0
    def EvaluateSpecXML(self, xml_source):
        """Deprecated, use EvaluateSpecXMLAsync instead
        """

        spec = EvaluationSpec()
        spec.load_from_xml_source(xml_source)
        arf, stdout, stderr, exit_code = spec.evaluate(self.system.config)
        return (arf, stdout, stderr, exit_code)
Ejemplo n.º 2
0
    def EvaluateSpecXML(self, xml_source):
        """Deprecated, use EvaluateSpecXMLAsync instead
        """

        spec = EvaluationSpec()
        spec.load_from_xml_source(xml_source)
        arf, stdout, stderr, exit_code = spec.evaluate(self.system.config)
        return (arf, stdout, stderr, exit_code)
Ejemplo n.º 3
0
 def EvaluateSpecXMLAsync(self, xml_source):
     spec = EvaluationSpec()
     spec.load_from_xml_source(xml_source)
     token = self.system.evaluate_spec_async(spec)
     return token
Ejemplo n.º 4
0
 def EvaluateSpecXML(self, xml_source):
     spec = EvaluationSpec()
     spec.load_from_xml_source(xml_source)
     arf, stdout, stderr, exit_code = spec.evaluate(self.system.config)
     return (arf, stdout, stderr, exit_code)
Ejemplo n.º 5
0
 def EvaluateSpecXMLAsync(self, xml_source):
     spec = EvaluationSpec()
     spec.load_from_xml_source(xml_source)
     token = self.system.evaluate_spec_async(spec)
     return token
Ejemplo n.º 6
0
 def EvaluateSpecXML(self, xml_source):
     spec = EvaluationSpec()
     spec.load_from_xml_source(xml_source)
     arf, stdout, stderr, exit_code = spec.evaluate(self.system.config)
     return (arf, stdout, stderr, exit_code)