pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2006-01-27
2006-01-27 20:43:12 by Henrik Grubbström (Grubba) <grubba@grubba.org>
ecb50997935a16113af99efef2756d234f2144a5 (
7
lines) (+
6
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Added some tests of the versioned scope.
Rev: src/testsuite.in:1.760
1:
START_MARKER
-
test_true([["$Id: testsuite.in,v 1.
759
2005
/
12
/
06
14
:
08
:
20
grubba Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
760
2006
/
01
/
27
20
:
43
:
12
grubba Exp $"]]);
// This triggered a bug only if run sufficiently early. test_compile_any([[#pike 7.2]])
9360:
test_hash_7_0("",0) test_eval_error( return hash_7_0("foo",0) )
+
// Versioned scope.
+
test_eq(7.0::hash, hash_7_0)
+
test_eq(7.4::hash, hash_7_4)
+
// - indices test_equal(indices("foo"),({0,1,2})) test_equal(indices(({'f','o','o'})),({0,1,2}))