diff options
author | Jiri Vanek <jvanek@redhat.com> | 2013-11-25 16:54:23 +0100 |
---|---|---|
committer | Jiri Vanek <jvanek@redhat.com> | 2013-11-25 16:54:23 +0100 |
commit | b8da03fd7a7aac183acebf7ccd26196ccafca9bc (patch) | |
tree | 945106c698d36e154761be126d24fd53848bccd7 /tests/reproducers/simple/CreateClassLoader/testcases | |
parent | 18e9c2de7a762336e0b558f3007340d5eb2e9e44 (diff) |
Removed most of checks to no output from reproducers
Diffstat (limited to 'tests/reproducers/simple/CreateClassLoader/testcases')
-rw-r--r-- | tests/reproducers/simple/CreateClassLoader/testcases/CreateClassLoaderTest.java | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/reproducers/simple/CreateClassLoader/testcases/CreateClassLoaderTest.java b/tests/reproducers/simple/CreateClassLoader/testcases/CreateClassLoaderTest.java index 2de9f5a..91babeb 100644 --- a/tests/reproducers/simple/CreateClassLoader/testcases/CreateClassLoaderTest.java +++ b/tests/reproducers/simple/CreateClassLoader/testcases/CreateClassLoaderTest.java @@ -52,7 +52,6 @@ public class CreateClassLoaderTest { Assert.assertTrue("Stderr should match "+s+" but didn't",pr.stderr.matches(s)); String cc="ClassNotFoundException"; Assert.assertFalse("stderr should NOT contains `"+cc+"`, but did",pr.stderr.contains(cc)); - Assert.assertFalse("stdout length should be <=2, but was "+pr.stdout.length(),pr.stdout.length()>2); Assert.assertFalse("CreateClassLoaderLunch1 should not be terminated, but was",pr.wasTerminated); Assert.assertEquals((Integer) 0, pr.returnValue); } |