pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2020-01-16
2020-01-16 12:40:21 by Henrik Grubbström (Grubba) <grubba@grubba.org>
a0dc0a8f69a0c6c79003bf4698713ad873d26ba3 (
3
lines) (+
2
/-
1
)
[
Show
|
Annotate
]
Branch:
master
Testsuite: Updated type test to new rendering.
865:
test_any([[return sprintf("%O", typeof(sprintf("%[1]n", 17))); ]], "string(zero)");
-
test_any([[return sprintf("%O", typeof(aggregate("foo")));]], "array(string(102..111))");
+
test_any([[return sprintf("%O", typeof(aggregate("foo")));]], "array(string(
3:
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)));