1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
|
# regression tests for the iffe command
TEST 01 'command line basics'
EXEC -r -v - hdr stdio
OUTPUT - $'/* : : generated by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _hdr_stdio 1 /* #include <stdio.h> ok */
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is stdio.h a header ... yes'
EXEC -r -v -s bsh - hdr stdio
EXEC -r -v - hdr stdio,limits
OUTPUT - $'/* : : generated by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _hdr_stdio 1 /* #include <stdio.h> ok */
#define _hdr_limits 1 /* #include <limits.h> ok */
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is stdio.h a header ... yes
iffe: test: is limits.h a header ... yes'
EXEC -r -v -s bsh - hdr stdio,limits
EXEC -r -v - hdr,lib no_foo_bar,no_bar_foo stdio.h
OUTPUT - $'/* : : generated by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _hdr_stdio 1 /* #include <stdio.h> ok */
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is stdio.h a header ... yes
iffe: test: is no_foo_bar.h a header ... no
iffe: test: is no_bar_foo.h a header ... no
iffe: test: is no_foo_bar a library function ... no
iffe: test: is no_bar_foo a library function ... no'
EXEC -r -v -s bsh - hdr,lib no_foo_bar,no_bar_foo stdio.h
EXEC -r -v - hdr no_foo_bar,no_bar_foo stdio.h : lib no_foo_bar,no_bar_foo stdio.h
EXEC -r -v -s bsh - hdr no_foo_bar,no_bar_foo stdio.h : lib no_foo_bar,no_bar_foo stdio.h
TEST 02 'file input basics'
EXEC -r -v - t1.iffe
INPUT t1.iffe $'hdr stdio'
OUTPUT - $'/* : : generated from t1.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _hdr_stdio 1 /* #include <stdio.h> ok */
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is stdio.h a header ... yes'
EXEC -r -v -s bsh - t1.iffe
EXEC -r -v - t2.iffe
INPUT t2.iffe $'hdr stdio,limits'
OUTPUT - $'/* : : generated from t2.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _hdr_stdio 1 /* #include <stdio.h> ok */
#define _hdr_limits 1 /* #include <limits.h> ok */
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is stdio.h a header ... yes
iffe: test: is limits.h a header ... yes'
EXEC -r -v -s bsh - t2.iffe
EXEC -r -v - t3.iffe
INPUT t3.iffe $'hdr,lib no_foo_bar,no_bar_foo stdio.h'
OUTPUT - $'/* : : generated from t3.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _hdr_stdio 1 /* #include <stdio.h> ok */
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is stdio.h a header ... yes
iffe: test: is no_foo_bar.h a header ... no
iffe: test: is no_bar_foo.h a header ... no
iffe: test: is no_foo_bar a library function ... no
iffe: test: is no_bar_foo a library function ... no'
EXEC -r -v -s bsh - t3.iffe
EXEC -r -v - t3.iffe
INPUT t3.iffe $'hdr no_foo_bar,no_bar_foo stdio.h
lib no_foo_bar,no_bar_foo stdio.h'
EXEC -r -v -s bsh - t3.iffe
TEST 03 'nested if'
EXEC -r -v - t.iffe
INPUT t.iffe $'iff ifelse
if hdr stdio
if lib open {
HIT 1
}
elif lib close {
HIT 2
}
else {
HIT 3
}
endif
elif hdr limits {
HIT 4
}
else {
HIT 5
}
endif'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _ifelse_H
#define _ifelse_H 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _hdr_stdio 1 /* #include <stdio.h> ok */
#define _lib_open 1 /* open() in default lib(s) */
HIT 1
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is stdio.h a header ... yes
iffe: test: is open a library function ... yes'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff ifelse
if hdr _XXX_stdio
if lib open {
HIT 1
}
elif lib close {
HIT 2
}
else {
HIT 3
}
endif
elif hdr limits {
HIT 4
}
else {
HIT 5
}
endif'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _ifelse_H
#define _ifelse_H 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _hdr_limits 1 /* #include <limits.h> ok */
HIT 4
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is _XXX_stdio.h a header ... no
iffe: test: is limits.h a header ... yes'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff ifelse
if hdr _XXX_stdio
if lib open {
HIT 1
}
elif lib close {
HIT 2
}
else {
HIT 3
}
endif
elif hdr _XXX_limits {
HIT 4
}
else {
HIT 5
}
endif'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _ifelse_H
#define _ifelse_H 1
#define _sys_types 1 /* #include <sys/types.h> ok */
HIT 5
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is _XXX_stdio.h a header ... no
iffe: test: is _XXX_limits.h a header ... no'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff ifelse
if hdr stdio
if lib _XXX_open {
HIT 1
}
elif lib close {
HIT 2
}
else {
HIT 3
}
endif
elif hdr limits {
HIT 4
}
else {
HIT 5
}
endif'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _ifelse_H
#define _ifelse_H 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _hdr_stdio 1 /* #include <stdio.h> ok */
#define _lib_close 1 /* close() in default lib(s) */
HIT 2
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is stdio.h a header ... yes
iffe: test: is _XXX_open a library function ... no
iffe: test: is close a library function ... yes'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff ifelse
if hdr stdio
if lib _XXX_open {
HIT 1
}
elif lib _XXX_close {
HIT 2
}
else {
HIT 3
}
endif
elif hdr limits {
HIT 4
}
else {
HIT 5
}
endif'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _ifelse_H
#define _ifelse_H 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _hdr_stdio 1 /* #include <stdio.h> ok */
HIT 3
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is stdio.h a header ... yes
iffe: test: is _XXX_open a library function ... no
iffe: test: is _XXX_close a library function ... no'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff ifelse
if mem stat.st_atime sys/types.h sys/stat.h {
#define ATIME 1
}
elif mem stat.st_ctime sys/types.h sys/stat.h {
#define CTIME 1
}
elif mem stat.st_mtime sys/types.h sys/stat.h {
#define MTIME 1
}
else pass{ no_stat_time=1 }end {
#define NOTIME 1
}
endif
if ( !no_stat_time ) {
#define YESTIME 1
}
endif'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _ifelse_H
#define _ifelse_H 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _sys_stat 1 /* #include <sys/stat.h> ok */
#define _mem_st_atime_stat 1 /* st_atime is a member of struct stat */
#define ATIME 1
#define YESTIME 1
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is sys/stat.h a header ... yes
iffe: test: is stat a type or typedef ... no
iffe: test: is st_atime a member of struct stat ... yes
iffe: test: is ( !no_stat_time ) true ... yes'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff ifelse
if mem foo_stat.st_atime sys/types.h sys/stat.h {
#define ATIME 1
}
elif mem stat.st_ctime sys/types.h sys/stat.h {
#define CTIME 1
}
elif mem stat.st_mtime sys/types.h sys/stat.h {
#define MTIME 1
}
else pass{ no_stat_time=1 }end {
#define NOTIME 1
}
endif
if ( !no_stat_time ) {
#define YESTIME 1
}
endif'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _ifelse_H
#define _ifelse_H 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _sys_stat 1 /* #include <sys/stat.h> ok */
#define _mem_st_ctime_stat 1 /* st_ctime is a member of struct stat */
#define CTIME 1
#define YESTIME 1
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is sys/stat.h a header ... yes
iffe: test: is foo_stat a type or typedef ... no
iffe: test: is st_atime a member of struct foo_stat ... no
iffe: test: is stat a type or typedef ... no
iffe: test: is st_ctime a member of struct stat ... yes
iffe: test: is ( !no_stat_time ) true ... yes'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff ifelse
if mem foo_stat.st_atime sys/types.h sys/stat.h {
#define ATIME 1
}
elif mem foo_stat.st_ctime sys/types.h sys/stat.h {
#define CTIME 1
}
elif mem stat.st_mtime sys/types.h sys/stat.h {
#define MTIME 1
}
else pass{ no_stat_time=1 }end {
#define NOTIME 1
}
endif
if ( !no_stat_time ) {
#define YESTIME 1
}
endif'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _ifelse_H
#define _ifelse_H 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _sys_stat 1 /* #include <sys/stat.h> ok */
#define _mem_st_mtime_stat 1 /* st_mtime is a member of struct stat */
#define MTIME 1
#define YESTIME 1
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is sys/stat.h a header ... yes
iffe: test: is foo_stat a type or typedef ... no
iffe: test: is st_atime a member of struct foo_stat ... no
iffe: test: is st_ctime a member of struct foo_stat ... no
iffe: test: is stat a type or typedef ... no
iffe: test: is st_mtime a member of struct stat ... yes
iffe: test: is ( !no_stat_time ) true ... yes'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff ifelse
if mem foo_stat.st_atime sys/types.h sys/stat.h {
#define ATIME 1
}
elif mem foo_stat.st_ctime sys/types.h sys/stat.h {
#define CTIME 1
}
elif mem foo_stat.st_mtime sys/types.h sys/stat.h {
#define MTIME 1
}
else pass{ no_stat_time=1 }end {
#define NOTIME 1
}
endif
if ( !no_stat_time ) {
#define YESTIME 1
}
endif'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _ifelse_H
#define _ifelse_H 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _sys_stat 1 /* #include <sys/stat.h> ok */
#define NOTIME 1
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is sys/stat.h a header ... yes
iffe: test: is foo_stat a type or typedef ... no
iffe: test: is st_atime a member of struct foo_stat ... no
iffe: test: is st_ctime a member of struct foo_stat ... no
iffe: test: is st_mtime a member of struct foo_stat ... no
iffe: test: is ( !no_stat_time ) true ... no'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'set explicit
iff previous
hdr stdio
if hdr stdio {
OK
}
else {
OK
}
endif'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _previous_H
#define _previous_H 1
#define _hdr_stdio 1 /* #include <stdio.h> ok */
OK
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is stdio.h a header ... yes'
EXEC -r -v -s bsh - t.iffe
TEST 04 'test variable/macro override'
EXEC -r -v - t.iffe
INPUT t.iffe $'iff macro
HAVE_STDIO = hdr stdio'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _macro_H
#define _macro_H 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define HAVE_STDIO 1 /* #include <stdio.h> ok */
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is stdio.h a header ... yes'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff macro
if hdr - stdio {
#define HIT 1
}
endif'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _macro_H
#define _macro_H 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define HIT 1
#endif'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff macro
if - hdr stdio {
#define HIT 1
}
endif'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff macro
if ? hdr stdio {
#define HIT 1
}
endif'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff macro
if hdr - stdio {
#define HIT 1
}
endif'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff macro
if HAVE_STDIO = hdr stdio {
#define HIT 1
}
endif
if ( HAVE_STDIO ) {
#define TOO ALSO
}
endif'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _macro_H
#define _macro_H 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define HAVE_STDIO 1 /* #include <stdio.h> ok */
#define HIT 1
#define TOO ALSO
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is stdio.h a header ... yes
iffe: test: is ( HAVE_STDIO ) true ... yes'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff macro
if HAVE_STDIO = hdr stdio {
#define HIT 1
}
endif
exp ALSO HAVE_STDIO'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _macro_H
#define _macro_H 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define HAVE_STDIO 1 /* #include <stdio.h> ok */
#define HIT 1
#define ALSO 1 /* HAVE_STDIO is true */
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is stdio.h a header ... yes
iffe: test: is HAVE_STDIO true ... yes'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff macro
if HAVE_STDIO = hdr stdio {
#define HIT 1
}
endif
ALSO = ( HAVE_STDIO )'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _macro_H
#define _macro_H 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define HAVE_STDIO 1 /* #include <stdio.h> ok */
#define HIT 1
#define ALSO 1 /* ( HAVE_STDIO ) is true */
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is stdio.h a header ... yes
iffe: test: is ( HAVE_STDIO ) true ... yes'
EXEC -r -v -s bsh - t.iffe
TEST 05 'test code option sequence'
EXEC -r -v - t.iffe
INPUT t.iffe $'iff macro
tst seq - -DA=1 - -DB=1 note{ long int type }end compile{
#if A == 1 && B == 0
#define t long
#else
#define t error
#endif
t n = 0;
}end'
OUTPUT - '/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _macro_H
#define _macro_H 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _seq 1 /* long int type */
#endif'
ERROR - 'iffe: test: is sys/types.h a header ... yes
iffe: test: long int type ... yes'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff macro
tst seq -DG=1 - -DN=1 - -DN=2 note{ long int type }end compile{
#if G == 1 && N == 1
#define t long
#else
#define t error
#endif
t n = 0;
}end'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff macro
tst seq - -DA=1 - -DB=1 note{ long int type }end compile{
#if A == 0 && B == 1
#define t long
#else
#define t error
#endif
t n = 0;
}end'
ERROR - 'iffe: test: is sys/types.h a header ... yes
iffe: test: long int type ...
iffe: test: long int type ... yes'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff macro
tst seq -DG=1 - -DN=1 - -DN=2 note{ long int type }end compile{
#if G == 1 && N == 2
#define t long
#else
#define t error
#endif
t n = 0;
}end'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff macro
tst seq - -DA=1 - -DB=1 note{ long int type }end compile{
#if A == 0 && B == 0
#define t long
#else
#define t error
#endif
t n = 0;
}end'
OUTPUT - '/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _macro_H
#define _macro_H 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#endif'
ERROR - 'iffe: test: is sys/types.h a header ... yes
iffe: test: long int type ...
iffe: test: long int type ... no'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff macro
tst seq -DG=1 - -DN=1 - -DN=2 note{ long int type }end compile{
#if G == 1 && N == 0
#define t long
#else
#define t error
#endif
t n = 0;
}end'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff macro
if tst - -DA=1 - -DB=1 note{ long int type }end compile{
#if A == 1 && B == 0
#define t long
#else
#define t error
#endif
t n = 0;
}end {
#define seq 1
}
endif'
OUTPUT - '/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _macro_H
#define _macro_H 1
#define _sys_types 1 /* #include <sys/types.h> ok */
/* long int type */
#define seq 1
#endif'
ERROR - 'iffe: test: is sys/types.h a header ... yes
iffe: test: long int type ... yes'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff macro
if tst -DG=1 - -DN=1 - -DN=2 note{ long int type }end compile{
#if G == 1 && N == 1
#define t long
#else
#define t error
#endif
t n = 0;
}end {
#define seq 1
}
endif'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff macro
if tst - -DA=1 - -DB=1 note{ long int type }end compile{
#if A == 0 && B == 1
#define t long
#else
#define t error
#endif
t n = 0;
}end {
#define seq 1
}
endif'
ERROR - 'iffe: test: is sys/types.h a header ... yes
iffe: test: long int type ...
iffe: test: long int type ... yes'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff macro
if tst -DG=1 - -DN=1 - -DN=2 note{ long int type }end compile{
#if G == 1 && N == 2
#define t long
#else
#define t error
#endif
t n = 0;
}end {
#define seq 1
}
endif'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff macro
if tst - -DA=1 - -DB=1 note{ long int type }end compile{
#if A == 0 && B == 0
#define t long
#else
#define t error
#endif
t n = 0;
}end {
#define seq 1
}
endif'
OUTPUT - '/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _macro_H
#define _macro_H 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#endif'
ERROR - 'iffe: test: is sys/types.h a header ... yes
iffe: test: long int type ...
iffe: test: long int type ... no'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff macro
if tst -DG=1 - -DN=1 - -DN=2 note{ long int type }end compile{
#if G == 1 && N == 0
#define t long
#else
#define t error
#endif
t n = 0;
}end {
#define seq 1
}
endif'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff macro
if tst - -DN=1 - -DN=2 - -DN=3 note{ long int type }end compile{
#if N == 1
#define t long
#else
#define t error
#endif
t n = 0;
}end {
#define seq 1
}
endif'
OUTPUT - '/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _macro_H
#define _macro_H 1
#define _sys_types 1 /* #include <sys/types.h> ok */
/* long int type */
#define seq 1
#endif'
ERROR - 'iffe: test: is sys/types.h a header ... yes
iffe: test: long int type ... yes'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff macro
if tst - -DN=1 - -DN=2 - -DN=3 note{ long int type }end compile{
#if N == 2
#define t long
#else
#define t error
#endif
t n = 0;
}end {
#define seq 1
}
endif'
ERROR - 'iffe: test: is sys/types.h a header ... yes
iffe: test: long int type ...
iffe: test: long int type ... yes'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff macro
if tst - -DN=1 - -DN=2 - -DN=3 note{ long int type }end compile{
#if N == 3
#define t long
#else
#define t error
#endif
t n = 0;
}end {
#define seq 1
}
endif'
ERROR - 'iffe: test: is sys/types.h a header ... yes
iffe: test: long int type ...
iffe: test: long int type ...
iffe: test: long int type ... yes'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v - t.iffe
INPUT t.iffe $'iff macro
if tst - -DN=1 - -DN=2 - -DN=3 note{ long int type }end compile{
#if N == 0
#define t long
#else
#define t error
#endif
t n = 0;
}end {
#define seq 1
}
endif'
OUTPUT - '/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _macro_H
#define _macro_H 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#endif'
ERROR - 'iffe: test: is sys/types.h a header ... yes
iffe: test: long int type ...
iffe: test: long int type ...
iffe: test: long int type ... no'
EXEC -r -v -s bsh - t.iffe
TEST 06 'block side effects'
EXEC -r - t.iffe
INPUT t.iffe $'iff -
tst output{
int
main()
{
printf("HIT\\n");
return 0;
}
}end'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#define _sys_types 1 /* #include <sys/types.h> ok */
HIT'
EXEC -r -s bsh - t.iffe
EXEC -r - t.iffe
INPUT t.iffe $'iff
tst - output{
int
main()
{
printf("HIT\\n");
return 0;
}
}end'
EXEC -r -s bsh - t.iffe
EXEC -r - t.iffe
INPUT t.iffe $'iff
tst - output{
int
main()
{
printf("HIT\\n");
return 1;
}
}end'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#define _sys_types 1 /* #include <sys/types.h> ok */'
EXEC -r -s bsh - t.iffe
EXEC -r - t.iffe
INPUT t.iffe $'iff
tst - nooutput{
int
main()
{
printf("HIT\\n");
return 1;
}
}end'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#define _sys_types 1 /* #include <sys/types.h> ok */
HIT'
EXEC -r -s bsh - t.iffe
TEST 07 'diagnostics'
EXEC -r - t.iffe
INPUT t.iffe $'tst foo'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#endif'
ERROR - $'iffe: t.iffe:1: tst: unknown feature test'
EXIT 1
EXEC -r -s bsh - t.iffe
EXEC -r - t.iffe
INPUT t.iffe $'if (1)'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */'
ERROR - $'iffe: t.iffe:1: missing endif'
EXIT 1
EXEC -r -s bsh - t.iffe
EXEC -r - t.iffe
INPUT t.iffe $'if'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */'
ERROR - $'iffe: t.iffe:1: missing endif'
EXEC -r -s bsh - t.iffe
EXEC -r - t.iffe
INPUT t.iffe $'endif'
ERROR - $'iffe: t.iffe:1: endif: no matching if'
EXEC -r -s bsh - t.iffe
EXEC -r - t.iffe
INPUT t.iffe $'if {
}end'
ERROR - $'iffe: t.iffe:2: missing }'
EXEC -r -s bsh - t.iffe
TEST 08 'negation consternation'
EXEC -r - t.iffe
INPUT t.iffe $'npt fopen,fooon stdio.h'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _hdr_stdlib 1 /* #include <stdlib.h> ok */
#define _hdr_unistd 1 /* #include <unistd.h> ok */
#define _hdr_stdio 1 /* #include <stdio.h> ok */
#define _npt_fooon 1 /* fooon() needs a prototype */
#endif'
EXEC -r -u - t.iffe
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _hdr_stdlib 1 /* #include <stdlib.h> ok */
#define _hdr_unistd 1 /* #include <unistd.h> ok */
#define _hdr_stdio 1 /* #include <stdio.h> ok */
#undef _npt_fopen /* fopen() does not need a prototype */
#define _npt_fooon 1 /* fooon() needs a prototype */
#endif'
EXEC -r -a - t.iffe
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _hdr_stdlib 1 /* #include <stdlib.h> ok */
#define _hdr_unistd 1 /* #include <unistd.h> ok */
#define _hdr_stdio 1 /* #include <stdio.h> ok */
#define _npt_fopen 0 /* fopen() does not need a prototype */
#define _npt_fooon 1 /* fooon() needs a prototype */
#endif'
EXEC -r -C - t.iffe
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define HAVE_SYS_TYPES_H 1 /* #include <sys/types.h> ok */
#define HAVE_STDLIB_H 1 /* #include <stdlib.h> ok */
#define HAVE_UNISTD_H 1 /* #include <unistd.h> ok */
#define HAVE_STDIO_H 1 /* #include <stdio.h> ok */
#define HAVE_FOPEN_DECL 1 /* fopen() does not need a prototype */
#undef HAVE_FOOON_DECL /* fooon() needs a prototype */
#endif'
EXEC -r - t.iffe
INPUT t.iffe $'NEED_FOPEN = npt fopen stdio.h
HAVE_FOPEN = ! npt fopen stdio.h
NEED_FOOON = npt fooon stdio.h
HAVE_FOOON = ! npt fooon stdio.h'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _hdr_stdlib 1 /* #include <stdlib.h> ok */
#define _hdr_unistd 1 /* #include <unistd.h> ok */
#define _hdr_stdio 1 /* #include <stdio.h> ok */
#define HAVE_FOPEN 1 /* fopen() does not need a prototype */
#define NEED_FOOON 1 /* fooon() needs a prototype */
#endif'
EXEC -r -u - t.iffe
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _hdr_stdlib 1 /* #include <stdlib.h> ok */
#define _hdr_unistd 1 /* #include <unistd.h> ok */
#define _hdr_stdio 1 /* #include <stdio.h> ok */
#undef NEED_FOPEN /* fopen() does not need a prototype */
#define HAVE_FOPEN 1 /* fopen() does not need a prototype */
#define NEED_FOOON 1 /* fooon() needs a prototype */
#undef HAVE_FOOON /* fooon() needs a prototype */
#endif'
EXEC -r -C - t.iffe
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define HAVE_SYS_TYPES_H 1 /* #include <sys/types.h> ok */
#define HAVE_STDLIB_H 1 /* #include <stdlib.h> ok */
#define HAVE_UNISTD_H 1 /* #include <unistd.h> ok */
#define HAVE_STDIO_H 1 /* #include <stdio.h> ok */
#undef NEED_FOPEN /* fopen() does not need a prototype */
#define HAVE_FOPEN 1 /* fopen() does not need a prototype */
#define NEED_FOOON 1 /* fooon() needs a prototype */
#undef HAVE_FOOON /* fooon() needs a prototype */
#endif'
TEST 09 'exp vs. if'
EXEC -r - t.iffe
INPUT t.iffe $'_tst_false = ( 0 )
_tst_true = ( 1 )
exp _tst_hit !_tst_false {
ONE
}
exp _tst_hit !_tst_hit&_tst_true pass{
cat <<!
TWO $_tst_false $_tst_true
!
}end
exp _tst_hit !_tst_hit&_tst_true {
THREE
}'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _tst_true 1 /* ( 1 ) is true */
#define _tst_hit 1 /* !_tst_false is true */
/* !_tst_false */
ONE
#endif'
EXEC -r -s bsh - t.iffe
EXEC -r - t.iffe
INPUT t.iffe $'_tst_false = ( 0 )
_tst_true = ( 1 )
exp _tst_hit !_tst_true {
ONE
}
exp _tst_hit !_tst_hit&_tst_true pass{
cat <<!
TWO $_tst_false $_tst_true
!
}end
exp _tst_hit !_tst_hit&_tst_true {
THREE
}'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _tst_true 1 /* ( 1 ) is true */
#define _tst_hit 1 /* !_tst_hit&_tst_true is true */
TWO 0 1
#endif'
EXEC -r -s bsh - t.iffe
EXEC -r - t.iffe
INPUT t.iffe $'_tst_false = ( 0 )
_tst_true = ( 1 )
exp _tst_hit !_tst_true {
ONE
}
exp _tst_hit !_tst_hit&_tst_false pass{
cat <<!
TWO $_tst_false $_tst_true
!
}end
exp _tst_hit !_tst_hit&_tst_true {
THREE
}'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _tst_true 1 /* ( 1 ) is true */
#define _tst_hit 1 /* !_tst_hit&_tst_true is true */
/* !_tst_hit&_tst_true */
THREE
#endif'
EXEC -r -s bsh - t.iffe
EXEC -r - t.iffe
INPUT t.iffe $'_tst_false = ( 0 )
_tst_true = ( 1 )
exp _tst_hit !_tst_true {
ONE
}
exp _tst_hit !_tst_hit&_tst_false pass{
cat <<!
TWO $_tst_false $_tst_true
!
}end
exp _tst_hit !_tst_hit&_tst_false {
THREE
}'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _tst_true 1 /* ( 1 ) is true */
#endif'
EXEC -r -s bsh - t.iffe
EXEC -r - t.iffe
INPUT t.iffe $'_tst_false = ( 0 )
_tst_true = ( 1 )
exp _tst_hit !_tst_false {
ONE
}
exp _tst_hit !_tst_hit&&_tst_true pass{
cat <<!
TWO $_tst_false $_tst_true
!
}end
exp _tst_hit !_tst_hit&&_tst_true {
THREE
}'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _tst_true 1 /* ( 1 ) is true */
#define _tst_hit 1 /* !_tst_false is true */
/* !_tst_false */
ONE
#endif'
EXEC -r -s bsh - t.iffe
EXEC -r - t.iffe
INPUT t.iffe $'_tst_false = ( 0 )
_tst_true = ( 1 )
exp _tst_hit !_tst_true {
ONE
}
exp _tst_hit !_tst_hit&&_tst_true pass{
cat <<!
TWO $_tst_false $_tst_true
!
}end
exp _tst_hit !_tst_hit&&_tst_true {
THREE
}'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _tst_true 1 /* ( 1 ) is true */
#define _tst_hit 1 /* !_tst_hit&&_tst_true is true */
TWO 0 1
#endif'
EXEC -r -s bsh - t.iffe
EXEC -r - t.iffe
INPUT t.iffe $'_tst_false = ( 0 )
_tst_true = ( 1 )
exp _tst_hit !_tst_true {
ONE
}
exp _tst_hit !_tst_hit&&_tst_false pass{
cat <<!
TWO $_tst_false $_tst_true
!
}end
exp _tst_hit !_tst_hit&&_tst_true {
THREE
}'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _tst_true 1 /* ( 1 ) is true */
#define _tst_hit 1 /* !_tst_hit&&_tst_true is true */
/* !_tst_hit&&_tst_true */
THREE
#endif'
EXEC -r -s bsh - t.iffe
EXEC -r - t.iffe
INPUT t.iffe $'_tst_false = ( 0 )
_tst_true = ( 1 )
exp _tst_hit !_tst_true {
ONE
}
exp _tst_hit !_tst_hit&&_tst_false pass{
cat <<!
TWO $_tst_false $_tst_true
!
}end
exp _tst_hit !_tst_hit&&_tst_false {
THREE
}'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _tst_true 1 /* ( 1 ) is true */
#endif'
EXEC -r -s bsh - t.iffe
EXEC -r - t.iffe
INPUT t.iffe $'_tst_false = ( 0 )
_tst_true = ( 1 )
if ( ! _tst_false ) {
ONE
}
elif ( _tst_true ) pass{
cat <<!
TWO
!
}end
else {
THREE
}
endif'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _tst_true 1 /* ( 1 ) is true */
ONE
#endif'
EXEC -r -s bsh - t.iffe
EXEC -r - t.iffe
INPUT t.iffe $'_tst_false = ( 0 )
_tst_true = ( 1 )
if ( ! _tst_true ) {
ONE
}
elif ( _tst_true ) pass{
cat <<!
TWO
!
}end
else {
THREE
}
endif'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _tst_true 1 /* ( 1 ) is true */
TWO
#endif'
EXEC -r -s bsh - t.iffe
EXEC -r - t.iffe
INPUT t.iffe $'_tst_false = ( 0 )
_tst_true = ( 1 )
if ( ! _tst_true ) {
ONE
}
elif ( _tst_false ) pass{
cat <<!
TWO
!
}end
else {
THREE
}
endif'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _tst_true 1 /* ( 1 ) is true */
THREE
#endif'
EXEC -r -s bsh - t.iffe
EXEC -r - t.iffe
INPUT t.iffe $'_tst_false = ( 0 )
_tst_true = ( 1 )
if ( ! _tst_true ) yes{
typedef struct
{
int dd_fd; /* file descriptor */
} DIR;
}end
endif'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _tst_true 1 /* ( 1 ) is true */
#endif'
EXEC -r -s bsh - t.iffe
EXEC -r - t.iffe
INPUT t.iffe $'_tst_false = ( 0 )
_tst_true = ( 1 )
if ( ! _tst_true ) {
typedef struct
{
int dd_fd; /* file descriptor */
} DIR;
}
else {
OK
}
endif'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _tst_true 1 /* ( 1 ) is true */
OK
#endif'
EXEC -r -s bsh - t.iffe
EXEC -r - t.iffe
INPUT t.iffe $'_tst_false = ( 0 )
_tst_true = ( 1 )
if ( ! _tst_true ) {
typedef struct
{
int dd_fd; /* file descriptor */
};
}
else {
OK
}
endif'
EXEC -r -s bsh - t.iffe
TEST 10 'exp details'
EXEC -r -v - t.iffe
INPUT t.iffe $'_str = "string"
_hdr = <header>
_aaa = ( 0 )
_zzz = ( 1 )
( _str )
( ! _str )
( _hdr )
( ! _hdr )
( _aaa )
( ! _aaa )
( _zzz )
( ! _zzz )'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _str "string"
#define _hdr <header>
#define _zzz 1 /* ( 1 ) is true */
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is ( 0 ) true ... no
iffe: test: is ( 1 ) true ... yes
iffe: test: is ( _str ) true ... yes
iffe: test: is ( ! _str ) true ... no
iffe: test: is ( _hdr ) true ... yes
iffe: test: is ( ! _hdr ) true ... no
iffe: test: is ( _aaa ) true ... no
iffe: test: is ( ! _aaa ) true ... yes
iffe: test: is ( _zzz ) true ... yes
iffe: test: is ( ! _zzz ) true ... no'
EXEC -r -v -s bsh - t.iffe
TEST 11 'set [no]define'
EXEC -r -v - t.iffe
INPUT t.iffe $'set nodefine
mem stat.st_mtime sys/types.h sys/stat.h
set define
mem stat.st_mode sys/types.h sys/stat.h
if ( _mem_st_mtime_stat ) {
1
}
endif
if ( _mem_st_mode_stat ) {
2
}
endif'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _mem_st_mode_stat 1 /* st_mode is a member of struct stat */
1
2
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is sys/stat.h a header ... yes
iffe: test: is stat a type or typedef ... no
iffe: test: is st_mtime a member of struct stat ... yes
iffe: test: is st_mode a member of struct stat ... yes
iffe: test: is ( _mem_st_mtime_stat ) true ... yes
iffe: test: is ( _mem_st_mode_stat ) true ... yes'
EXEC -r -v -s bsh - t.iffe
TEST 12 'non-opaque mem'
EXEC -r -v - mem OPAQUE -I. t.h
INPUT t.h $'typedef struct opaque OPAQUE;'
OUTPUT - $'/* : : generated by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _hdr_t 1 /* #include <t.h> ok */
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is t.h a header ... yes
iffe: test: is OPAQUE a type or typedef ... no
iffe: test: is struct OPAQUE a non-opaque struct ... no'
EXEC -r -v - mem NONOPAQUE -I. t.h
INPUT t.h $'struct nonopaque { int pad; };
typedef struct nonopaque NONOPAQUE;'
OUTPUT - $'/* : : generated by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _hdr_t 1 /* #include <t.h> ok */
#define _mem_NONOPAQUE 1 /* NONOPAQUE is a non-opaque struct */
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is t.h a header ... yes
iffe: test: is NONOPAQUE a type or typedef ... yes
iffe: test: is NONOPAQUE a non-opaque struct ... yes'
TEST 13 'key states'
EXEC -r -v - t.iffe
INPUT t.iffe $'key int
key const =
key foo
key bar =
key aha = huh = int
key chr = char = int'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _key_int 1 /* int is a reserved keyword */
#define _key_const 1 /* const is a reserved keyword */
#define bar /* default for reserved keyword bar */
#define aha int /* default for reserved keyword aha */
#define _key_char 1 /* char is a reserved keyword */
#define chr char /* alternate for reserved keyword chr */
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is int a reserved keyword ... yes
iffe: test: is const a reserved keyword ... yes
iffe: test: is foo a reserved keyword ... no
iffe: test: is bar a reserved keyword ... no
iffe: test: is aha a reserved keyword ... no
iffe: test: is huh a reserved keyword ... no
iffe: test: is chr a reserved keyword ... no
iffe: test: is char a reserved keyword ... yes'
EXEC -r -v -s bsh - t.iffe
EXEC -u -r -v - t.iffe
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _key_int 1 /* int is a reserved keyword */
#define _key_const 1 /* const is a reserved keyword */
#undef _key_foo /* foo is not a reserved keyword */
#undef _key_bar /* bar is not a reserved keyword */
#define bar /* default for reserved keyword bar */
#undef _key_huh /* huh is not a reserved keyword */
#define aha int /* default for reserved keyword aha */
#define _key_char 1 /* char is a reserved keyword */
#define chr char /* alternate for reserved keyword chr */
#endif'
EXEC -u -r -v -s bsh - t.iffe
EXEC -a -r -v - t.iffe
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define _key_int 1 /* int is a reserved keyword */
#define _key_const 1 /* const is a reserved keyword */
#define _key_foo 0 /* foo is not a reserved keyword */
#define _key_bar 0 /* bar is not a reserved keyword */
#define bar /* default for reserved keyword bar */
#define _key_huh 0 /* huh is not a reserved keyword */
#define aha int /* default for reserved keyword aha */
#define _key_char 1 /* char is a reserved keyword */
#define chr char /* alternate for reserved keyword chr */
#endif'
EXEC -a -r -v -s bsh - t.iffe
EXEC -C -r -v - t.iffe
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define HAVE_SYS_TYPES_H 1 /* #include <sys/types.h> ok */
#define HAVE_INT_RESERVED 1 /* int is a reserved keyword */
#define HAVE_CONST_RESERVED 1 /* const is a reserved keyword */
#undef HAVE_FOO_RESERVED /* foo is not a reserved keyword */
#undef HAVE_BAR_RESERVED /* bar is not a reserved keyword */
#define bar /* default for reserved keyword bar */
#undef HAVE_HUH_RESERVED /* huh is not a reserved keyword */
#define aha int /* default for reserved keyword aha */
#define HAVE_CHAR_RESERVED 1 /* char is a reserved keyword */
#define chr char /* alternate for reserved keyword chr */
#endif'
EXEC -C -r -v -s bsh - t.iffe
TEST 14 'inc file'
EXEC -r -v - t.iffe
INPUT t.iffe $'inc t_lib.h
if ( bar_foo ) {
#define all 1
}
elif ( _foo_bar ) {
#define some 1
}
endif'
INPUT t_lib.h '#define bar_foo ALL
#define _foo_bar SOME'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define some 1
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is ( bar_foo ) true ... no
iffe: test: is ( _foo_bar ) true ... yes'
EXEC -r -v - t.iffe
INPUT t.iffe $'inc t_lib.h .
if ( bar_foo ) {
#define all 1
}
elif ( _foo_bar ) {
#define ok 1
}
endif'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define all 1
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is ( bar_foo ) true ... yes'
EXEC -r -v - t.iffe
INPUT t.iffe $'inc t_lib.h . ?
if ( bar_foo ) {
#define all 1
}
elif ( _foo_bar ) {
#define ok 1
}
endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: t.iffe:1: warning: ?: operands ignored
iffe: test: is ( bar_foo ) true ... yes'
EXEC -r -v - t.iffe
INPUT t.iffe $'inc foo_lib.h'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: t.iffe:1: foo_lib.h: file not found'
EXIT 1
EXEC -r -v - t.iffe
INPUT t.iffe $'inc'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: t.iffe:1: path expected'
TEST 15 'KnR compatibility'
EXEC -r -v - t.iffe
INPUT t.iffe $'
if ( 1 ) {
#define all 1
}
endif
if ( 2 ) {
#define some 1
}
endif
cat{
#define a 1
#define b 2
#define c 3
#define d 4
}end'
#define _foo_bar SOME'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define some 1
#endif'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define all 1
#define some 1
#define a 1
#define b 2
#define c 3
#define d 4
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is ( 1 ) true ... yes
iffe: test: is ( 2 ) true ... yes
iffe: test: cat{ ... }end ... yes'
EXEC -r -v -s bsh - t.iffe
EXEC -r -v -s osh - t.iffe
TEST 16 '{ define extern include print }'
EXEC -r -v - t.iffe
INPUT t.iffe $'
print /* test header */
header stdio.h
define EOF -1
define FoobaR (a,b) ((a)+(b))
define FoomaC -1
extern fopen FILE* (char*, char*)
extern BarfoO struct barfoo* (int)
extern Tab_lE struct barfoo* [10]'
OUTPUT - $'/* test header */
/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#include <stdio.h>
#define FoobaR(a,b) ((a)+(b))
#define FoomaC -1
extern struct barfoo* BarfoO(int);
extern struct barfoo* Tab_lE[10];
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is stdio.h a header ... yes
iffe: test: is EOF a macro ... yes
iffe: test: is FoobaR a macro ... no
iffe: test: is FoomaC a macro ... no
iffe: test: is fopen a symbol that needs a prototype ... no
iffe: test: is BarfoO a symbol that needs a prototype ... yes
iffe: test: is Tab_lE a symbol that needs a prototype ... yes'
TEST 17 'features/* => FEATURE/*'
EXEC -r -v run features/stdio
INPUT features/stdio $'set prototyped
header stdio.h'
OUTPUT FEATURE/stdio $'
/* : : generated by proto : : */
/* : : generated from features/stdio by iffe version 1995-03-19 : : */
#ifndef _REGRESS
#if !defined(__PROTO__)
# if defined(__STDC__) || defined(__cplusplus) || defined(_proto) || defined(c_plusplus)
# if defined(__cplusplus)
# define __LINKAGE__ "C"
# else
# define __LINKAGE__
# endif
# define __STDARG__
# define __PROTO__(x) x
# define __OTORP__(x)
# define __PARAM__(n,o) n
# if !defined(__STDC__) && !defined(__cplusplus)
# if !defined(c_plusplus)
# define const
# endif
# define signed
# define void int
# define volatile
# define __V_ char
# else
# define __V_ void
# endif
# else
# define __PROTO__(x) ()
# define __OTORP__(x) x
# define __PARAM__(n,o) o
# define __LINKAGE__
# define __V_ char
# define const
# define signed
# define void int
# define volatile
# endif
# define __MANGLE__ __LINKAGE__
# if defined(__cplusplus) || defined(c_plusplus)
# define __VARARG__ ...
# else
# define __VARARG__
# endif
# if defined(__STDARG__)
# define __VA_START__(p,a) va_start(p,a)
# else
# define __VA_START__(p,a) va_start(p)
# endif
# if !defined(__INLINE__)
# if defined(__cplusplus)
# define __INLINE__ extern __MANGLE__ inline
# else
# if defined(_WIN32) && !defined(__GNUC__)
# define __INLINE__ __inline
# endif
# endif
# endif
#endif
#if !defined(__LINKAGE__)
#define __LINKAGE__ /* 2004-08-11 transition */
#endif
#define _REGRESS 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#include <stdio.h>
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes
iffe: test: is stdio.h a header ... yes'
TEST 18 'api + ver'
EXEC -r -v - t.iffe
INPUT t.iffe $'iff api
ver foo 20100606
ver bar 19840919
api foo 19991231 dis dat tother
api foo 20100601 dat
api foo 20100606 dis
api bar 19991231 moe larry shemp
api bar 20020202 curly
api bar 20030303 shemp
api bar 20040404 joe_b
api bar 20050505 joe_d
'
OUTPUT - $'/* : : generated from t.iffe by iffe version 1995-03-19 : : */
#ifndef _api_H
#define _api_H 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define FOO_VERSION 20100606
#define BAR_VERSION 19840919
#if !defined(_API_foo) && defined(_API_DEFAULT)
#define _API_foo _API_DEFAULT
#endif
#if ( _BLD_foo || !_API_foo || _API_foo >= 20100601 )
#undef dat
#define dat dat_20100601
#elif _API_foo >= 19991231
#undef dat
#define dat dat_19991231
#endif
#if ( _BLD_foo || !_API_foo || _API_foo >= 20100606 )
#undef dis
#define dis dis_20100606
#elif _API_foo >= 19991231
#undef dis
#define dis dis_19991231
#endif
#if ( _BLD_foo || !_API_foo || _API_foo >= 19991231 )
#undef tother
#define tother tother_19991231
#endif
#define _API_foo_MAP "dat_20100601 dat_19991231 dis_20100606 dis_19991231 tother_19991231"
#if !defined(_API_bar) && defined(_API_DEFAULT)
#define _API_bar _API_DEFAULT
#endif
#if ( _BLD_bar || !_API_bar || _API_bar >= 20020202 )
#undef curly
#define curly curly_20020202
#endif
#if ( _BLD_bar || !_API_bar || _API_bar >= 20040404 )
#undef joe_b
#define joe_b joe_b_20040404
#endif
#if ( _BLD_bar || !_API_bar || _API_bar >= 20050505 )
#undef joe_d
#define joe_d joe_d_20050505
#endif
#if ( _BLD_bar || !_API_bar || _API_bar >= 19991231 )
#undef larry
#define larry larry_19991231
#endif
#if ( _BLD_bar || !_API_bar || _API_bar >= 19991231 )
#undef moe
#define moe moe_19991231
#endif
#if ( _BLD_bar || !_API_bar || _API_bar >= 20030303 )
#undef shemp
#define shemp shemp_20030303
#elif _API_bar >= 19991231
#undef shemp
#define shemp shemp_19991231
#endif
#define _API_bar_MAP "curly_20020202 joe_b_20040404 joe_d_20050505 larry_19991231 moe_19991231 shemp_20030303 shemp_19991231"
#endif'
ERROR - $'iffe: test: is sys/types.h a header ... yes'
|