Lines Matching full:error
17 parser.add_argument('-s', action='store_true', help="Take into account AVH error code")
65 def __init__(self,msg,error=False): argument
66 self._error = error
70 def error(self): member in Result
79 # Run a command and get error or result
81 # in case of error since the test report is giving
94 …return(Result(result.stderr + f"\n\nSTDOUT (error code = {result.returncode}):\n\n" + result.stdou…
96 return(Result(result.stdout,error=True))
104 return(Result(str(e),error=True))
310 if res.error:
311 printError("Error processTests")
312 … print("<p><font color=\"red\">Error generating %s</font></p><PRE>" % s,file=f)
328 if res.error:
329 printError("Error cbuild")
330 print("<p><font color=\"red\">Error building %s</font></p><PRE>" % s,file=f)
336 if res.error:
337 printError("Error running AVH")
338 print("<p><font color=\"red\">Error running %s</font></p><PRE>" % s,file=f)
351 if res.error:
352 printError("Error processResult")
353 … print("<p><font color=\"red\">Error processing %s result</font></p><PRE>" % s,file=f)
358 # When no error the section is
367 sys.exit("Error occurred")