pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2002-02-28
2002-02-28 12:22:03 by Martin Stjernholm <mast@lysator.liu.se>
e80a29bd3b9c8093ed3c7ff5575b3be2ba9144bc (
11
lines) (+
10
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Added test case for bogus ?: error.
Rev: src/testsuite.in:1.485
1:
-
test_true([["$Id: testsuite.in,v 1.
484
2002/02/
26
18
:
18
:
15
mast Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
485
2002/02/
28
12
:
22
:
03
mast Exp $"]]);
cond([[all_constants()->_verify_internals]], [[
36:
test_eq(16, 0b10000); test_eq(-16, -0b10000);
+
test_do([[
+
int x;
+
if (time())
+
x = 1;
+
else
+
foo: break foo;
+
]])
+
test_any([[ int f (int i) {i = 0; return i;}; return f (1);