pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2003-01-29
2003-01-29 17:18:55 by Marcus Comstedt <marcus@mc.pp.se>
4ce36d4cd24eb8927e5f4e8d04e8aa7b894fd77d (
13
lines) (+
12
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
o/~ Don't be agressive, don't be a fool... o/~
Rev: src/testsuite.in:1.594
1:
-
test_true([["$Id: testsuite.in,v 1.
593
2003/01/29
13
:
42
:
41
marcus Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
594
2003/01/29
17
:
18
:
55
marcus Exp $"]]);
// This triggered a bug only if run sufficiently early. test_compile_any([[#pike 7.2]])
117:
return m->a; ]], 10000)
+
test_any([[
+
// Test that loop optimizer isn't too aggressive.
+
// Thanks to me. / Marcus
+
for(int i=0; i<3.0; i++)
+
if(i>4.0)
+
return -1;
+
return 0;
+
]], 0)
+
+
dnl FIXME: Add test that local and local:: in combination dnl with recursion works correctly.