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: [email protected]
For additional commands, e-mail: [email protected]