pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2013-06-02
2013-06-02 22:44:10 by Martin Nilsson <nilsson@opera.com>
b34726c2f6c26861ba8790b662c56312a1b3e6ae (
3
lines) (+
2
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
We now have stronger constant string types. Updated test result.
509:
test_any([[ int a=0xffffffff; return a>>17 ]], [[ (0xffffffff == -1)?-1:0x7fff ]]);
-
test_any([[return sprintf("%O", typeof(aggregate("foo")));]], "array(string(
0
..
255
))");
+
test_any([[return sprintf("%O", typeof(aggregate("foo")));]], "array(string(
102
..
111
))");
test_any([[int a; return sprintf("%O", typeof(aggregate(a)));]], "array(int)"); test_any([[int|string a; string s = sprintf("%O", typeof(aggregate(a)));