pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2008-06-29
2008-06-29 15:30:07 by Henrik Grubbström (Grubba) <grubba@grubba.org>
270a2ae44e47c1df1dcdd2c38b6a04bdce451c74 (
8
lines) (+
7
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Characters in strings are now signed.
Rev: src/testsuite.in:1.835
1:
START_MARKER
-
test_true([["$Id: testsuite.in,v 1.
834
2008/06/29
12
:
40
:
47
marcus
Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
835
2008/06/29
15
:
30
:
07
grubba
Exp $"]]);
// This triggered a bug only if run sufficiently early. test_compile_any([[#pike 7.2]])
10539:
]], sort(({0, "foo", "gnu"}))) test_equal([[
+
#pike 7.6
sort(({"\Uffffffff","\0", "", "\177", "\377", "\U7fffffff"})); ]], ({ "", "\0", "\177", "\377", "\U7fffffff", "\Uffffffff" }))
-
+
test_equal([[
+
sort(({"\Uffffffff","\0", "", "\177", "\377", "\U7fffffff"}));
+
]], ({ "", "\Uffffffff", "\0", "\177", "\377", "\U7fffffff" }))
+
// test large searches (find string, size, pattern) define(test_search,[[ test_eq(sprintf($1+"%'"+$3+"'*n",$2)[..strlen($1)-1],$1)