Home
last modified time | relevance | path

Searched refs:wasKilled (Results 1 – 1 of 1) sorted by relevance

/external/testng/src/main/java/org/testng/
DTestNGAntTask.java532 boolean wasKilled= false; in execute()
535 wasKilled= watchdog.killedProcess(); in execute()
538 actOnResult(exitValue, wasKilled); in execute()
722 protected void actOnResult(int exitValue, boolean wasKilled) { in actOnResult() argument
742 boolean failed= ((exitValue & TestNG.HAS_FAILURE) == TestNG.HAS_FAILURE) || wasKilled; in actOnResult()
744 final String msg= wasKilled ? "The tests timed out and were killed." : "The tests failed."; in actOnResult()