Searched defs:fail (Results 101 - 125 of 342) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/java/util/concurrent/ScheduledThreadPoolExecutor/
H A DDecorateTask.java94 void fail() {failed++; Thread.dumpStack();} method in class:DecorateTask
95 void fail(String msg) {System.err.println(msg); fail();} method in class:DecorateTask
97 void check(boolean cond) {if (cond) pass(); else fail();}
100 else fail(x + " not equal to " + y);}
/openjdk7/jdk/test/java/util/concurrent/ThreadPoolExecutor/
H A DModifyCorePoolSize.java64 static void fail() {failed++; Thread.dumpStack();} method in class:ModifyCorePoolSize
65 static void fail(String msg) {System.out.println(msg); fail();} method in class:ModifyCorePoolSize
67 static void check(boolean cond) {if (cond) pass(); else fail();}
70 else fail(x + " not equal to " + y);}
H A DSelfInterrupt.java64 void fail() {failed++; Thread.dumpStack();} method in class:SelfInterrupt
65 void fail(String msg) {System.err.println(msg); fail();} method in class:SelfInterrupt
67 void check(boolean cond) {if (cond) pass(); else fail();}
70 else fail(x + " not equal to " + y);}
/openjdk7/jdk/test/java/util/concurrent/TimeUnit/
H A DBasic.java87 static void fail() {failed++; Thread.dumpStack();} method in class:Basic
88 static void fail(String msg) {System.out.println(msg); fail();} method in class:Basic
90 static void check(boolean cond) {if (cond) pass(); else fail();}
93 else fail(x + " not equal to " + y);}
/openjdk7/jdk/test/java/util/logging/
H A DLoggerSubclass.java86 void fail() {failed++; Thread.dumpStack();} method in class:LoggerSubclass
87 void fail(String msg) {System.err.println(msg); fail();} method in class:LoggerSubclass
89 void check(boolean cond) {if (cond) pass(); else fail();}
92 else fail(x + " not equal to " + y);}
/openjdk7/jdk/test/java/util/zip/
H A DConstructDeflaterInput.java39 fail("MyDeflater had end() called");
55 fail();
62 fail();
69 fail();
80 fail();
87 fail();
94 fail();
101 fail();
111 fail("Read of length 0 should return 0, but returned " + len);
116 fail();
164 static void fail() {failed++; Thread.dumpStack();} method in class:ConstructDeflaterInput
165 static void fail(String msg) {System.out.println(msg); fail();} method in class:ConstructDeflaterInput
[all...]
H A DConstructInflaterOutput.java39 fail("MyInflater had end() called");
54 fail();
61 fail();
68 fail();
79 fail();
86 fail();
93 fail();
100 fail();
115 fail();
121 fail();
140 static void fail() {failed++; Thread.dumpStack();} method in class:ConstructInflaterOutput
141 static void fail(String msg) {System.out.println(msg); fail();} method in class:ConstructInflaterOutput
[all...]
H A DDataDescriptor.java114 static void fail() {failed++; Thread.dumpStack();} method in class:DataDescriptor
115 static void fail(String msg) {System.out.println(msg); fail();} method in class:DataDescriptor
117 static void check(boolean cond) {if (cond) pass(); else fail();}
120 else fail(x + " not equal to " + y);}
H A DTotalInOut.java84 static void fail() {failed++; Thread.dumpStack();} method in class:TotalInOut
85 static void fail(String msg) {System.out.println(msg); fail();} method in class:TotalInOut
89 static boolean check(boolean cond) {if (cond) pass(); else fail(); return cond;}
92 else fail(x + " not equal to " + y);}
/openjdk7/jdk/test/java/util/zip/GZIP/
H A DReadUByte.java49 fail("Failed to throw expected IOException");
53 fail("IOException contains incorrect message: '" + msg + "'");
61 static void fail() {failed++; Thread.dumpStack();} method in class:ReadUByte
62 static void fail(String msg) {System.out.println(msg); fail();} method in class:ReadUByte
64 static void check(boolean cond) {if (cond) pass(); else fail();}
67 else fail(x + " not equal to " + y);}
/openjdk7/jdk/test/java/util/zip/ZipFile/
H A DManyZipFiles.java72 fail(tmpdir.getAbsolutePath()
78 fail("Couldn't create directory "
83 fail("Don't have write access for directory "
99 fail("Failed to open zip file #" + i + " named "
116 fail("At zip[" + i + "] named " + zips[i].getName()
128 static void fail() {failed++; Thread.dumpStack();} method in class:ManyZipFiles
129 static void fail(String msg) {System.out.println(msg); fail();} method in class:ManyZipFiles
131 static void check(boolean cond) {if (cond) pass(); else fail();}
134 else fail(
[all...]
H A DReadLongZipFileName.java44 int minRequiredLength = 600; // long enough to definitely fail.
71 fail("Jar file does not exist.");
87 fail("Read past expected EOF");
112 static void fail() {failed++; Thread.dumpStack();} method in class:ReadLongZipFileName
113 static void fail(String msg) {System.out.println(msg); fail();} method in class:ReadLongZipFileName
117 static void check(boolean cond) {if (cond) pass(); else fail();}
120 else fail(x + " not equal to " + y);}
/openjdk7/jdk/test/javax/management/Introspector/
H A DChangingNotifsTest.java81 fail(what + " has immutableInfo=" + immut + ", should be " +
89 fail(what + " notif info " +
99 private static void fail(String why) { method in class:ChangingNotifsTest
H A DInvokeGettersTest.java81 return fail("Set attribute was not got: " + got);
86 return fail("invoke setWhatsit worked but should not have");
90 return fail("invoke setWhatsit did not work but should have");
96 return fail("invoke getWhatsit worked but should not have");
98 return fail("Set attribute through invoke was not got: " + got);
102 return fail("invoke getWhatsit did not work but should have");
108 return fail("invoke isTrue worked but should not have");
110 return fail("isTrue returned false");
114 return fail("invoke isTrue did not work but should have");
119 // Following cases should fail whethe
149 private static boolean fail(String why) { method in class:InvokeGettersTest
[all...]
/openjdk7/jdk/test/javax/management/MBeanServer/
H A DAttributeListTypeSafeTest.java49 fail(what + ": succeeded but should not have");
63 fail(what + ": succeeded but should not have");
104 private static void fail(String why) { method in class:AttributeListTypeSafeTest
H A DPreDeregisterDeadlockTest.java62 fail(e.toString());
69 fail("Deadlock detected");
72 fail(e.toString());
102 fail("Nested unregister succeeded");
107 fail(e.toString());
147 fail("Second unregister thread did not complete");
155 private static void fail(String why) { method in class:PreDeregisterDeadlockTest
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftCubicResampler/
H A DInterpolate.java96 private static void fail(String error) throws Exception method in class:Interpolate
105 fail("Interpolation failed, error="+max);
108 fail("Interpolation failed, error="+max);
111 fail("Interpolation failed, error="+max);
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftLanczosResampler/
H A DInterpolate.java96 private static void fail(String error) throws Exception method in class:Interpolate
105 fail("Interpolation failed, error="+max);
108 fail("Interpolation failed, error="+max);
111 fail("Interpolation failed, error="+max);
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftLinearResampler/
H A DInterpolate.java96 private static void fail(String error) throws Exception method in class:Interpolate
105 fail("Interpolation failed, error="+max);
108 fail("Interpolation failed, error="+max);
111 fail("Interpolation failed, error="+max);
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftLinearResampler2/
H A DInterpolate.java96 private static void fail(String error) throws Exception method in class:Interpolate
105 fail("Interpolation failed, error="+max);
108 fail("Interpolation failed, error="+max);
111 fail("Interpolation failed, error="+max);
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftPointResampler/
H A DInterpolate.java96 private static void fail(String error) throws Exception method in class:Interpolate
105 fail("Interpolation failed, error="+max);
108 fail("Interpolation failed, error="+max);
111 fail("Interpolation failed, error="+max);
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftSincResampler/
H A DInterpolate.java96 private static void fail(String error) throws Exception method in class:Interpolate
105 fail("Interpolation failed, error="+max);
108 fail("Interpolation failed, error="+max);
111 fail("Interpolation failed, error="+max);
/openjdk7/jdk/test/javax/swing/JFileChooser/6798062/
H A Dbug6798062.java88 fail("Directory " + tempDir + " not found");
153 private static void fail(String msg) { method in class:bug6798062
/openjdk7/jdk/test/sun/net/www/protocol/http/6550798/
H A DTestCache.java62 public static volatile boolean fail = false; field in class:TestCache
107 TestCache.fail = true;
/openjdk7/jdk/test/sun/nio/cs/
H A DEucJpLinux0212.java68 static void fail() {failed++; Thread.dumpStack();} method in class:EucJpLinux0212
69 static void fail(String msg) {System.out.println(msg); fail();} method in class:EucJpLinux0212
71 static void check(boolean cond) {if (cond) pass(); else fail();}
74 else fail(x + " not equal to " + y);}

Completed in 109 milliseconds

1234567891011>>