Index: pdfbox/pom.xml
===================================================================
--- pdfbox/pom.xml	(revision 1554849)
+++ pdfbox/pom.xml	(working copy)
@@ -113,13 +113,10 @@
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
           <argLine>-Xmx64m</argLine>
-          <includes>
-            <include>org/apache/pdfbox/TestAll.java</include>
-            <include>org/apache/pdfbox/util/TestTextStripper.java</include>
-            <!--
-            <include>org/apache/pdfbox/util/TestPDFToImage.java</include>
-            -->
-          </includes>
+          <excludes>
+            <exclude>org/apache/pdfbox/util/TestPDFToImage.java</exclude>
+            <exclude>org/apache/pdfbox/encryption/TestPublicKeyEncryption.java</exclude>
+          </excludes>
           <systemPropertyVariables>
             <java.util.logging.config.file>src/test/resources/logging.properties</java.util.logging.config.file>
           </systemPropertyVariables>
Index: pdfbox/src/test/java/org/apache/pdfbox/util/TestImageIOUtils.java
===================================================================
--- pdfbox/src/test/java/org/apache/pdfbox/util/TestImageIOUtils.java   (revision 1554849)
+++ pdfbox/src/test/java/org/apache/pdfbox/util/TestImageIOUtils.java   (working copy)
@@ -103,7 +103,8 @@
     {
         String inDir = "src/test/resources/input/rendering";
         String outDir = "target/test-output/";
-
+        new File(outDir).mkdir();
+
         File[] testFiles = new File(inDir).listFiles(new FilenameFilter()
         {
             public boolean accept(File dir, String name)
Index: pdfbox/src/test/java/org/apache/pdfbox/util/TestTextStripperPerformance.java
===================================================================
--- pdfbox/src/test/java/org/apache/pdfbox/util/TestTextStripperPerformance.java	(revision 1554849)
+++ pdfbox/src/test/java/org/apache/pdfbox/util/TestTextStripperPerformance.java	(working copy)
@@ -119,6 +119,8 @@
                 }
             });
 
+            new File("src/test/resources/output").mkdir();
+
             for (int n = 0; n < testFiles.length; n++)
             {
                 doTestFile(testFiles[n], false);
