summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcarnold <[email protected]>2007-03-27 17:26:34 +0000
committercarnold <[email protected]>2007-03-27 17:26:34 +0000
commit5e4e580f84b1a827b0c4fca865d40cefc353e061 (patch)
treed14f49ff8edda0cd4b21c2fc5fce544ff2a25afb
parentce5d4b7ae821655754095971e1d94b4ede219eaa (diff)
Loosen testBadLibname which had been failing
git-svn-id: file:///home/sven/projects/JOGL/temp/ant-contrib/svn/ant-contrib-code/trunk/cpptasks@109 32d7a393-a5a9-423c-abd3-5d954feb1f2f
-rw-r--r--test/junit/net/sf/antcontrib/cpptasks/types/TestLibrarySet.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/junit/net/sf/antcontrib/cpptasks/types/TestLibrarySet.java b/test/junit/net/sf/antcontrib/cpptasks/types/TestLibrarySet.java
index d34b568..180f765 100644
--- a/test/junit/net/sf/antcontrib/cpptasks/types/TestLibrarySet.java
+++ b/test/junit/net/sf/antcontrib/cpptasks/types/TestLibrarySet.java
@@ -326,7 +326,12 @@ public class TestLibrarySet
} catch(BuildException ex) {
return;
}
- fail("visitLibraries should throw exception due to unsatisifed libname");
+//
+// code around line 320 in LibrarySet that would throw BuildException
+// (and prevent reaching this line) is disabled since logic for identifying
+// missing libraries does not work reliably on non-Windows platforms
+//
+// fail("visitLibraries should throw exception due to unsatisifed libname");
}
}