pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2003-10-10
2003-10-10 01:20:14 by Martin Stjernholm <mast@lysator.liu.se>
86953a1063c7248ffc166b365a3519dfe820e93f (
15
lines) (+
14
/-
1
)
[
Show
|
Annotate
]
Branch:
7.4
Test a bug in the branch optimizer.
Rev: src/testsuite.in:1.593
1:
-
test_true([["$Id: testsuite.in,v 1.
592
2003/
09
/
11
19
:
23
:
54
mast Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
593
2003/
10
/
10
01
:
20
:
14
mast Exp $"]]);
// This triggered a bug only if run sufficiently early. test_compile_any([[#pike 7.2]])
136:
} ]])
+
test_compile_any([[
+
string foo (string a, string b, string c, string d, string e, string f, string g)
+
{
+
string out;
+
if (a)
+
out = "foo";
+
else
+
out = "bar";
+
return out;
+
}
+
]])
-
+
dnl FIXME: Add test that local and local:: in combination dnl with recursion works correctly.