annotate tests/t08.good @ 136:59680a727e9d

Improve previous. Just in case we ever crash and reach cleanup() while processing an -include foo option, take the array entry for it out of the array to make sure it doesn't get freed twice. This case shouldn't be reachable, but it's better to be safe.
author David A. Holland
date Tue, 09 Jul 2013 13:38:43 -0400
parents da557b87be61
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
28
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2 int d =
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3 0
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4 ;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5 int e =
93
da557b87be61 this produces the correct answer now
David A. Holland
parents: 34
diff changeset
6 1
28
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7 ;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8 int f =
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
9 0
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
10 ;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
11 int
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
12 main()
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
13 {
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
14 int a, b, c;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
15 a = 2 > 1 ? 0 : 0 ? 1 : 1;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
16 b = (2 > 1 ? 0 : 0) ? 1 : 1;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
17 c = 2 > 1 ? 0 : (0 ? 1 : 1);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
18 printf("%d %d %d\n", a, b, c);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
19 printf("%d %d %d\n", d, e, f);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
20 return 0;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
21 }