Home
last modified time | relevance | path

Searched refs:WRONG (Results 1 – 25 of 3145) sorted by relevance

12345678910>>...126

/dports/lang/mosml/mosml-ver-2.10.1/src/mosmllib/test/
H A Dfilesys.sml5 (* DOS: Plain WRONG: test6a, test9a (and test9b);
27 val test1b = (mkDir "testdir" seq "WRONG")
49 val test6a = (openDir "exists.not" seq "WRONG")
51 val test6b = (isDir "exists.not" seq "WRONG")
53 val test6c = (rmDir "exists.not" seq "WRONG")
55 val test6d = (chDir "exists.not" seq "WRONG")
69 val test6i = (remove "exists.not" seq "WRONG")
88 val test7c = (readDir dstr seq "WRONG")
90 val test7d = (rewindDir dstr seq "WRONG")
93 handle _ => "WRONG"
[all …]
H A Dfilesmac.sml22 (* DOS: Plain WRONG: test6a, test9a (and test9b);
45 val test1b = (mkDir "testdir" seq "WRONG")
81 handle _ => "WRONG,"
97 val test6b = (isDir "exists.not" seq "WRONG")
99 val test6c = (rmDir "exists.not" seq "WRONG")
101 val test6d = (chDir "exists.not" seq "WRONG")
111 val test6i = (remove "exists.not" seq "WRONG")
130 val test7c = (readDir dstr seq "WRONG")
132 val test7d = (rewindDir dstr seq "WRONG")
135 handle _ => "WRONG"
[all …]
H A Dmath.sml22 if opr(a1, a2) === r then "OK" else "WRONG"
30 val test1c = (sqrt ~1.0 seq "WRONG") handle Domain => "OK" | _ => "WRONG";
53 val test5d = (asin 1.1 seq "WRONG") handle Domain => "OK" | _ => "WRONG";
54 val test5e = (asin ~1.1 seq "WRONG") handle Domain => "OK" | _ => "WRONG";
59 val test6d = (acos 1.1 seq "WRONG") handle Domain => "OK" | _ => "WRONG";
60 val test6e = (acos ~1.1 seq "WRONG") handle Domain => "OK" | _ => "WRONG";
92 val test10d = (ln 0.0 seq "WRONG") handle Domain => "OK" | _ => "WRONG";
93 val test10e = (ln ~1.0 seq "WRONG") handle Domain => "OK" | _ => "WRONG";
105 val test12j = (pow(0.0, ~1.0) seq "WRONG")
107 val test12k = (pow(0.0, ~0.5) seq "WRONG")
[all …]
H A Dsubstring.sml68 val test2b = (triml ~1 seq "WRONG")
70 val test2c = (triml ~1 seq "WRONG")
84 val test3b = (trimr ~1 seq "WRONG")
86 val test3c = (trimr ~1 seq "WRONG")
120 (sub(ss1, 0) seq "WRONG") handle Subscript => "OK" | _ => "WRONG";
122 (sub(ss2, ~1) seq "WRONG") handle Subscript => "OK" | _ => "WRONG";
124 (sub(ss2, 10) seq "WRONG") handle Subscript => "OK" | _ => "WRONG";
126 (sub(ssa2, ~1) seq "WRONG") handle Subscript => "OK" | _ => "WRONG";
128 (sub(ssa2, 5) seq "WRONG") handle Subscript => "OK" | _ => "WRONG";
345 ((substring("", max, max); "WRONG")
[all …]
H A Dbytecmac.sml23 val test5 = (Char.chr ~1 seq "WRONG") handle Chr => "OK" | _ => "WRONG";
25 val test6 = (Char.chr (Char.maxOrd+1) seq "WRONG")
26 handle Chr => "OK" | _ => "WRONG";
45 handle Subscript => "OK" | _ => "WRONG";
47 handle Subscript => "OK" | _ => "WRONG";
49 handle Subscript => "OK" | _ => "WRONG";
51 handle Subscript => "OK" | _ => "WRONG";
177 val test34b = (pred minChar seq "WRONG")
178 handle Chr => "OK" | _ => "WRONG";
182 val test35b = (succ maxChar seq "WRONG")
[all …]
H A Dbytechar.sml21 val test5 = (Char.chr ~1 seq "WRONG") handle Chr => "OK" | _ => "WRONG";
23 val test6 = (Char.chr (Char.maxOrd+1) seq "WRONG")
24 handle Chr => "OK" | _ => "WRONG";
43 handle Subscript => "OK" | _ => "WRONG";
45 handle Subscript => "OK" | _ => "WRONG";
47 handle Subscript => "OK" | _ => "WRONG";
49 handle Subscript => "OK" | _ => "WRONG";
175 val test34b = (pred minChar seq "WRONG")
176 handle Chr => "OK" | _ => "WRONG";
180 val test35b = (succ maxChar seq "WRONG")
[all …]
H A Dword8array.sml35 val test4a = (tabulate(maxLen+1, i2w) seq "WRONG")
36 handle Size => "OK" | _ => "WRONG";
38 val test4b = (tabulate(~1, i2w) seq "WRONG")
39 handle Size => "OK" | _ => "WRONG";
47 val test6a = (c sub ~1 seq "WRONG") handle Subscript => "OK" | _ => "WRONG";
48 val test6b = (c sub 7 seq "WRONG") handle Subscript => "OK" | _ => "WRONG";
61 val test8a = (update(e, ~1, w127); "WRONG")
62 handle Subscript => "OK" | _ => "WRONG";
63 val test8b = (update(e, length e, w127); "WRONG")
64 handle Subscript => "OK" | _ => "WRONG";
[all …]
H A Dlist.sml16 val test3 = (hd [] seq "WRONG") handle Empty => "OK" | _ => "WRONG";
17 val test4 = (tl [] seq "WRONG") handle Empty => "OK" | _ => "WRONG";
18 val test5 = (last [] seq "WRONG") handle Empty => "OK" | _ => "WRONG";
22 val test7 = (nth(v123,~1) seq "WRONG") handle Subscript => "OK" | _ => "WRONG";
23 val test8 = (nth(v123,3) seq "WRONG") handle Subscript => "OK" | _ => "WRONG";
93 handle Size => "OK" | _ => "WRONG";
98 val test35b = (drop(v123, ~1) seq "WRONG")
99 handle Subscript => "OK" | _ => "WRONG";
100 val test35c = (drop(v123, 4) seq "WRONG")
106 val test36b = (take(v123, ~1) seq "WRONG")
[all …]
H A Dstringmac.sml16 val test3 = (sub(s1, 0) seq "WRONG") handle Subscript => "OK" | _ => "WRONG";
17 val test4 = (sub(s2, ~1) seq "WRONG") handle Subscript => "OK" | _ => "WRONG";
18 val test5 = (sub(s2, 10) seq "WRONG") handle Subscript => "OK" | _ => "WRONG";
59 val test11b = (extract(s2, ~1, SOME 0) seq "WRONG")
61 val test11c = (extract(s2, 11, SOME 0) seq "WRONG")
67 val test11f = (extract(s2, ~1, NONE) seq "WRONG")
69 val test11g = (extract(s2, 11, NONE) seq "WRONG")
84 val test12b = (substring(s2, ~1, 0) seq "WRONG")
86 val test12c = (substring(s2, 11, 0) seq "WRONG")
88 val test12d = (substring(s2, 0, 11) seq "WRONG")
[all …]
/dports/lang/mosml/mosml-ver-2.10.1/src/test/
H A Dtestmatc.sml21 val test1b = (f1 ([], [1]); "WRONG") handle Match => "OK" | _ => "WRONG"
22 val test1c = (f1 ([2], []); "WRONG") handle Match => "OK" | _ => "WRONG"
25 val test2b = (f1c [] [1]; "WRONG") handle Match => "OK" | _ => "WRONG"
26 val test2c = (f1c [2] []; "WRONG") handle Match => "OK" | _ => "WRONG"
39 val test3b = (f2 ([], [1]); "WRONG") handle Match => "OK" | _ => "WRONG"
43 val test4b = (f2c [] [1]; "WRONG") handle Match => "OK" | _ => "WRONG"
44 val test4c = (f2c [2] []; "WRONG") handle Match => "OK" | _ => "WRONG"
113 val test10b = (fi 100; "WRONG") handle Match => "OK" | _ => "WRONG"
114 val test10c = (fi 103; "WRONG") handle Match => "OK" | _ => "WRONG"
115 val test10d = (fi 105; "WRONG") handle Match => "OK" | _ => "WRONG"
[all …]
H A Dtestd.sml8 (~minint seq "WRONG") handle Overflow => "OK";
9 (abs minint seq "WRONG") handle Overflow => "OK";
10 (maxint+1 seq "WRONG") handle Overflow => "OK";
11 (minint-1 seq "WRONG") handle Overflow => "OK";
13 if maxint = 0x3fffffff then "OK" else "WRONG";
14 if maxint = 0x3FFFFFFF then "OK" else "WRONG";
15 if minint = ~0x40000000 then "OK" else "WRONG";
60 if floor 3.0 = 3 then "OK" else "WRONG";
61 if floor 3.14 = 3 then "OK" else "WRONG";
62 if floor ~3.0 = ~3 then "OK" else "WRONG";
[all …]
H A Dtestb.sml4 raise Io{function = "WRONG", name = "WRONG", cause = Fail "WRONG"}
6 handle Bind => "OK" | _ => "WRONG";
7 ((fn 0 => "WRONG") 1)
8 handle Match => "OK" | _ => "WRONG";
11 (raise Io{function = "WRONG", name = "WRONG", cause = Fail "WRONG"}))
15 raise Io{function = "WRONG", name = "WRONG", cause = Fail "WRONG"})
19 aaa = raise Io{function = "WRONG", name = "WRONG", cause = Fail "WRONG"}}
34 if f 4 = 12 then "OK" else "WRONG";
/dports/mail/cyrus-imapd30/cyrus-imapd-3.0.16/doc/internal/
H A Dhacking99 char* foo; /* WRONG */
108 if(condition) /* WRONG */
109 if( condition ) /* WRONG */
112 for(i = 0; i < x; i++) /* WRONG */
113 for (i = 0 ;i < x ;i++) /* WRONG */
114 for(i = 0 ;i < x ;i++) /* WRONG */
117 while(foo) /* WRONG */
118 while( foo ) /* WRONG */
125 int flags = FOO | BAR; /* WRONG */
127 if (itchy||scratchy) /* WRONG */
[all …]
/dports/mail/cyrus-imapd34/cyrus-imapd-3.4.2/doc/internal/
H A Dhacking99 char* foo; /* WRONG */
108 if(condition) /* WRONG */
109 if( condition ) /* WRONG */
112 for(i = 0; i < x; i++) /* WRONG */
113 for (i = 0 ;i < x ;i++) /* WRONG */
114 for(i = 0 ;i < x ;i++) /* WRONG */
117 while(foo) /* WRONG */
118 while( foo ) /* WRONG */
125 int flags = FOO | BAR; /* WRONG */
127 if (itchy||scratchy) /* WRONG */
[all …]
/dports/mail/cyrus-imapd34/cyrus-imapd-3.4.2/docsrc/imap/developer/guidance/
H A Dhacking.rst144 char* foo; /* WRONG */
155 if(condition) /* WRONG */
156 if( condition ) /* WRONG */
159 for(i = 0; i < x; i++) /* WRONG */
160 for (i = 0 ;i < x ;i++) /* WRONG */
161 for(i = 0 ;i < x ;i++) /* WRONG */
164 while(foo) /* WRONG */
165 while( foo ) /* WRONG */
174 int flags = FOO | BAR; /* WRONG */
176 if (itchy||scratchy) /* WRONG */
[all …]
/dports/mail/cyrus-imapd32/cyrus-imapd-3.2.8/doc/internal/
H A Dhacking99 char* foo; /* WRONG */
108 if(condition) /* WRONG */
109 if( condition ) /* WRONG */
112 for(i = 0; i < x; i++) /* WRONG */
113 for (i = 0 ;i < x ;i++) /* WRONG */
114 for(i = 0 ;i < x ;i++) /* WRONG */
117 while(foo) /* WRONG */
118 while( foo ) /* WRONG */
125 int flags = FOO | BAR; /* WRONG */
127 if (itchy||scratchy) /* WRONG */
[all …]
/dports/mail/cyrus-imapd32/cyrus-imapd-3.2.8/docsrc/imap/developer/guidance/
H A Dhacking.rst144 char* foo; /* WRONG */
155 if(condition) /* WRONG */
156 if( condition ) /* WRONG */
159 for(i = 0; i < x; i++) /* WRONG */
160 for (i = 0 ;i < x ;i++) /* WRONG */
161 for(i = 0 ;i < x ;i++) /* WRONG */
164 while(foo) /* WRONG */
165 while( foo ) /* WRONG */
174 int flags = FOO | BAR; /* WRONG */
176 if (itchy||scratchy) /* WRONG */
[all …]
/dports/textproc/rxp/rxp-1.4.4/
H A Dnf16check.c161 goto WRONG;
168 goto WRONG;
182 goto WRONG;
190 goto WRONG;
194 goto WRONG;
215 WRONG:
266 goto WRONG; in nf16checkL()
273 goto WRONG; in nf16checkL()
287 goto WRONG; in nf16checkL()
295 goto WRONG; in nf16checkL()
[all …]
/dports/textproc/ltxml/ltxml-1.2.9/RXP/src/
H A Dnf16check.c159 goto WRONG; in nf16check()
166 goto WRONG; in nf16check()
180 goto WRONG; in nf16check()
188 goto WRONG; in nf16check()
192 goto WRONG; in nf16check()
213 WRONG: in nf16check()
262 goto WRONG; in nf16checkL()
269 goto WRONG; in nf16checkL()
283 goto WRONG; in nf16checkL()
291 goto WRONG; in nf16checkL()
[all …]
/dports/sysutils/busybox/busybox-1.26.2/shell/ash_test/ash-misc/
H A Dcase1.tests1 case w in a) echo SKIP;; w) echo OK_1;; w) echo WRONG;; esac
7 echo WRONG
12 case $t in a) echo SKIP;; w) echo OK_21;; w) echo WRONG;; esac;
13 case "$t" in a) echo SKIP;; w) echo OK_22;; w) echo WRONG;; esac;
14 case w in a) echo SKIP;; $t) echo OK_23;; "$t") echo WRONG;; esac;
16 case '' in a) echo SKIP;; w) echo WRONG;; *) echo OK_31;; esac;
17 case '' in a) echo SKIP;; '') echo OK_32;; *) echo WRONG;; esac;
19 case `echo w` in a) echo SKIP;; w) echo OK_41;; w) echo WRONG;; esac;
20 case "`echo w`" in a) echo SKIP;; w) echo OK_42;; w) echo WRONG;; esac;
22 case `echo w w` in a) echo SKIP;; w) echo WRONG;; w*) echo OK_44;; esac;
[all …]
/dports/sysutils/busybox/busybox-1.26.2/shell/hush_test/hush-misc/
H A Dcase1.tests1 case w in a) echo SKIP;; w) echo OK_1;; w) echo WRONG;; esac
7 echo WRONG
12 case $t in a) echo SKIP;; w) echo OK_21;; w) echo WRONG;; esac;
13 case "$t" in a) echo SKIP;; w) echo OK_22;; w) echo WRONG;; esac;
14 case w in a) echo SKIP;; $t) echo OK_23;; "$t") echo WRONG;; esac;
16 case '' in a) echo SKIP;; w) echo WRONG;; *) echo OK_31;; esac;
17 case '' in a) echo SKIP;; '') echo OK_32;; *) echo WRONG;; esac;
19 case `echo w` in a) echo SKIP;; w) echo OK_41;; w) echo WRONG;; esac;
20 case "`echo w`" in a) echo SKIP;; w) echo OK_42;; w) echo WRONG;; esac;
22 case `echo w w` in a) echo SKIP;; w) echo WRONG;; w*) echo OK_44;; esac;
[all …]
/dports/lang/polyml/polyml-5.8.2/Tests/Succeed/
H A DTest014.ML3 if LargeWord.< (0w1, 0w2) then () else raise Fail "WRONG";
4 if LargeWord.< (0w1, 0wx80000002) then () else raise Fail "WRONG";
6 if LargeWord.> (0w1, 0w2) then raise Fail "WRONG" else ();
7 if LargeWord.> (0w1, 0wx80000002) then raise Fail "WRONG" else ();
9 if LargeWord.<= (0w1, 0w2) then () else raise Fail "WRONG";
10 if LargeWord.<= (0w1, 0wx80000002) then () else raise Fail "WRONG";
12 if LargeWord.>= (0w1, 0w2) then raise Fail "WRONG" else ();
13 if LargeWord.>= (0w1, 0wx80000002) then raise Fail "WRONG" else ();
17 | _ => raise Fail "WRONG";
/dports/converters/p5-Convert-Binary-C/Convert-Binary-C-0.84/tests/include/pdclib/functions/_tzcode/
H A D_PDCLIB_mktime_tzname.c19 #ifndef WRONG
20 #define WRONG (-1) macro
106 return WRONG; in time2sub()
111 return WRONG; in time2sub()
118 return WRONG; in time2sub()
126 return WRONG; in time2sub()
174 return WRONG; in time2sub()
179 return WRONG; in time2sub()
368 return WRONG; in time2sub()
376 return WRONG; in time2sub()
[all …]
/dports/net/tcptrace/tcptrace-508f73a/input/OUTPUTbench/
H A Dsingle_byte_rexmit.dmp.gz.packets17 CKSUM: 0xa944 (WRONG)
27 CKSUM: 0x44c5 (WRONG)
44 CKSUM: 0x5e40 (WRONG)
54 CKSUM: 0xa1aa (WRONG)
71 CKSUM: 0xa945 (WRONG)
81 CKSUM: 0x14a8 (WRONG)
97 CKSUM: 0xa81f (WRONG)
124 CKSUM: 0xa813 (WRONG)
151 CKSUM: 0x5dfa (WRONG)
161 CKSUM: 0xb967 (WRONG)
[all …]
/dports/math/gmp/gmp-6.2.1/tests/cxx/
H A Dt-istream.cc209 WRONG ("mpz operator>> wrong status"); in check_mpz()
216 WRONG ("mpz operator>> wrong result"); in check_mpz()
223 WRONG ("mpz operator>> wrong EOF state"); in check_mpz()
230 WRONG ("mpz operator>> wrong position"); in check_mpz()
378 WRONG ("mpq operator>> wrong status"); in check_mpq()
388 WRONG ("mpq operator>> wrong result"); in check_mpq()
395 WRONG ("mpq operator>> wrong EOF state"); in check_mpq()
402 WRONG ("mpq operator>> wrong position"); in check_mpq()
548 WRONG ("mpf operator>> wrong status"); in check_mpf()
555 WRONG ("mpf operator>> wrong result"); in check_mpf()
[all …]

12345678910>>...126