pike.git
/
src
/
testsuite.in
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/testsuite.in:1:
START_MARKER
-
test_true([["$Id: testsuite.in,v 1.
763
2006/03/
02
10
:
53
:
14
grubba Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
764
2006/03/
04
15
:
02
:
49
grubba Exp $"]]);
// This triggered a bug only if run sufficiently early. test_compile_any([[#pike 7.2]]) test_compile_any([[#pike 7.4]]) test_compile_any([[#pike 7.0]]) test_compile_any([[#pike 0.6]]) cond([[all_constants()->_verify_internals]], [[ test_do(_verify_internals())
pike.git/src/testsuite.in:275:
test_any([[ // LysLysKOM 14180500 if (1) { string var = "Reinitialization error."; } sscanf("", "%d", int zero); return zero; ]], 0);
+
test_any([[
+
// LysLysKOM 14189033
+
int i;
+
for (i = 0; i < 4; i++) {
+
sscanf("", "%d", int test);
+
if (test) return test;
+
test = i+1;
+
}
+
return 0;
+
]], 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();