jdk/test/tools/pack200/BandIntegrity.java
changeset 18594 b6a3c9f71ac8
parent 17490 46864558d068
child 37306 645dd89cd76c
--- a/jdk/test/tools/pack200/BandIntegrity.java	Tue Jul 02 11:30:31 2013 +0200
+++ b/jdk/test/tools/pack200/BandIntegrity.java	Tue Jul 02 05:28:31 2013 -0700
@@ -40,7 +40,7 @@
  * the java packer and unpacker must be called in the same java instance.
  */
 public class BandIntegrity {
-        public static void main(String... args)  throws IOException {
+    public static void main(String... args) throws IOException {
         File testFile = new File("test.jar");
         Utils.jar("cvf", testFile.getName(),
                 "-C", Utils.TEST_CLS_DIR.getAbsolutePath(),
@@ -56,6 +56,7 @@
         Utils.createFile(configFile, scratch);
         File outFile = new File("out.jar");
         Utils.repack(testFile, outFile, true,
-                     "-v", "--config-file=" + configFile.getName());
+                "-v", "--config-file=" + configFile.getName());
+        Utils.cleanup();
     }
 }