You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cactus-dev@jakarta.apache.org by se...@apache.org on 2009/01/20 20:50:28 UTC

svn commit: r736081 - /jakarta/cactus/trunk/integration/ant/src/test/java/org/apache/cactus/integration/ant/AntTestCase.java

Author: sebb
Date: Tue Jan 20 11:50:28 2009
New Revision: 736081

URL: http://svn.apache.org/viewvc?rev=736081&view=rev
Log:
Show directory name that cannot be found

Modified:
    jakarta/cactus/trunk/integration/ant/src/test/java/org/apache/cactus/integration/ant/AntTestCase.java

Modified: jakarta/cactus/trunk/integration/ant/src/test/java/org/apache/cactus/integration/ant/AntTestCase.java
URL: http://svn.apache.org/viewvc/jakarta/cactus/trunk/integration/ant/src/test/java/org/apache/cactus/integration/ant/AntTestCase.java?rev=736081&r1=736080&r2=736081&view=diff
==============================================================================
--- jakarta/cactus/trunk/integration/ant/src/test/java/org/apache/cactus/integration/ant/AntTestCase.java (original)
+++ jakarta/cactus/trunk/integration/ant/src/test/java/org/apache/cactus/integration/ant/AntTestCase.java Tue Jan 20 11:50:28 2009
@@ -368,7 +368,9 @@
             testInputDirProperty != null);
         File testInputDir = new File(testInputDirProperty);
         assertTrue("The system property 'testinput.dir' must point to an "
-            + "existing directory", testInputDir.isDirectory());
+            + "existing directory"
+            + ". Could not find directory: " + testInputDirProperty,
+            testInputDir.isDirectory());
         File buildFile = new File(testInputDir, theFileName);
         assertTrue("The test input " + theFileName + " does not exist",
             buildFile.exists());



---------------------------------------------------------------------
To unsubscribe, e-mail: cactus-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: cactus-dev-help@jakarta.apache.org