Skip to content

Commit

Permalink
[JENKINS-30395] Apply workaround also to HudsonTestCase.
Browse files Browse the repository at this point in the history
  • Loading branch information
jglick committed Mar 9, 2016
1 parent 1d32b05 commit 01c93f1
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 01c93f1

Please sign in to comment.