Skip to content

Commit 4613b63

Browse files
committed
Stop swallowing exceptions that happen in TestEnvironment.dispose
This commit is excepted to reveal bogus tests that do not properly shutdown, especially on Windows where directory cannot be removed until there are any running processes that use it as a working directory.
1 parent 4f8ea2c commit 4613b63

File tree

1 file changed

+13
-15
lines changed

1 file changed

+13
-15
lines changed

src/main/java/org/jvnet/hudson/test/JenkinsRule.java

+13-15
Original file line numberDiff line numberDiff line change
@@ -509,21 +509,19 @@ public void after() throws Exception {
509509

510510
try {
511511
env.dispose();
512-
} catch (Exception x) {
513-
x.printStackTrace();
514-
}
515-
516-
// Hudson creates ClassLoaders for plugins that hold on to file descriptors of its jar files,
517-
// but because there's no explicit dispose method on ClassLoader, they won't get GC-ed until
518-
// at some later point, leading to possible file descriptor overflow. So encourage GC now.
519-
// see http://bugs.sun.com/view_bug.do?bug_id=4950148
520-
// TODO use URLClassLoader.close() in Java 7
521-
System.gc();
522-
523-
// restore defaultUseCache
524-
if(Functions.isWindows()) {
525-
URLConnection aConnection = new File(".").toURI().toURL().openConnection();
526-
aConnection.setDefaultUseCaches(origDefaultUseCache);
512+
} finally {
513+
// Hudson creates ClassLoaders for plugins that hold on to file descriptors of its jar files,
514+
// but because there's no explicit dispose method on ClassLoader, they won't get GC-ed until
515+
// at some later point, leading to possible file descriptor overflow. So encourage GC now.
516+
// see http://bugs.sun.com/view_bug.do?bug_id=4950148
517+
// TODO use URLClassLoader.close() in Java 7
518+
System.gc();
519+
520+
// restore defaultUseCache
521+
if(Functions.isWindows()) {
522+
URLConnection aConnection = new File(".").toURI().toURL().openConnection();
523+
aConnection.setDefaultUseCaches(origDefaultUseCache);
524+
}
527525
}
528526
}
529527
}

0 commit comments

Comments
 (0)