Skip to content

Commit

Permalink
[JENKINS-20298] Remove exception in log when test is aborted
Browse files Browse the repository at this point in the history
  • Loading branch information
antoine-aumjaud committed Apr 3, 2015
1 parent d834c14 commit 15d96fa
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -83,10 +83,10 @@ public boolean perform(AbstractBuild<?, ?> build, Launcher launcher, BuildListen
build.setResult(results.getBuildResult());
build.addAction(action);
return true;
} catch (InterruptedException e) { //aborted
throw e;
} catch (Throwable t) {
t.printStackTrace(logger);
if (t instanceof InterruptedException)
throw (InterruptedException) t;
build.setResult(Result.FAILURE);
return false;
}
Expand Down

0 comments on commit 15d96fa

Please sign in to comment.