diff options
author | carnold <[email protected]> | 2007-03-27 17:26:34 +0000 |
---|---|---|
committer | carnold <[email protected]> | 2007-03-27 17:26:34 +0000 |
commit | 5e4e580f84b1a827b0c4fca865d40cefc353e061 (patch) | |
tree | d14f49ff8edda0cd4b21c2fc5fce544ff2a25afb | |
parent | ce5d4b7ae821655754095971e1d94b4ede219eaa (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.java | 7 |
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"); } } |