pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2001-01-15
2001-01-15 18:53:24 by Martin Stjernholm <mast@lysator.liu.se>
e9ebb7fd84e6e27414cf704af91e9f2368e138fe (
12
lines) (+
11
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Fixed break label association bug.
Rev: src/docode.c:1.98
Rev: src/testsuite.in:1.370
1:
-
test_true([["$Id: testsuite.in,v 1.
369
2001/01/15
11
:
14
:
46
mirar
Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
370
2001/01/15
18
:
53
:
24
mast
Exp $"]]);
cond([[all_constants()->_verify_internals]], [[
4339:
} return i; ]], 0);
+
test_any([[
+
int i;
+
for (i = 1; i <= 4; i++)
+
foo: {
+
if (i > 5) break foo;
+
break;
+
}
+
return i;
+
]], 1);
test_any_equal([[ int a, b; foo: