pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2014-12-04
2014-12-04 19:23:33 by Martin Nilsson <nilsson@opera.com>
67238a8df997b6d42e6ab332e2b150d3e809a096 (
3
lines) (+
2
/-
1
)
[
Show
|
Annotate
]
Branch:
bill/master_archive_support
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)));