Skip to content

Commit

Permalink
Merge pull request #14 from jglick/HudsonTestCase-JENKINS-30395
Browse files Browse the repository at this point in the history
[JENKINS-30395] Apply workaround also to HudsonTestCase
  • Loading branch information
jglick committed Mar 10, 2016
2 parents e1d9256 + 01c93f1 commit e5343d9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/org/jvnet/hudson/test/HudsonTestCase.java
Expand Up @@ -292,6 +292,10 @@ public void runBare() throws Throwable {

@Override
protected void setUp() throws Exception {
if (Thread.interrupted()) { // JENKINS-30395
LOGGER.warning("was interrupted before start");
}

if(Functions.isWindows()) {
// JENKINS-4409.
// URLConnection caches handles to jar files by default,
Expand Down

0 comments on commit e5343d9

Please sign in to comment.