There are a number of regression tests which are not properly cleaning up after themselves on exit.
Some of the regression tests are using File.createTempFile() without cleaning up the dead files. As a result, I had almost *36 GB* of dead space on sheen. Obviously, that's a problem. Builds were crawling or dying, spurious failures...etc...
The easiest way to avoid this is to use the following pattern:
File f = File.createTemptFile(...);
f.deleteOnExit();
rather than trying to catch your errors in case of failure. In some cases, there was no attempt at cleanup at all, success or failure.
Please clean these up ASAP. The changes are very easy.
Network files
./com/sun/net/httpserver/SelCacheTest.java
./com/sun/net/httpserver/Test1.java
./com/sun/net/httpserver/Test12.java
./com/sun/net/httpserver/Test13.java
./com/sun/net/httpserver/Test9.java
./com/sun/net/httpserver/Test9a.java
./java/net/URLConnection/UnknownContentType.java
./sun/net/www/protocol/file/FileMap.java
./sun/net/www/protocol/file/GetLastModified.java
./sun/net/www/protocol/jar/jarbug/src/test/JarTest.java
General TL files
./java/io/File/GetXSpace.java
./java/io/File/NullArgs.java
./java/io/File/createTempFile/Security.java
./java/io/FileInputStream/LeadingSlash.java
./java/nio/channels/Channels/Basic.java
./java/nio/channels/FileChannel/Lock.java (should be tagged after creation)
./java/nio/channels/FileChannel/Size.java
./java/nio/channels/FileChannel/Truncate.java
./java/util/TimeZone/Bug4472183.java
./java/util/zip/ZipFile/ManyZipFiles.java (should be tagged after creation)
./sun/misc/URLClassPath/FileLoaderTest.java
Others (file a new bug if desired):
./java/awt/font/FontsAndFiles/ManyFilesandFonts.java
./javax/imageio/AllowSearch.java
./javax/imageio/ImageIOWriteFile.java
./javax/imageio/ImageWriteParamTest.java
./javax/imageio/SetOutput.java
./javax/imageio/plugins/bmp/NoExtraBytesTest.java
./javax/imageio/plugins/bmp/TestCompressionBI_BITFIELDS.java
./javax/imageio/plugins/gif/RGBAnimationTest.java
./javax/imageio/plugins/png/WriteProgressive.java