pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2008-01-29
2008-01-29 20:47:29 by Henrik Grubbström (Grubba) <grubba@grubba.org>
f840e7304d6ba5ea9da5e0badd23309fb66541f7 (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
Oops, fixed typo.
Rev: src/testsuite.in:1.798
1:
START_MARKER
-
test_true([["$Id: testsuite.in,v 1.
797
2008/01/29
17
:
54
:
17
grubba Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
798
2008/01/29
20
:
47
:
29
grubba Exp $"]]);
// This triggered a bug only if run sufficiently early. test_compile_any([[#pike 7.2]])
1611:
test_any([[ int a,b; [ [a],b]=({ ({ 1 }) ,2}); return b]],2) test_any([[ int a; catch { [a]=({1,2}); return 0; }; return 1]],1) test_compile_error([[ int a,b; catch { [a,b]=({1}); return 0; }; return 1]],1)
-
test_any([[ int a,b; catch { [a,b]=lambda(){ return ({1}); }() return 0; }; return 1]],1)
+
test_any([[ int a,b; catch { [a,b]=lambda(){ return ({1}); }()
;
return 0; }; return 1]],1)
test_any([[ mapping m=([]); m[m]=m; return stringp(sprintf("%O",m)); ]],1) dnl test_any([[ dnl // don't know if this /should/ be valid /Mirar