pike.git
/
src
/
testsuite.in
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/testsuite.in:1:
-
test_true([["$Id: testsuite.in,v 1.
581
2003/02/
24
21
:
53
:
30
mast
Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
582
2003/02/
25
15
:
52
:
45
marcus
Exp $"]]);
// This triggered a bug only if run sufficiently early. test_compile_any([[#pike 7.2]]) cond([[all_constants()->_verify_internals]], [[ test_do(_verify_internals()) ]]); test_eq(1e1,10.0); test_eq(1E1,10.0);
pike.git/src/testsuite.in:119:
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)
+
test_compile_any([[
+
void foo()
+
{
+
Stdio.File bar(int x, int y)
+
{
+
return 0;
+
};
+
}
+
]])
-
+
dnl FIXME: Add test that local and local:: in combination dnl with recursion works correctly. test_eval_error([[mixed x; return mkmapping(x,x)]]); test_eval_error([[class Foo { void bar() {} void foo() {destruct(this_object());bar();} }; Foo()->foo();