pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2009-05-02
2009-05-02 11:07:17 by Henrik Grubbström (Grubba) <grubba@grubba.org>
804552479fb69937d91c8472e58e3473a741bf1f (
7
lines) (+
6
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Added test for bug in END_AGGREGATE_ARRAY.
Rev: src/testsuite.in:1.870
1:
START_MARKER
-
test_true([["$Id: testsuite.in,v 1.
869
2009/
03
/
15
12:
11:
23
mast
Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
870
2009/
05
/
02
11:
07:17
grubba
Exp $"]]);
// This triggered a bug only if run sufficiently early. test_compile_any([[#pike 7.2]])
7819:
test_equal("foobargazonk"/"",({"f","o","o","b","a","r","g","a","z","o","n","k"})) test_equal(({1,0,1,2,1,2,2,2,1,1,1})/({2}),({ ({1,0,1}), ({1}), ({}), ({}), ({1,1,1}) })) test_equal(({1,2,3,4})/({}),({ ({1}), ({2}), ({3}), ({4}) }))
+
test_eq(sizeof(allocate(119)/({})), 119)
+
test_eq(sizeof(allocate(120)/({})), 120)
+
test_eq(sizeof(allocate(121)/({})), 121)
+
test_eq(sizeof(allocate(122)/({})), 122)
test_equal(({1,0,1,2,1,2,2,2,1,1,1})/({2,1}),({ ({1,0,1}), ({2,2}), ({1,1}) })) test_equal( ({1,2,3})/({2,3}), ({ ({1}), ({}) }) ) test_eq([[`/(20,2,2)]],5)