hc
2023-11-06 15ade055295d13f95d49e3d99b09f3bbfb4a43e7
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
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
This is dejagnu.info, produced by makeinfo version 5.2 from
dejagnu.texi.
 
INFO-DIR-SECTION Programming
START-INFO-DIR-ENTRY
* DejaGnu: (dejagnu).           The GNU testing framework.
END-INFO-DIR-ENTRY
 
 
File: dejagnu.info,  Node: Top,  Next: Introduction,  Up: (dir)
 
DejaGnu
*******
 
This file documents DejaGnu version 1.6.1-git.
 
* Menu:
 
* Introduction::
* Running tests::
* Customizing DejaGnu::
* Extending DejaGnu::
* Unit testing::
* Reference::
 
 
Introduction
 
* What is DejaGnu?::
* New in this release: Release Notes
* Design goals::
* A POSIX conforming test framework: A POSIX Conforming Test Framework.
* Installation::
 
Running tests
 
* Running 'make check': Make Check.
* Running runtest: Runtest.
* Output files: Output Files.
 
Customizing DejaGnu
 
* Global config file::
* Local config file::
* Board config file::
* Remote host testing::
* Config file values::
 
Extending DejaGnu
 
* Adding a new testsuite::
* Adding a new tool::
* Adding a new target::
* Adding a new board::
* Board file values::
* Writing a test case::
* Debugging a test case::
* Adding a test case to a testsuite::
* Test case special variables: Test case variables.
 
Unit testing
 
* What is unit testing?::
* The dejagnu.h header file: The dejagnu_h header file.
* C unit testing API::
* C++ unit testing API::
 
Reference
 
* Builtin Procedures::
 
 
 
File: dejagnu.info,  Node: Introduction,  Next: Running tests,  Prev: Top,  Up: Top
 
1 Introduction
**************
 
* Menu:
 
* What is DejaGnu?::
* New in this release: Release Notes.
* Design goals::
* A POSIX compliant test framework: A POSIX Conforming Test Framework.
* Installation::
 
 
File: dejagnu.info,  Node: What is DejaGnu?,  Next: Release Notes,  Up: Introduction
 
1.1 What is DejaGnu?
====================
 
DejaGnu is a framework for testing other programs, providing a single
front-end for all tests.  You can think of it as a library of Tcl
procedures to help with writing a test harness.  A _test harness_ is the
infrastructure that is created to test a specific program or tool.  Each
program can have multiple testsuites, all supported by a single test
harness.  DejaGnu is written in Expect, which in turn uses Tcl, the Tool
command language.  There is more information on Tcl at the Tcl/Tk web
site (http://www.tcl.tk) and the Expect web site
(http://expect.nist.gov).
 
   Julia Menapace first coined the term _DejaGnu_ to describe an earlier
testing framework she wrote at Cygnus Support for testing GDB. When we
replaced it with the Expect-based framework, it was like DejaGnu all
over again.  More importantly, it was also named after my daughter, Deja
Snow Savoye, who was a toddler during DejaGnu's beginnings.
 
   DejaGnu offers several advantages for testing:
 
   * The flexibility and consistency of the DejaGnu framework make it
     easy to write tests for any program, with either batch-oriented, or
     interactive programs.
 
   * DejaGnu provides a layer of abstraction which allows you to write
     tests that are portable to any host or target where a program must
     be tested.  For instance, a test for 'GDB' can run from any
     supported host system on any supported target system.  DejaGnu runs
     tests on many single board computers, whose operating software
     ranges from a simple boot monitor to a real-time OS.
 
   * All tests have the same output format.  This makes it easy to
     integrate testing into other software development processes.
     DejaGnu's output is designed to be parsed by other filtering script
     and it is also human readable.
 
   * Using Tcl and Expect, it's easy to create wrappers for existing
     testsuites.  By incorporating existing tests under DejaGnu, it's
     easier to have a single set of report analyse programs..
 
   Running tests requires two things: the testing framework and the
testsuites themselves.  Tests are usually written in Expect using Tcl,
but you can also use a Tcl script to run a testsuite that is not based
on Expect.  Expect script filenames conventionally use '.exp' as a
suffix.  For example, the main implementation of the DejaGnu test driver
is in the file 'runtest.exp'.
 
 
File: dejagnu.info,  Node: Release Notes,  Next: Design goals,  Prev: What is DejaGnu?,  Up: Introduction
 
1.2 New in this release
=======================
 
The following major, user-visible changes have been introduced since
version 1.5.3.
 
  1. Support for target communication via SSH has been added.
 
  2. A large number of very old config and baseboard files have been
     removed.  If you need to resurrect these, you can get them from
     version 1.5.3.  If you can show that a board is still in use, it
     can be put back in the distribution.
 
  3. The '--status' command line option is now the default.  This means
     that any error in the testsuite Tcl scripts will cause runtest to
     abort with exit status code 2.  The '--status' option has been
     removed from the documentation, but will continue to be accepted
     for backward compatibility.
 
  4. 'runtest' now exits with exit code 0 if the testsuite "passed", 1
     if something unexpected happened (eg, FAIL, XPASS or UNRESOLVED),
     and 2 if an exception is raised by the Tcl interpreter.
 
  5. 'runtest' now exits with the standard exit codes of programs that
     are terminated by the SIGINT, SIGTERM and SIGQUIT signals.
 
  6. The user-visible utility procedures 'absolute', 'psource' and
     'slay' have been removed.  If a testsuite uses any of these
     procedures, a copy of the procedure should be made and placed in
     the lib directory of the testsuite.
 
  7. Support was added for testing the D compiler.
 
  8. '~/.dejagnurc' is now loaded last, not first.  This allows the user
     to have the ability to override anything in their environment (even
     the 'site.exp' file specified by '$DEJAGNU').
 
  9. The user-visible utility procedure 'unsetenv' is *deprecated* and
     will be removed in the next release.  If a testsuite uses this
     procedure, a copy should be made and placed in the lib directory of
     the testsuite.
 
 
File: dejagnu.info,  Node: Design goals,  Next: A POSIX Conforming Test Framework,  Prev: Release Notes,  Up: Introduction
 
1.3 Design goals
================
 
DejaGnu grew out of the internal needs of Cygnus Solutions (formerly
Cygnus Support).  Cygnus maintained and enhanced a variety of free
programs in many different environments and needed a testing tool that:
 
   * was useful to developers while fixing bugs;
 
   * automated running many tests during a software release process;
 
   * was portable among a variety of host computers;
 
   * supported a cross-development environment;
 
   * permitted testing of interactive programs like 'GDB'; and
 
   * permitted testing of batch-oriented programs like 'GCC'.
 
   Some of the requirements proved challenging.  For example,
interactive programs do not lend themselves very well to automated
testing.  But all the requirements are important.  For instance, it is
imperative to make sure that 'GDB' works as well when cross-debugging as
it does in a native configuration.
 
   Probably the greatest challenge was testing in a cross-development
environment.  Most cross-development environments are customized by each
developer.  Even when buying packaged boards from vendors there are many
differences.  The communication interfaces vary from a serial line to
Ethernet.  DejaGnu was designed with a modular communication setup, so
that each kind of communication can be added as required and supported
thereafter.  Once a communication procedure is written, any test can use
it.  Currently DejaGnu can use 'ssh', 'rsh', 'rlogin', 'telnet', 'tip',
and 'kermit' for remote communications.
 
 
File: dejagnu.info,  Node: A POSIX Conforming Test Framework,  Next: Installation,  Prev: Design goals,  Up: Introduction
 
1.4 A POSIX compliant test framework
====================================
 
DejaGnu conforms to the POSIX 1003.3 standard for test frameworks.  Rob
Savoye was a member of that committee.
 
   POSIX standard 1003.3 defines what a testing framework needs to
provide to create a POSIX compliant testsuite.  This standard is
primarily oriented to checking POSIX conformance, but its requirements
also support testing of features not related to POSIX conformance.
POSIX 1003.3 does not specify a particular testing framework, but at
this time there is only one other POSIX conforming test framework.  TET
was created by Unisoft for a consortium comprised of X/Open, Unix
International and the Open Software Foundation.
 
   The POSIX documentation refers to "assertions".  An assertion is a
description of behavior.  For example, if a standard says "The sun shall
shine", a corresponding assertion might be "The sun is shining."  A test
based on this assertion would pass or fail depending on whether it is
day or night.  It is important to note that the standard being tested is
never 1003.3; the standard being tested is some other standard, for
which the assertions were written.
 
   As there is no testsuite to verify that testing frameworks are POSIX
1003.3 compliant, this is done by repeatedly reading the standard and
experimenting.  One of the main things POSIX 1003.3 does specify is the
set of allowed output messages and their definitions.  Four messages are
supported for a required feature of POSIX conforming systems and a fifth
for a conditional feature.  DejaGnu supports all five output messages.
In this sense a testsuite that uses exactly these messages can be
considered POSIX compliant.  These definitions specify the output of a
test case:
 
PASS
     A test has succeeded.  That is, it demonstrated that the assertion
     is true.
 
FAIL
     A test has not succeeded - the assertion is false.  The _FAIL_
     message is based on this test case only.  Other messages are used
     to indicate a failure of the framework.  As with _PASS_, POSIX
     tests must return _FAIL_ rather than _XFAIL_ even if a failure was
     expected.
 
XFAIL
     POSIX 1003.3 does not incorporate the notion of expected failures,
     so _PASS_, instead of _XPASS_, must also be returned for test cases
     which were expected to fail and did not.  This means that _PASS_ is
     in some sense more ambiguous than if _XPASS_ is also used.
 
UNRESOLVED
     A test produced indeterminate results.  Usually, this means the
     test executed in an unexpected fashion.  This outcome requires a
     human to go over results to determine if the test should have
     passed or failed.  This message is also used for any test that
     requires human intervention because it is beyond the abilities of
     the testing framework.  Any unresolved test should resolved to
     _PASS_ or _FAIL_ before a test run can be considered finished.
 
     Note that for POSIX, each assertion must produce a test result
     code.  If the test isn't actually run, it must produce _UNRESOLVED_
     rather than just leaving that test out of the output.  This means
     that you have to be careful when writing tests to not carelessly
     use Tcl commands like _return_--if you alter the flow of control of
     the Tcl code you must insure that every test still produces some
     result code.
 
     Here are some of the ways a test may wind up _UNRESOLVED_:
 
   * Execution of a test is interrupted.
 
   * A test does not produce a clear result.  This is usually because
     there was an _ERROR_ from DejaGnu while processing the test, or
     because there were three or more _WARNING_ messages.  Any _WARNING_
     or _ERROR_ messages can invalidate the output of the test.  This
     usually requires a human to examine the output to determine what
     really happened - and to improve the test case.
 
   * A test depends on a previous test, which has failed.
 
   * The test was set up incorrectly.
 
UNTESTED
     A test was not run.  This is a placeholder used when there is no
     real test case yet.
 
UNSUPPORTED
     There is no support for the tested case.  This may mean that a
     conditional feature of an operating system, or of a compiler, is
     not implemented.  DejaGnu also uses this message when a testing
     environment (often a "bare board" target) lacks basic support for
     compiling or running the test case.  For example, a test for the
     system subroutine _gethostname_ would never work on a target board
     running only a boot monitor.
 
   DejaGnu uses the same output procedures to produce these messages for
all testsuites and these procedures are already known to conform to
POSIX 1003.3.  For a DejaGnu testsuite to conform to POSIX 1003.3, you
must avoid the _setup_xfail_ procedure as described in the _PASS_
section above and you must be careful to return _UNRESOLVED_ where
appropriate, as described in the _UNRESOLVED_ section above.
 
 
File: dejagnu.info,  Node: Installation,  Prev: A POSIX Conforming Test Framework,  Up: Introduction
 
1.5 Installation
================
 
Refer to the 'INSTALL' in the source distribution for detailed
installation instructions.  Note that there is no compilation step as
with many other GNU packages, as DejaGnu consists of interpreted code
only.
 
   Save for its own small testsuite, the DejaGnu distribution does not
include any testsuites.  Testsuites for the various GNU development
tools are included with those packages.  After configuring the top-level
DejaGnu directory, unpack and configure the test directories for the
tools you want to test; then, in each test directory, run _make check_
to build auxiliary programs required by some of the tests, and run the
test suites.
 
 
File: dejagnu.info,  Node: Running tests,  Next: Customizing DejaGnu,  Prev: Introduction,  Up: Top
 
2 Running tests
***************
 
There are two ways to execute a testsuite.  The most common way is when
there is existing support in the 'Makefile' of the tool being tested.
This usually consists of a _check_ target.  The other way is to execute
the 'runtest' program directly.  To run 'runtest' directly from the
command line requires either all of the correct command line options, or
a *note Local config file:: must be set up correctly.
 
* Menu:
 
* Running 'make check': Make Check.
* Running runtest: Runtest.
* Output files: Output Files.
 
 
File: dejagnu.info,  Node: Make Check,  Next: Runtest,  Up: Running tests
 
2.1 Running 'make check'
========================
 
To run tests from an existing collection, first use 'configure' as usual
to set up the build directory.  Then type 'make check'.  If the _check_
target exists, it usually saves you some trouble.  For instance, it can
set up any auxiliary programs or other files needed by the tests.  The
most common file the _check_ target depends on is the 'site.exp' file.
The 'site.exp' contains various variables that DejaGnu uses to determine
the configuration of the program being tested.
 
   Once you have run _make check_ to build any auxiliary files, you can
invoke the test driver 'runtest' directly to repeat the tests.  You will
also have to execute 'runtest' directly for test collections with no
_check_ target in the 'Makefile'.
 
   GNU Automake has built-in support for DejaGnu.  To add DejaGnu
support to your generated 'Makefile.in', just add the keyword 'dejagnu'
to the AUTOMAKE_OPTIONS variable in 'Makefile.am'.  This will ensure
that the generated 'Makefile.in' has a 'check' target that invokes
DejaGnu correctly.
 
 
File: dejagnu.info,  Node: Runtest,  Next: Output Files,  Prev: Make Check,  Up: Running tests
 
2.2 Running runtest
===================
 
'runtest' is the test driver for DejaGnu.  You can specify two kinds of
things on the 'runtest' command line: command line options, and Tcl
variables that are passed to the test scripts.  The options are listed
alphabetically below.
 
   'runtest' returns one of the following exit codes:
 
0
     if all tests passed including expected failures and unsupported
     tests.
1
     if any test failed, passed unexpectedly, or was unresolved.
2
     if Expect encountered any error in the test scripts.
 
* Menu:
 
* Output States::
* Invoking runtest::
* Common Options: Common Operations.
 
 
File: dejagnu.info,  Node: Output States,  Next: Invoking runtest,  Up: Runtest
 
2.2.1 Output States
-------------------
 
'runtest' flags the outcome of each test as one of these cases.  See
*note A POSIX Conforming Test Framework:: for a discussion of how POSIX
specifies the meanings of these cases.
 
PASS
     The most desirable outcome: the test was expected to succeed and
     did succeed.
 
XPASS
     A pleasant kind of failure: a test was expected to fail, but
     succeeded.  This may indicate progress; inspect the test case to
     determine whether you should amend it to stop expecting failure.
 
FAIL
     A test failed, although it was expected to succeed.  This may
     indicate regress; inspect the test case and the failing software to
     locate the bug.
 
XFAIL
     A test failed, but it was expected to fail.  This result indicates
     no change in a known bug.  If a test fails because the operating
     system where the test runs lacks some facility required by the
     test, the outcome is _UNSUPPORTED_ instead.
 
UNRESOLVED
     Output from a test requires manual inspection; the testsuite could
     not automatically determine the outcome.  For example, your tests
     can report this outcome is when a test does not complete as
     expected.
 
UNTESTED
     A test case is not yet complete, and in particular cannot yet
     produce a _PASS_ or _FAIL_. You can also use this outcome in dummy
     "tests" that note explicitly the absence of a real test case for a
     particular property.
 
UNSUPPORTED
     A test depends on a conditionally available feature that does not
     exist (in the configured testing environment).  For example, you
     can use this outcome to report on a test case that does not work on
     a particular target because its operating system support does not
     include a required subroutine.
 
   'runtest' may also display the following messages:
 
ERROR
     Indicates a major problem (detected by the test case itself) in
     running the test.  This is usually an unrecoverable error, such as
     a missing file or loss of communication to the target.  (POSIX
     testsuites should not emit this message; use _UNSUPPORTED_,
     _UNTESTED_, or _UNRESOLVED_ instead, as appropriate.)
 
WARNING
     Indicates a possible problem in running the test.  Usually warnings
     correspond to recoverable errors, or display an important message
     about the following tests.
 
NOTE
     An informational message about the test case.
 
 
File: dejagnu.info,  Node: Invoking runtest,  Next: Common Operations,  Prev: Output States,  Up: Runtest
 
2.2.2 Invoking runtest
----------------------
 
This is the full set of command line options that 'runtest' recognizes.
Option names may be abbreviated to the shortest unique string.
 
'-a', '--all'
     Display all test output.  By default, _runtest_ shows only the
     output of tests that produce unexpected results; that is, tests
     with status _FAIL_ (unexpected failure), _XPASS_ (unexpected
     success), or _ERROR_ (a severe error in the test case itself).
     Specify '--all' to see output for tests with status _PASS_
     (success, as expected) _XFAIL_ (failure, as expected), or _WARNING_
     (minor error in the test case itself).
 
'--build [triplet]'
     _triplet_ is a system triplet of the form _cpu-vendor-os_.  This is
     the type of machine DejaGnu and the tools to be tested are built
     on.  For a normal cross environment this is the same as the host,
     but for a Canadian cross, they are different.
 
'-D0', '-D1'
     Start the internal Tcl debugger.  The Tcl debugger supports
     breakpoints, single stepping, and other common debugging
     activities.  See the document Debugger for Tcl Applications
     (http://expect.sourceforge.net/doc/tcl-debug.ps) by Don Libes.  If
     you specify _-D1_, the _expect_ shell stops at a breakpoint as soon
     as DejaGnu invokes it.  If you specify _-D0_, DejaGnu starts as
     usual, but you can enter the debugger by sending an interrupt (e.g.
     by typing <Control><c>).
 
'--debug'
     Turns on the Expect internal debugging output.  Debugging output is
     displayed as part of the _runtest_ output, and logged to a file
     called 'dbg.log'.  The extra debugging output does _not_ appear on
     standard output, unless the verbose level is greater than 2 (for
     instance, to see debug output immediately, specify '--debug -v
     -v').  The debugging output shows all attempts at matching the test
     output of the tool with the scripted patterns describing expected
     output.  The output generated with '--strace' also goes into
     'dbg.log'.
 
'--help'
     Prints out a short summary of the _runtest_ options, then exits
     (even if you specify other options).
 
'--host [triplet]'
     _triplet_ is a system triplet of the form _cpu-vendor-os_.  Use
     this option to override the default string recorded by your
     configuration's choice of host.  This choice does not change how
     anything is actually configured unless -build is also specified; it
     affects _only_ DejaGnu procedures that compare the host string with
     particular values.  The procedures _ishost_, _istarget_,
     _isnative_, and _setup_xfail_ are affected by '--host'.  In this
     usage, _host_ refers to the machine that the tests are to be run
     on, which may not be the same as the _build_ machine.  If '--build'
     is also specified, then '--host' refers to the machine that the
     tests will be run on, not the machine DejaGnu is run on.
 
'--host_board [name]'
     The host board to use.
 
'--ignore [name(s)] '
     The name(s) of specific tests to ignore.
 
'--log_dialog'
     Emit Expect output to stdout.  The Expect output is usually only
     written to the '.log' file.  By enabling this option, they are also
     printed to standard output.
 
'--mail [address(es)]'
     Send test results to one or more email addresses.
 
'--objdir [path]'
     Use _path_ as the top directory containing any auxiliary compiled
     test code.  The default is '.'.  Use this option to locate
     pre-compiled test code.  You can normally prepare any auxiliary
     files needed with _make_.
 
'--outdir [path]'
     Write log files in directory 'path'.  The default is '.', the
     directory where you start _runtest_.  This option affects only the
     summary ('.sum') and the detailed log files ('.log').  The DejaGnu
     debug log 'dbg.log' always appears (when requested) in the local
     directory.
 
'--reboot [name]'
     Reboot the target board when 'runtest' starts.  When running tests
     on a separate target board, it is safer to reboot the target to be
     certain of its state.  However, when developing test scripts,
     rebooting can take a lot of time.
 
'--srcdir [path]'
     Use 'path' as the top directory for test scripts to run.  _runtest_
     looks in this directory for any subdirectory whose name begins with
     the toolname (specified with '--tool').  For instance, with '--tool
     gdb', _runtest_ uses tests in subdirectories 'gdb.*' (with the
     usual shell-like filename expansion).  If you do not use
     '--srcdir', _runtest_ looks for test directories under the current
     working directory.
 
'--strace [n]'
     Turn on internal tracing for _expect_, to n levels deep.  By
     adjusting the level, you can control the extent to which your
     output expands multi-level Tcl statements.  This allows you to
     ignore some levels of _case_ or _if_ statements.  Each procedure
     call or control structure counts as one "level".  The output is
     recorded in the same file, 'dbg.log', used for output from
     '--debug'.
 
'--target [triplet]'
     Use this option to override the default setting (native testing).
     _triplet_ is a system triplet of the form _cpu-vendor-os_.  This
     option changes the configuration 'runtest' uses for the default
     tool names, and other setup information.
 
'--target_board [name(s)]'
     The list of target boards to run tests on.
 
'--tool [name(s)]'
     Specifies which testsuite to run, and what initialization module to
     use.  '--tool' is used _only_ for these two purposes.  It is _not_
     used to name the executable program to test.  Executable tool names
     (and paths) are recorded in 'site.exp' and you can override them by
     specifying Tcl variables on the command line.
 
     For example, including '--tool' gcc on the command line runs tests
     from all test subdirectories whose names match 'gcc.*', and uses
     one of the initialization modules named 'config/*-gcc.exp'.  To
     specify the name of the compiler (perhaps as an alternative path to
     what _runtest_ would use by default), use _GCC=path-to-gcc_ on the
     _runtest_ command line.
 
'--tool_exec [name]'
     The path to the tool executable to test.
 
'--tool_opts [options]'
     A list of additional options to pass to the tool.
 
'-v', '--verbose'
     Turns on more output.  Repeating this option increases the amount
     of output displayed.  Level one (_-v_) is simply test output.
     Level two (_-v -v_) shows messages on options, configuration, and
     process control.  Verbose messages appear in the detailed ('*.log')
     log file, but not in the summary ('*.sum') log file.
 
'-V', '--version'
     Prints out the version numbers of DejaGnu, Expect, and Tcl.
 
'-x', '--xml=FILE'
     Generate XML output.  FILE is optional; if given it is the name of
     the output file.  If not given, the output file is named after the
     tool.
 
'testfile'.exp[=arg(s)]
     Specify the names of testsuites to run.  By default, _runtest_ runs
     all tests for the tool, but you can restrict it to particular
     testsuites by giving the names of the _.exp expect_ scripts that
     control them.  _testsuite_.exp cannot include directory names, only
     plain filenames.
 
     'arg(s)' specifies a subset of tests in a suite to run.  For
     compiler or assembler tests, which often use a single _.exp_ script
     covering many different source files, this option allows you to
     further restrict the tests by listing particular source files to
     compile.  Some tools even support wildcards here.  The wildcards
     supported depend upon the tool, but typically _?_, _*_, and
     _[chars]_ are recognized.
 
'tclvar'=value
     You can define Tcl variables for use by your test scripts in the
     same style used with _make_ for environment variables.  For
     example, _runtest GDB=gdb.old_ defines a variable called 'GDB';
     when your scripts refer to '$GDB' in this run, they use the value
     _gdb.old_.
 
     The default Tcl variables used for most tools are defined in the
     main DejaGnu _Makefile_; their values are captured in the
     'site.exp' file.
 
 
File: dejagnu.info,  Node: Common Operations,  Prev: Invoking runtest,  Up: Runtest
 
2.2.3 Common Options
--------------------
 
Typically, you don't need to use any command line options.  The '--tool'
option is only required when there is more than one testsuite in the
same directory.  The default options are in the local 'site.exp' file,
created by 'make site.exp'.
 
   For example, if the directory 'gdb/testsuite' contains a collection
of DejaGnu tests for GDB, you can run them like this:
 
     $ cd gdb/testsuite
     $ runtest --tool gdb
 
   The test output follows, then ends with:
 
     === gdb Summary ===
 
     # of expected passes 508
     # of expected failures 103
     /usr/latest/bin/gdb version 4.14.4 -nx
 
   You can use the option '--srcdir' to point to some other directory
containing a collection of tests:
 
     $ runtest --srcdir /devo/gdb/testsuite
 
   By default, 'runtest' prints only the names of the tests it runs,
output from any tests that have unexpected results, and a summary
showing how many tests passed and how many failed.  To display output
from all tests (whether or not they behave as expected), use the '-a'
(all) option.  For more verbose output about processes being run,
communication, and so on, use '-v' (verbose).  To see even more output,
use multiple '-v' options.  See *note Invoking runtest:: for a more
detailed explanation of each 'runtest' option.
 
 
File: dejagnu.info,  Node: Output Files,  Prev: Runtest,  Up: Running tests
 
2.3 Output files
================
 
DejaGnu always writes two kinds of output files.  Summary output is
written to the '.sum' file, and detailed output is written to the '.log'
file.  The tool name determines the prefix for these files.  For
example, after running with '--tool gdb', the output files will be
called 'gdb.sum' and 'gdb.log'.  For troubleshooting, a debug log file
that logs the operation of Expect is available.  Each of these will be
described in turn.
 
* Menu:
 
* Summary log file::
* Detailed log file::
* Debug log file::
 
 
File: dejagnu.info,  Node: Summary log file,  Next: Detailed log file,  Up: Output Files
 
2.3.1 Summary log file
----------------------
 
DejaGnu always produces a summary ('.sum') output file.  This summary
lists the names of all test files run.  For each test file, one line of
output from each 'pass' command (showing status _PASS_ or _XPASS_) or
'fail' command (status _FAIL_ or _XFAIL_), trailing summary statistics
that count passing and failing tests (expected and unexpected), the full
pathname of the tool tested, and the version number of the tool.  All
possible outcomes, and all errors, are always reflected in the summary
output file, regardless of whether or not you specify '--all'.
 
   If any of your tests use the procedures 'unresolved', 'unsupported',
or 'untested', the summary output also tabulates the corresponding
outcomes.
 
   For example, after running 'runtest --tool binutils' a summary log
file will be written to 'binutils.sum'.  Normally, DejaGnu writes this
file in your current working directory.  Use the '--outdir' option to
select a different output directory.
 
   *Sample summary log*
 
         Test Run By bje on Sat Nov 14 21:04:30 AEDT 2015
 
              === gdb tests ===
 
         Running ./gdb.t00/echo.exp ...
         PASS:   Echo test
         Running ./gdb.all/help.exp ...
         PASS:   help add-symbol-file
         PASS:   help aliases
         PASS:   help breakpoint "bre" abbreviation
         FAIL:   help run "r" abbreviation
         Running ./gdb.t10/crossload.exp ...
         PASS:   m68k-elf (elf-big) explicit format; loaded
         XFAIL:  mips-ecoff (ecoff-bigmips) "ptype v_signed_char" signed C types
 
                     === gdb Summary ===
 
         # of expected passes 5
         # of expected failures 1
         # of unexpected failures 1
         /usr/latest/bin/gdb version 4.6.5 -q
 
 
 
File: dejagnu.info,  Node: Detailed log file,  Next: Debug log file,  Prev: Summary log file,  Up: Output Files
 
2.3.2 Detailed log file
-----------------------
 
DejaGnu also saves a detailed log file ('.log'), showing any output
generated by test cases as well as the summary output.  For example,
after running 'runtest --tool binutils', a detailed log file will be
written to 'binutils.log'.  Normally, DejaGnu writes this file in your
current working directory.  Use the '--outdir' option to select a
different output directory.
 
   *Sample detailed log for g++ tests*
 
         Test Run By bje on Sat Nov 14 21:07:23 AEDT 2015
 
                     === g++ tests ===
 
         Running ./g++.other/t01-1.exp ...
             PASS:   operate delete
 
         Running ./g++.other/t01-2.exp ...
             FAIL:   i960 bug EOF
         p0000646.C: In function `int  warn_return_1 ()':
         p0000646.C:109: warning: control reaches end of non-void function
         p0000646.C: In function `int  warn_return_arg (int)':
         p0000646.C:117: warning: control reaches end of non-void function
         p0000646.C: In function `int  warn_return_sum (int, int)':
         p0000646.C:125: warning: control reaches end of non-void function
         p0000646.C: In function `struct foo warn_return_foo ()':
         p0000646.C:132: warning: control reaches end of non-void function
         Running ./g++.other/t01-4.exp ...
             FAIL:   abort
         900403_04.C:8: zero width for bit-field `foo'
         Running ./g++.other/t01-3.exp ...
             FAIL:   segment violation
         900519_12.C:9: parse error before `;'
         900519_12.C:12: Segmentation violation
         /usr/latest/bin/gcc: Internal compiler error: program cc1plus got fatal signal
 
                     === g++ Summary ===
 
         # of expected passes 1
         # of expected failures 3
         /usr/latest/bin/g++ version cygnus-2.0.1
 
 
 
File: dejagnu.info,  Node: Debug log file,  Prev: Detailed log file,  Up: Output Files
 
2.3.3 Debug log file
--------------------
 
The 'runtest' option '--debug' creates a file showing the output from
Expect in debugging mode.  The 'dbg.log' file is created in the current
directory.  The log file shows the string sent to the tool being tested
by each 'send' command and the pattern it compares with the tool output
by each 'expect' command.
 
   The log messages begin with a message of the form:
 
         expect: does {tool output} (spawn_id n)
             match pattern {expected pattern}?
 
   For every unsuccessful match, Expect issues a _no_ after this
message.  If other patterns are specified for the same Expect command,
they are reflected also, but without the first part of the message
(_expect...  match pattern_).
 
   When Expect finds a match, the log for the successful match ends with
_yes_, followed by a record of the Expect variables set to describe a
successful match.
 
   *Example debug log file for a GDB test*
 
         send: sent {break gdbme.c:34\n} to spawn id 6
         expect: does {} (spawn_id 6) match pattern {Breakpoint.*at.* file
         gdbme.c, line 34.*\(gdb\) $}? no
        {.*\(gdb\) $}? no
         expect: does {} (spawn_id 0) match pattern {return} ? no
        {\(y or n\) }? no
        {buffer_full}? no
        {virtual}? no
        {memory}? no
        {exhausted}? no
        {Undefined}? no
        {command}? no
         break gdbme.c:34
         Breakpoint 8 at 0x23d8: file gdbme.c, line 34.
         (gdb) expect: does {break gdbme.c:34\r\nBreakpoint 8 at 0x23d8:
         file gdbme.c, line 34.\r\n(gdb) } (spawn_id 6) match pattern
        {Breakpoint.*at.* file gdbme.c, line 34.*\(gdb\) $}? yes
         expect: set expect_out(0,start) {18}
         expect: set expect_out(0,end) {71}
         expect: set expect_out(0,string) {Breakpoint 8 at 0x23d8: file
         gdbme.c, line 34.\r\n(gdb) }
         epect: set expect_out(spawn_id) {6}
         expect: set expect_out(buffer) {break gdbme.c:34\r\nBreakpoint 8
         at 0x23d8: file gdbme.c, line 34.\r\n(gdb) }
             PASS:   70      0       breakpoint line number in file
 
 
   This example exhibits three properties of Expect and DejaGnu that
might be surprising at first glance:
 
   * Empty output for the first attempted match.  The first set of
     attempted matches shown ran against the output _{}_ -- that is, no
     output.  Expect begins attempting to match the patterns supplied
     immediately; often, the first pass is against incomplete output (or
     completely before all output, as in this case).
 
   * Interspersed tool output.  The beginning of the log entry for the
     second attempted match may be hard to spot: this is because the
     prompt _{(gdb) }_ appears on the same line, just before the
     _expect:_ that marks the beginning of the log entry.
 
   * Fail-safe patterns.  Many of the patterns tested are fail-safe
     patterns provided by GDB testing utilities, to reduce possible
     indeterminacy.  It is useful to anticipate potential variations
     caused by extreme system conditions (GDB might issue the message
     _virtual memory exhausted_ in rare circumstances), or by changes in
     the tested program (_Undefined command_ is the likeliest outcome if
     the name of a tested command changes).
 
     The pattern _{return}_ is a particularly interesting fail-safe to
     notice; it checks for an unexpected <RET> prompt.  This may happen,
     for example, if the tested tool can filter output through a pager.
 
     These fail-safe patterns (like the debugging log itself) are
     primarily useful while developing test scripts.  Use the 'error'
     procedure to make the actions for fail-safe patterns produce
     messages starting with _ERROR_ on standard output, and in the
     detailed log file.
 
 
File: dejagnu.info,  Node: Customizing DejaGnu,  Next: Extending DejaGnu,  Prev: Running tests,  Up: Top
 
3 Customizing DejaGnu
*********************
 
The site configuration file, 'site.exp', captures
configuration-dependent values and propagates them to the DejaGnu test
environment using Tcl variables.  This ties the DejaGnu test scripts
into the 'configure' and 'make' programs.  If this file is setup
correctly, it is possible to execute a testsuite merely by typing
'runtest'.
 
   DejaGnu supports two 'site.exp' files.  The multiple instances of
'site.exp' are loaded in a fixed order.  The first file loaded is the
local file 'site.exp', and then the optional global 'site.exp' file as
pointed to by the 'DEJAGNU' environment variable.
 
   There is an optional global 'site.exp', containing configuration
values that apply to DejaGnu site-wide.  'runtest' loads these values
first.  The global 'site.exp' contains the default values for all
targets and hosts supported by DejaGnu.  This global file is identified
by setting the environment variable 'DEJAGNU' to the name of the file.
 
   Any directory containing a configured testsuite also has a local
'site.exp', capturing configuration values specific to the tool being
tested.  Since 'runtest' loads these values last, the individual test
configuration can either rely on and use, or override, any of the global
values from the global 'site.exp' file.
 
   You can usually generate or update the testsuite's local 'site.exp'
by typing 'make site.exp' in the testsuite directory, after the test
suite is configured.
 
   You can also have a file in your home directory called '.dejagnurc'.
This gets loaded after the other config files.  Usually this is used for
personal stuff, like setting the 'all_flag' so all the output gets
printed, or your own verbosity levels.  This file is usually restricted
to setting command line options.
 
   You can further override the default values in a user-editable
section of any 'site.exp', or by setting variables on the 'runtest'
command line.
 
* Menu:
 
* Local config file::
* Global config file::
* Board config file::
* Remote host testing::
* Config file values::
 
 
File: dejagnu.info,  Node: Global config file,  Next: Local config file,  Up: Customizing DejaGnu
 
3.1 Global config file
======================
 
The global configuration file is where all the target specific
configuration variables for a site are set.  For example, a centralized
testing lab where multiple developers have to share an embedded
development board.  There are settings for both remote hosts and remote
targets.  Below is an example of a global configuration file for a
Canadian cross environment.  A Canadian cross is a toolchain that is
built on, runs on, and targets three different system triplets (for
example, building a Solaris-hosted MIPS R4000 toolchain on a GNU/Linux
system).  All configuration values in the example below are
site-specific.
 
   *Example global configuration file*
 
     # Make sure we look in the right place for the board description files.
     lappend boards_dir "/nfs/cygint/s1/cygnus/dejagnu/boards"
 
     verbose "Global config file: target_triplet is $target_triplet" 2
     global target_list
 
     case "$target_triplet" in {
         { "native" } {
             set target_list "unix"
         }
         { "sparc64-*elf" } {
             set target_list "sparc64-sim"
         }
         { "mips-*elf" } {
             set target_list "mips-sim wilma barney"
         }
         { "mips-lsi-elf" } {
             set target_list "mips-lsi-sim{,soft-float,el}"
         }
     }
 
   In this case, we have support for several cross compilers, that all
run on this host.  To run DejaGnu tests on tools hosted on operating
systems that do not run Expect, DejaGnu can be run on the build machine
and connect to the remote host to run all the tests.  As you can see,
all one does is set the variable 'target_list' to the list of targets
and options to test.
 
   In this example, simple cases like _sparc64-elf_ only require setting
the name of the single board configuration file.  The _mips-elf_ target
is more complicated and sets the list to three target boards.
_mips-sim_ is a symbolic name for a simulator "board" and _wilma_ and
_barney_ are symbolic names for physical boards.  Symbolic names are
covered in the *note Adding a new board:: section.  The more complicated
example is the entry for _mips-lsi-elf_.  This one runs the tests with
multiple iterations using all possible combinations of the
'--soft-float' and the '--el' (little endian) options.  The braced
string includes an initial comma so that the set of combinations
includes no options at all.  Needless to say, this last target example
is mostly specific to compiler testing.
 
 
File: dejagnu.info,  Node: Local config file,  Next: Board config file,  Prev: Global config file,  Up: Customizing DejaGnu
 
3.2 Local config file
=====================
 
It is usually more convenient to keep these _manual overrides_ in the
'site.exp' local to each test directory, rather than in the global
'site.exp' in the installed DejaGnu library.  This file is mostly for
supplying tool specific info that is required by the testsuite.
 
   All local 'site.exp' files have two sections, separated by comments.
The first section is generated by 'make'.  It is essentially a
collection of Tcl variable definitions based on 'Makefile' environment
variables.  Since they are generated by 'make', they contain the values
as specified by 'configure'.  In particular, this section contains the
'Makefile' variables for host and target configuration data.  Do not
edit this first section; if you do, your changes will be overwritten the
next time you run 'make'.  The first section starts with:
 
     ## these variables are automatically generated by make ##
     # Do not edit here. If you wish to override these values
     # add them to the last section
 
   In the second section, you can override any default values for all
the variables.  The second section can also contain your preferred
defaults for all the command line options to 'runtest'.  This allows you
to easily customize 'runtest' for your preferences in each configured
testsuite tree, so that you need not type options repeatedly on the
command line.  The second section may also be empty if you do not wish
to override any defaults.
 
   *The first section ends with this line*
 
     ## All variables above are generated by configure. Do Not Edit ##
 
   You can make any changes under this line.  If you wish to redefine a
variable in the top section, then just put a duplicate value in this
second section.  Usually the values defined in this config file are
related to the configuration of the test run.  This is the ideal place
to set the variables 'host_triplet', 'build_triplet', 'target_triplet'.
All other variables are tool dependent, i.e., for testing a compiler,
the value for 'CC' might be set to a freshly built binary, as opposed to
one in the user's path.
 
   Here's an example local site.exp file, as used for GCC/G++ testing.
 
   *Local Config File*
 
     ## these variables are automatically generated by make ##
     # Do not edit here. If you wish to override these values
     # add them to the last section
     set rootme "/build/devo-builds/i686-pc-linux-gnu/gcc"
     set host_triplet i686-pc-linux-gnu
     set build_triplet i686-pc-linux-gnu
     set target_triplet i686-pc-linux-gnu
     set target_alias i686-pc-linux-gnu
     set CFLAGS ""
     set CXXFLAGS "-isystem /build/devo-builds/i686-pc-linux-gnu/gcc/../libio -isystem $srcdir/../libg++/src -isystem $srcdir/../libio -isystem $srcdir/../libstdc++ -isystem $srcdir/../libstdc++/stl -L/build/devo-builds/i686-pc-linux-gnu/gcc/../libg++ -L/build/devo-builds/i686-pc-linux-gnu/gcc/../libstdc++"
     append LDFLAGS " -L/build/devo-builds/i686-pc-linux-gnu/gcc/../ld"
     set tmpdir /build/devo-builds/i686-pc-linux-gnu/gcc/testsuite
     set srcdir "${srcdir}/testsuite"
     ## All variables above are generated by configure. Do Not Edit ##
 
   This file defines the required fields for a local config file, namely
the three system triplets, and the srcdir.  It also defines several
other Tcl variables that are used exclusively by the GCC testsuite.  For
most test cases, the CXXFLAGS and LDFLAGS are supplied by DejaGnu itself
for cross testing, but to test a compiler, GCC needs to manipulate these
itself.
 
   The local 'site.exp' may also set Tcl variables such as
'test_timeout' which can control the amount of time (in seconds) to wait
for a remote test to complete.  If not specified, 'test_timeout'
defaults to 300 seconds.
 
 
File: dejagnu.info,  Node: Board config file,  Next: Remote host testing,  Prev: Local config file,  Up: Customizing DejaGnu
 
3.3 Board configuration file
============================
 
The board configuration file is where board-specific configuration
details are stored.  A board configuration file contains all the
higher-level configuration settings.  There is a rough inheritance
scheme, where it is possible to derive a new board description file from
an existing one.  There are also collections of custom procedures for
common environments.  For more information on adding a new board config
file, go to the *note Adding a new board:: section.
 
   An example board configuration file for a GNU simulator is as
follows.  'set_board_info' is a procedure that sets the field name to
the specified value.  The procedures mentioned in brackets are _helper
procedures_.  These are used to find parts of a toolchain required to
build an executable image that may reside in various locations.  This is
mostly of use when the startup code, the standard C libraries, or the
toolchain itself is part of your build tree.
 
   *Example file*
     # This is a list of toolchains that are supported on this board.
     set_board_info target_install {sparc64-elf}
 
     # Load the generic configuration for this board. This will define any
     # routines needed by the tool to communicate with the board.
     load_generic_config "sim"
 
     # We need this for find_gcc and *_include_flags/*_link_flags.
     load_base_board_description "basic-sim"
 
     # Use long64 by default.
     process_multilib_options "long64"
 
     setup_sim sparc64
 
     # We only support newlib on this target. We assume that all multilib
     # options have been specified before we get here.
 
     set_board_info compiler "[find_gcc]"
     set_board_info cflags "[libgloss_include_flags] [newlib_include_flags]"
     set_board_info ldflags "[libgloss_link_flags] [newlib_link_flags]"
     # No linker script.
     set_board_info ldscript ""
 
     # Used by a few gcc.c-torture testcases to delimit how large the
     # stack can be.
     set_board_info gcc,stack_size 16384
     # The simulator doesn't return exit status and we need to indicate this
     # the standard GCC wrapper will work with this target.
     set_board_info needs_status_wrapper 1
     # We can't pass arguments to programs.
     set_board_info noargs 1
 
   There are five helper procedures used in this example:
 
   * 'find_gcc' looks for a copy of the GNU compiler in your build tree,
     or it uses the one in your path.  This will also return the proper
     transformed name for a cross compiler if you whole build tree is
     configured for one.
 
   * 'libgloss_include_flags' returns the flags to compile using *note
     libgloss: Libgloss, the GNU board support package (BSP).
 
   * 'libgloss_link_flags' returns the flags to link an executable using
     *note libgloss: Libgloss.
 
   * 'newlib_include_flags' returns the flags to compile using newlib
     (https://sourceware.org/newlib), a re-entrant standard C library
     for embedded systems comprising of non-GPL'd code
 
   * 'newlib_link_flags' returns the flags to link an executable with
     newlib (https://sourceware.org/newlib).
 
 
File: dejagnu.info,  Node: Remote host testing,  Next: Config file values,  Prev: Board config file,  Up: Customizing DejaGnu
 
3.4 Remote host testing
=======================
 
DejaGnu also supports running the tests on a remote host.  To set this
up, the remote host needs an FTP server, and a telnet server.  Currently
foreign operating systems used as remote hosts are VxWorks, VRTX,
DOS/Windows 3.1, MacOS and Windows.
 
   The recommended source for a Windows-based FTP server is to get IIS
(either IIS 1 or Personal Web Server) from http://www.microsoft.com
(http://www.microsoft.com).  When you install it, make sure you install
the FTP server - it's not selected by default.  Go into the IIS manager
and change the FTP server so that it does not allow anonymous FTP. Set
the home directory to the root directory (i.e.  c:\) of a suitable
drive.  Allow writing via FTP.
 
   It will create an account like IUSR_FOOBAR where foobar is the name
of your machine.  Go into the user editor and give that account a
password that you don't mind hanging around in the clear (i.e.  not the
same as your admin or personal passwords).  Also, add it to all the
various permission groups.
 
   You'll also need a telnet server.  For Windows, go to the Ataman
(http://ataman.com) web site, pick up the Ataman Remote Logon Services
for Windows, and install it.  You can get started on the eval period
anyway.  Add IUSR_FOOBAR to the list of allowed users, set the HOME
directory to be the same as the FTP default directory.  Change the Mode
prompt to simple.
 
   Ok, now you need to pick a directory name to do all the testing in.
For the sake of this example, we'll call it piggy (i.e.  c:\piggy).
Create this directory.
 
   You'll need a unix machine.  Create a directory for the scripts
you'll need.  For this example, we'll use /usr/local/swamp/testing.
You'll need to have a source tree somewhere, say /usr/src/devo.  Now,
copy some files from releng's area in SV to your machine:
 
   *Remote host setup*
 
     cd /usr/local/swamp/testing
     mkdir boards
     scp darkstar.welcomehome.org:/dejagnu/cst/bin/MkTestDir .
     scp darkstar.welcomehome.org:/dejagnu/site.exp .
     scp darkstar.welcomehome.org:/dejagnu/boards/useless98r2.exp boards/foobar.exp
     export DEJAGNU=/usr/local/swamp/testing/site.exp
 
   You must edit the boards/foobar.exp file to reflect your machine;
change the hostname (foobar.com), username (iusr_foobar), password, and
ftp_directory (c:/piggy) to match what you selected.
 
   Edit the global ' site.exp' to reflect your boards directory:
 
   *Add The Board Directory*
 
     lappend boards_dir "/usr/local/swamp/testing/boards"
 
   Now run MkTestDir, which is in the contrib directory.  The first
parameter is the toolchain prefix, the second is the location of your
devo tree.  If you are testing a cross compiler (ex: you have
sh-hms-gcc.exe in your PATH on the PC), do something like this:
 
   *Setup Cross Remote Testing*
 
     ./MkTestDir sh-hms /usr/dejagnu/src/devo
 
   If you are testing a native PC compiler (ex: you have gcc.exe in your
PATH on the PC), do this:
 
   *Setup Native Remote Testing*
 
     ./MkTestDir '' /usr/dejagnu/src/devo
 
   To test the setup, 'ftp' to your PC using the username (iusr_foobar)
and password you selected.  CD to the test directory.  Upload a file to
the PC. Now telnet to your PC using the same username and password.  CD
to the test directory.  Make sure the file is there.  Type "set" and/or
"gcc -v" (or sh-hms-gcc -v) and make sure the default PATH contains the
installation you want to test.
 
   *Run Test Remotely*
 
     cd /usr/local/swamp/testing
     make  -k -w check RUNTESTFLAGS="--host_board foobar --target_board foobar -v -v" > check.out 2>&1
 
   To run a specific test, use a command like this (for this example,
you'd run this from the gcc directory that MkTestDir created):
 
   *Run a Test Remotely*
 
     make check RUNTESTFLAGS="--host_board sloth --target_board sloth -v compile.exp=921202-1.c"
 
   Note: if you are testing a cross-compiler, put in the correct target
board.  You'll also have to download more .exp files and modify them for
your local configuration.  The -v's are optional.
 
 
File: dejagnu.info,  Node: Config file values,  Prev: Remote host testing,  Up: Customizing DejaGnu
 
3.5 Config file values
======================
 
DejaGnu uses a Tcl associative array to hold all the info for each
machine.  In the case of a Canadian cross, this means host information
as well as target information.  The named array is called 'target_info',
and it has two indices.  The following fields are part of the array.
 
* Menu:
 
* Command line option variables::
* User configuration file::
 
 
File: dejagnu.info,  Node: Command line option variables,  Next: User configuration file,  Up: Config file values
 
3.5.1 Command line option variables
-----------------------------------
 
In the user editable second section of the *note User configuration
file:: you can not only override the configuration variables captured in
the first section, but also specify default values for all on the
'runtest' command line options.  Save for '--debug', '--help', and
'--version', each command line option has an associated Tcl variable.
Use the Tcl 'set' command to specify a new default value (as for the
configuration variables).  The following table describes the
correspondence between command line options and variables you can set in
'site.exp'.  *note Invoking runtest::, for explanations of the
command-line options.
 
*Option*       *Tcl           *Description*
               variable*      
-a, -all       all_flag       display all test results if set
                              
-build         build_triplet  system triplet for the build host
                              
-dir           cmdline_dir_to_runrun only tests in the specified directory
                              
-host          host_triplet   system triplet for the host
                              
-host_board    host_board     host board definition to use
                              
-ignore        ignoretests    do not run the specified tests
                              
-log_dialog    log_dialog     emit Expect output to standard output
                              
-outdir        outdir         directory for '.sum' and '.log' files
                              
-objdir        objdir         directory for pre-compiled binaries
                              
-reboot        reboot         reboot the target if set to 1
                              
-srcdir        srcdir         directory of test subdirectories
                              
-target        target_triplet system triplet for the target
                              
-target_board  target_list    list of target boards to run tests on
                              
-tool          tool           name of tool to test (identifies init,
                              test subdirectory)
                              
-tool_exec     TOOL_EXECUTABLEpath to the executable to test
                              
-tool_opts     TOOL_OPTIONS   additional options to pass to the tool
                              
-tool_root_dir tool_root_dir  tool root directory
                              
-v, -verbose   verbose        verbosity level greater than or equal to
                              0
                              
 
 
File: dejagnu.info,  Node: User configuration file,  Prev: Command line option variables,  Up: Config file values
 
3.5.2 Per-user configuration file (.dejagnurc)
----------------------------------------------
 
The per-user configuration file is named '.dejagnurc' in the user's home
directory.  It is used to customize the behaviour of 'runtest' for each
user - typically the user's preference for log verbosity, and for
storing any experimental Tcl procedures.  An example '~/.dejagnurc' file
looks like:
 
   *Example .dejagnurc*
 
     set all_flag 1
     set RLOGIN /usr/ucb/rlogin
     set RSH /usr/local/sbin/ssh
 
   Here 'all_flag' is set so that I see all the test cases that PASS
along with the ones that FAIL. I also set 'RLOGIN' to the BSD
(non-Kerberos) version.  I also set 'RSH' to the SSH secure shell, as
rsh is mostly used to test Unix machines within a local network.
 
 
File: dejagnu.info,  Node: Extending DejaGnu,  Next: Unit testing,  Prev: Customizing DejaGnu,  Up: Top
 
4 Extending DejaGnu
*******************
 
* Menu:
 
* Adding a new testsuite::
* Adding a new tool::
* Adding a new target::
* Adding a new board::
* Board file values::
* Writing a test case::
* Debugging a test case::
* Adding a test case to a testsuite::
* Test case special variables: Test case variables.
 
 
File: dejagnu.info,  Node: Adding a new testsuite,  Next: Adding a new tool,  Up: Extending DejaGnu
 
4.1 Adding a new testsuite
==========================
 
The testsuite for a new tool should always be located in that tools
source directory.  DejaGnu require the directory be named 'testsuite'.
Under this directory, the test cases go in a subdirectory whose name
begins with the tool name.  For example, for a tool named _gdb_, each
subdirectory containing testsuites must start with 'gdb.'.
 
 
File: dejagnu.info,  Node: Adding a new tool,  Next: Adding a new target,  Prev: Adding a new testsuite,  Up: Extending DejaGnu
 
4.2 Adding a new tool
=====================
 
In general, the best way to learn how to write code, or even prose, is
to read something similar.  This principle applies to test cases and to
testsuites.  Unfortunately, well-established testsuites have a way of
developing their own conventions: as test writers become more
experienced with DejaGnu and with Tcl, they accumulate more utilities,
and take advantage of more and more features of Expect and Tcl in
general.  Inspecting such established testsuites may make the prospect
of creating an entirely new testsuite appear overwhelming.
Nevertheless, it is straightforward to start a new testsuite.
 
   To help orient you further in this task, here is an outline of the
steps to begin building a testsuite for a program example.
 
   Create or select a directory to contain your new collection of tests.
Change into that directory (shown here as 'testsuite'):
 
   Create a 'configure.in' file in this directory, to control
configuration-dependent choices for your tests.  So far as DejaGnu is
concerned, the important thing is to set a value for the variable
'target_abbrev'; this value is the link to the init file you will write
soon.  (For simplicity, we assume the environment is Unix, and use
_unix_ as the value.)
 
   What else is needed in 'configure.in' depends on the requirements of
your tool, your intended test environments, and which configure system
you use.  This example is a minimal 'configure.ac' for use with GNU
Autoconf.
 
4.2.1 Sample Makefile.in Fragment
---------------------------------
 
Create 'Makefile.in' (if using Autoconf), or 'Makefile.am' (if using
Automake), the source file used by configure to build your 'Makefile'.
If you are using GNU Automake.just add the keyword _dejagnu_ to the
_AUTOMAKE_OPTIONS_ variable in your 'Makefile.am' file.  This will add
all the 'Makefile' support needed to run DejaGnu, and support the *note
make check: Make Check. target.
 
   You also need to include two targets important to DejaGnu: _check_,
to run the tests, and _site.exp_, to set up the Tcl copies of
configuration-dependent values.  This is called the *note Local config
file:: The _check_ target must invoke the 'runtest' program to run the
tests.
 
   The _site.exp_ target should usually set up (among other things) the
_$tool_ variable for the name of your program.  If the local 'site.exp'
file is setup correctly, it is possible to execute the tests by merely
typing 'runtest' on the command line.
 
     # Look for a local version of DejaGnu, otherwise use one in the path
     RUNTEST = `if test -f $(top_srcdir)/../dejagnu/runtest; then \
           echo $(top_srcdir) ../dejagnu/runtest; \
         else \
           echo runtest; \
         fi`
 
     # Flags to pass to runtest
     RUNTESTFLAGS =
 
     # Execute the tests
     check: site.exp all
             $(RUNTEST) $(RUNTESTFLAGS) --tool ${example} --srcdir $(srcdir)
 
     # Make the local config file
     site.exp: ./config.status Makefile
        @echo "Making a new config file..."
             -@rm -f ./tmp?
             @touch site.exp
 
             -@mv site.exp site.bak
             @echo "## these variables are automatically generated by make ##" > ./tmp0
        @echo "# Do not edit here. If you wish to override these values" >> ./tmp0
             @echo "# add them to the last section" >> ./tmp0
             @echo "set host_os ${host_os}" >> ./tmp0
             @echo "set host_alias ${host_alias}" >> ./tmp0
             @echo "set host_cpu ${host_cpu}" >> ./tmp0
             @echo "set host_vendor ${host_vendor}" >> ./tmp0
             @echo "set target_os ${target_os}" >> ./tmp0
             @echo "set target_alias ${target_alias}" >> ./tmp0
             @echo "set target_cpu ${target_cpu}" >> ./tmp0
             @echo "set target_vendor ${target_vendor}" >> ./tmp0
             @echo "set host_triplet ${host_canonical}" >> ./tmp0
             @echo "set target_triplet ${target_canonical}">>./tmp0
             @echo "set tool binutils" >> ./tmp0
             @echo "set srcdir ${srcdir}" >> ./tmp0
             @echo "set objdir `pwd`" >> ./tmp0
             @echo "set ${examplename} ${example}" >> ./tmp0
             @echo "## All variables above are generated by configure. Do Not Edit ##" >> ./tmp0
             @cat ./tmp0 > site.exp
             @sed < site.bak \
                 -e '1,/^## All variables above are.*##/ d' \
                 >> site.exp
             -@rm -f ./tmp?
 
4.2.2 Simple tool init file for batch programs
----------------------------------------------
 
Create a directory (under 'testsuite') called 'config'.  Make a tool
init file in this directory.  Its name must start with the
'target_abbrev' value, or be named 'default.exp' so call it
'config/unix.exp' for our Unix based example.  This is the file that
contains the target-dependent procedures.  Fortunately, on a native Unix
system, most of them do not have to do very much in order for 'runtest'
to run.  If the program being tested is not interactive, you can get
away with this minimal 'unix.exp' to begin with:
 
     proc myprog_exit {} {}
     proc myprog_version {} {}
 
   If the program being tested is interactive, however, you might as
well define a _start_ routine and invoke it by using a tool init file
like this:
 
4.2.3 Simple tool init file for interactive programs
----------------------------------------------------
 
     proc myprog_exit {} {}
     proc myprog_version {} {}
 
     proc myprog_start {} {
          global ${examplename}
          spawn ${examplename}
          expect {
         -re "" {}
          }
     }
 
     # Start the program running we want to test
     myprog_start
 
   Create a directory whose name begins with your tool's name, to
contain tests.  For example, if your tool's name is _example_, then the
directories all need to start with 'example.'.  Create a sample test
file ending in '.exp'.  You can use 'first-try.exp'.  To begin with,
just write one line of Tcl code to issue a message:
 
     send_user "Testing: one, two...\n"
 
4.2.4 Testing A New Tool Config
-------------------------------
 
Back in the 'testsuite' (top level) directory, run 'configure'.
Typically you do this while in the build directory.  You are now ready
to type 'make check' or 'runtest'.  You should see something like this:
 
     Test Run By bje on Sat Nov 14 15:08:54 AEDT 2015
 
               === example tests ===
 
     Running ./example.0/first-try.exp ...
     Testing: one, two...
 
               === example Summary ===
 
   There is no output in the summary, because so far the example does
not call any of the procedures that report a test outcome.
 
   Write some real tests.  For an interactive tool, you should probably
write a real exit routine in fairly short order.  In any case, you
should also write a real version routine soon.
 
 
File: dejagnu.info,  Node: Adding a new target,  Next: Adding a new board,  Prev: Adding a new tool,  Up: Extending DejaGnu
 
4.3 Adding a new target
=======================
 
DejaGnu has some additional requirements for target support, beyond the
general-purpose provisions of a 'configure' script.  DejaGnu must
actively communicate with the target, rather than simply generating or
managing code for the target architecture.  Therefore, each tool
requires an initialization module for each target.  For new targets, you
must supply a few Tcl procedures to adapt DejaGnu to the target.
 
   Usually the best way to write a new initialization module is to edit
an existing initialization module; some trial and error will be
required.  If necessary, you can use the '--debug' option to see what is
really going on.
 
   When you code an initialization module, be generous in printing
information using the 'verbose' procedure.  In cross-development
environments, most of the work is in getting the communications right.
Code for communicating via TCP/IP networks or serial lines is available
in a DejaGnu library files such as 'lib/telnet.exp'.
 
   If you suspect a communication problem, try running the connection
interactively from Expect.  (There are three ways of running Expect as
an interactive interpreter.  You can run Expect with no arguments, and
control it completely interactively; or you can use 'expect -i' together
with other command-line options and arguments; or you can run the
command 'interpreter' from any Expect procedure.  Use 'return' to get
back to the calling procedure (if any), or 'return -tcl' to make the
calling procedure itself return to its caller; use 'exit' or end-of-file
to leave Expect altogether.)  Run the program whose name is recorded in
'$connectmode', with the arguments in '$targetname', to establish a
connection.  You should at least be able to get a prompt from any target
that is physically connected.
 
 
File: dejagnu.info,  Node: Adding a new board,  Next: Board file values,  Prev: Adding a new target,  Up: Extending DejaGnu
 
4.4 Adding a new board
======================
 
Adding a new board consists of creating a new board configuration file.
Examples are in 'dejagnu/baseboards'.  Usually to make a new board file,
it's easiest to copy an existing one.  It is also possible to have your
file be based on a _baseboard_ file with only one or two changes needed.
Typically, this can be as simple as just changing the linker script.
Once the new baseboard file is done, add it to the 'boards_DATA' list in
the 'dejagnu/baseboards/Makefile.am', and regenerate the Makefile.in
using automake.  Then just rebuild and install DejaGnu.  You can test it
by:
 
   There is a crude inheritance scheme going on with board files, so you
can include one board file into another, The two main procedures used to
do this are 'load_generic_config' and 'load_base_board_description'.
The generic config file contains other procedures used for a certain
class of target.  The board description file is where the board specific
settings go.  Commonly there are similar target environments with just
different processors.
 
   *Testing a New Board Configuration File*
 
     make check RUNTESTFLAGS="--target_board=newboardfile".
 
   Here's an example of a board config file.  There are several _helper
procedures_ used in this example.  A helper procedure is one that look
for a tool of files in commonly installed locations.  These are mostly
used when testing in the build tree, because the executables to be
tested are in the same tree as the new dejagnu files.  The helper
procedures are the ones in square braces _[]_, which is the Tcl
execution characters.
 
   *Example Board Configuration File*
 
     # Load the generic configuration for this board. This will define a basic
     # set of routines needed by the tool to communicate with the board.
     load_generic_config "sim"
 
     # basic-sim.exp is a basic description for the standard Cygnus simulator.
     load_base_board_description "basic-sim"
 
     # The compiler used to build for this board. This has *nothing* to do
     # with what compiler is tested if we're testing gcc.
     set_board_info compiler "[find_gcc]"
 
     # We only support newlib on this target.
     # However, we include libgloss so we can find the linker scripts.
     set_board_info cflags "[newlib_include_flags] [libgloss_include_flags]"
     set_board_info ldflags "[newlib_link_flags]"
 
     # No linker script for this board.
     set_board_info ldscript "-Tsim.ld"
 
     # The simulator doesn't return exit statuses and we need to indicate this.
     set_board_info needs_status_wrapper 1
 
     # Can't pass arguments to this target.
     set_board_info noargs 1
 
     # No signals.
     set_board_info gdb,nosignals 1
 
     # And it can't call functions.
     set_board_info gdb,cannot_call_functions 1
 
 
File: dejagnu.info,  Node: Board file values,  Next: Writing a test case,  Prev: Adding a new board,  Up: Extending DejaGnu
 
4.5 Board configuration file values
===================================
 
The following fields are in the 'board_info' array.  These are set by
the 'set_board_info' procedure (or 'add_board_info' procedure for
appending to lists).  Both procedures take a field name and a value for
the field (or is added to the field), respectively.  Some common board
info fields are shown below.
 
*Field*        *Example       *Description*
               value*
compiler       "[find_gcc]"   The path to the compiler to use.
cflags         "-mca"         Compilation flags for the compiler.
ldflags        "[libgloss_link_flags]Linking flags for the compiler.
               [newlib_link_flags]"
ldscript       "-Wl,-Tidt.ld" The linker script to use when cross
                              compiling.
libs           "-lgcc"        Any additional libraries to link in.
shell_prompt   "cygmon>"      The command prompt of the remote shell.
hex_startaddr  "0xa0020000"   The Starting address as a string.
start_addr     0xa0008000     The starting address as a value.
startaddr      "a0020000"
exit_statuses_bad1            Whether there is an accurate exit status.
reboot_delay   10             The delay between power off and power on.
unreliable     1              Whether communication with the board is
                              unreliable.
sim            [find_sim]     The path to the simulator to use.
objcopy        $tempfil       The path to the 'objcopy' program.
support_libs   "${prefix_dir}/i386-coff/"Support libraries needed for cross
                              compiling.
addl_link_flags"-N"           Additional link flags, rarely used.
remotedir      "/tmp/runtest.[pid]"Directory on the remote target in which
                              executables are downloaded and executed.
 
   These fields are used by the GCC and GDB tests, and are mostly only
useful to somewhat trying to debug a new board file for one of these
tools.  Many of these are used only by a few testcases, and their
purpose is esoteric.  These are listed with sample values as a guide to
better guessing if you need to change any of these.
 
   *Board Info Fields For GCC & GDB*
 
Field                    Sample Value             Description
strip                    $tempfile                Strip the executable
                                                  of symbols.
gdb_load_offset          "0x40050000"
gdb_protocol             "remote"                 The GDB debugging
                                                  protocol to use.
gdb_sect_offset          "0x41000000";
gdb_stub_ldscript        "-Wl,-Teva-stub.ld"      The linker script to
                                                  use with a GDB stub.
gdb,noargs               1                        Whether the target can
                                                  take command line
                                                  arguments.
gdb,nosignals            1                        Whether there are
                                                  signals on the target.
gdb,short_int            1
gdb,target_sim_options   "-sparclite"             Special options to
                                                  pass to the simulator.
gdb,timeout              540                      Timeout value to use
                                                  for remote
                                                  communication.
gdb_init_command         "set mipsfpu none"       A single command to
                                                  send to GDB before the
                                                  program being debugged
                                                  is started.
gdb_init_commands        "print/x \$fsr = 0x0"    Same as
                                                  _gdb_init_command_,
                                                  except that this is a
                                                  list, more commands
                                                  can be added.
gdb_load_offset          "0x12020000"
gdb_opts                 "-command gdbinit"
gdb_prompt               "\\(gdb960\\)"           The prompt GDB is
                                                  using.
gdb_run_command          "jump start"
gdb_stub_offset          "0x12010000"
use_gdb_stub             1                        Whether to use a GDB
                                                  stub.
wrap_m68k_aout           1
gcc,no_label_values      1
gcc,no_trampolines       1
gcc,no_varargs           1
gcc,stack_size           16384                    Stack size to use with
                                                  some GCC testcases.
ieee_multilib_flags      "-mieee"
is_simulator             1
needs_status_wrapper     1
no_double                1
no_long_long             1
noargs                   1
target_install           {sh-hms}
 
 
File: dejagnu.info,  Node: Writing a test case,  Next: Debugging a test case,  Prev: Board file values,  Up: Extending DejaGnu
 
4.6 Writing a test case
=======================
 
The easiest way to prepare a new test case is to base it on an existing
one for a similar situation.  There are two major categories of tests:
batch-oriented and interactive.  Batch-oriented tests are usually easier
to write.
 
   The GCC tests are a good example of batch-oriented tests.  All GCC
tests consist primarily of a call to a single common procedure, since
all the tests either have no output, or only have a few warning messages
when successfully compiled.  Any non-warning output constitutes a test
failure.  All the C code needed is kept in the test directory.  The test
driver, written in Tcl, need only get a listing of all the C files in
the directory, and compile them all using a generic procedure.  This
procedure and a few others supporting for these tests are kept in the
library module 'lib/c-torture.exp' of the GCC testsuite.  Most tests of
this kind use very few Expect features, and are coded almost purely in
Tcl.
 
   Writing the complete suite of C tests, then, consisted of these
steps:
 
   * Copying all the C code into the test directory.  These tests were
     based on the C-torture test created by Torbjorn Granlund (on behalf
     of the Free Software Foundation) for GCC development.
 
   * Writing (and debugging) the generic Tcl procedures for compilation.
 
   * Writing the simple test driver: its main task is to search the
     directory (using the Tcl procedure _glob_ for filename expansion
     with wildcards) and call a Tcl procedure with each filename.  It
     also checks for a few errors from the testing procedure.
 
   Testing interactive programs is intrinsically more complex.  Tests
for most interactive programs require some trial and error before they
are complete.
 
   However, some interactive programs can be tested in a simple fashion
reminiscent of batch tests.  For example, prior to the creation of
DejaGnu, the GDB distribution already included a wide-ranging testing
procedure.  This procedure was very robust, and had already undergone
much more debugging and error checking than many recent DejaGnu test
cases.  Accordingly, the best approach was simply to encapsulate the
existing GDB tests, for reporting purposes.  Thereafter, new GDB tests
built up a family of Tcl procedures specialized for GDB testing.
 
4.6.1 Hints on writing a test case
----------------------------------
 
It is safest to write patterns that match all the output generated by
the tested program; this is called closure.  If a pattern does not match
the entire output, any output that remains will be examined by the next
'expect' command.  In this situation, the precise boundary that
determines which 'expect' command sees what is very sensitive to timing
between the Expect task and the task running the tested tool.  As a
result, the test may sometimes appear to work, but is likely to have
unpredictable results.  (This problem is particularly likely for
interactive tools, but can also affect batch tools--especially for tests
that take a long time to finish.)  The best way to ensure closure is to
use the '-re' option for the 'expect' command to write the pattern as a
full regular expressions; then you can match the end of output using a
_$_.  It is also a good idea to write patterns that match all available
output by using _.*\_ after the text of interest; this will also match
any intervening blank lines.  Sometimes an alternative is to match end
of line using _\r_ or _\n_, but this is usually too dependent on
terminal settings.
 
   Always escape punctuation, such as _(_ or _"_, in your patterns; for
example, write _\(_.  If you forget to escape punctuation, you will
usually see an error message like:
 
     extra characters after close-quote
 
   If you have trouble understanding why a pattern does not match the
program output, try using the '--debug' option to 'runtest', and examine
the debug log carefully.
 
   Be careful not to neglect output generated by setup rather than by
the interesting parts of a test case.  For example, while testing GDB, I
issue a send _set height 0\n_ command.  The purpose is simply to make
sure GDB never calls a paging program.  The _set height_ command in GDB
does not generate any output; but running any command makes GDB issue a
new _(gdb) _ prompt.  If there were no 'expect' command to match this
prompt, the output _(gdb) _ begins the text seen by the next 'expect'
command--which might make that pattern fail to match.
 
   To preserve basic sanity, I also recommended that no test ever pass
if there was any kind of problem in the test case.  To take an extreme
case, tests that pass even when the tool will not spawn are misleading.
Ideally, a test in this sort of situation should not fail either.
Instead, print an error message by calling one of the DejaGnu procedures
'error' or 'warning'.
 
 
File: dejagnu.info,  Node: Debugging a test case,  Next: Adding a test case to a testsuite,  Prev: Writing a test case,  Up: Extending DejaGnu
 
4.7 Debugging a test case
=========================
 
These are the kinds of debugging information available from DejaGnu:
 
   * Output controlled by test scripts themselves, explicitly allowed
     for by the test author.  This kind of debugging output appears in
     the detailed output recorded in the DejaGnu log file.  To do the
     same for new tests, use the 'verbose' procedure (which in turn uses
     the Tcl variable 'verbose') to control how much output to generate.
     This will make it easier for other people running the test to debug
     it if necessary.  If 'verbose' is zero, there should be no output
     other than the output from the framework (eg.  FAIL). Then, to
     whatever extent is appropriate for the particular test, allow
     successively higher values of 'verbose' to generate more
     information.  Be kind to other programmers who use your tests -
     provide plenty of debugging information.
 
   * Output from the internal debugging functions of Tcl and Expect.
     There is a command line options for each; both forms of debugging
     output are recorded in the file 'dbg.log' in the current directory.
 
     Use '--debug' for information from Expect.  It logs how Expect
     attempts to match the tool output with the patterns specified.
     This can be very helpful while developing test scripts, since it
     shows precisely the characters received.  Iterating between the
     latest attempt at a new test script and the corresponding 'dbg.log'
     can allow you to create the final patterns by "cut and paste".
     This is sometimes the best way to write a test case.
 
   * Use '--strace' to see more detail from Tcl.  This logs how Tcl
     procedure definitions are expanded as they execute.  The trace
     level argument controls the depth of definitions expanded.
 
   * If the value of 'verbose' is 3 or greater ('runtest -v -v -v'),
     DejaGnu activates the Expect command 'log_user'.  This command
     prints all Expect actions to standard output, to the '.log' file
     and, if '--debug' is given, to 'dbg.log'.
 
 
File: dejagnu.info,  Node: Adding a test case to a testsuite,  Next: Test case variables,  Prev: Debugging a test case,  Up: Extending DejaGnu
 
4.8 Adding a test case to a testsuite
=====================================
 
There are two slightly different ways to add a test case.  One is to add
the test case to an existing directory.  The other is to create a new
directory to hold your test.  The existing test directories represent
several styles of testing, all of which are slightly different.  Examine
the testsuite subdirectories for the tool of interest to see which
approach is most suitable.
 
   Adding a GCC test may be very simple: just add the source file to any
test directory beginning with 'gcc.' and it will be tested on the next
test run.
 
   Adding a test by creating a new directory involves:
 
  1. Create the new directory.  All subdirectory names begin with the
     name of the tool to test; e.g.  G++ tests might be in a directory
     called 'g++.other'.  There can be multiple testsuite subdirectories
     with the same tool name prefix.
 
  2. Add the new test case to the directory, as above.
 
 
File: dejagnu.info,  Node: Test case variables,  Prev: Adding a test case to a testsuite,  Up: Extending DejaGnu
 
4.9 Test case special variables
===============================
 
There are special variables that contain other information from DejaGnu.
Your test cases can inspect these variables, as well as the variables
saved in 'site.exp'.  These variables should never be changed.
 
'$prms_id'
     The bug tracking system (eg.  PRMS/GNATS) number identifying a
     corresponding bug report (_0_ if you do not specify it).
 
'$bug_id'
     An optional bug ID, perhaps a bug identification number from
     another organization (_0_ if you do not specify it).
 
'$subdir'
     The subdirectory for the current test case.
 
'$exec_output'
     This is the output from a '${tool}_load' command.  This only
     applies to tools like GCC and GAS which produce an object file that
     must in turn be executed to complete a test.
 
'$comp_output'
     This is the output from a '${tool}_start' command.  This is
     conventionally used for batch-oriented programs, like GCC and GAS,
     that may produce interesting output (warnings, errors) without
     further interaction.
 
'$expect_out(buffer)'
     The output from the last command.  This is an internal variable set
     by Expect.  More information can be found in the Expect manual.
 
 
File: dejagnu.info,  Node: Unit testing,  Next: Reference,  Prev: Extending DejaGnu,  Up: Top
 
5 Unit testing
**************
 
* Menu:
 
* What is unit testing?::
* The dejagnu.h header file: The dejagnu_h header file.
* C unit testing API::
* C++ unit testing API::
 
 
File: dejagnu.info,  Node: What is unit testing?,  Next: The dejagnu_h header file,  Up: Unit testing
 
5.1 What is unit testing?
=========================
 
Most regression testing as done by DejaGnu is system testing: the
complete application is tested all at once.  Unit testing is for testing
single files, or small libraries.  In this case, each file is linked
with a test case in C or C++, and each function or class and method is
tested in turn, with the test case having to check private data or
global variables to see if the function or method worked.
 
   This works particularly well for testing APIs and at level where it
is easier to debug them, than by needing to trace through the entire
application.  Also if there is a specification for the API to be tested,
the testcase can also function as a compliance test.
 
 
File: dejagnu.info,  Node: The dejagnu_h header file,  Next: C unit testing API,  Prev: What is unit testing?,  Up: Unit testing
 
5.2 The dejagnu.h header file
=============================
 
DejaGnu uses a single header file, 'dejagnu.h' to assist in unit
testing.  As this file also produces its one test state output, it can
be run stand-alone, which is very useful for testing on embedded
systems.  This header file has a C and C++ API for the test states, with
simple totals, and standardized output.  Because the output has been
standardized, DejaGnu can be made to work with this test case, without
writing almost any Tcl.  The library module, dejagnu.exp, will look for
the output messages, and then merge them into DejaGnu's.
 
 
File: dejagnu.info,  Node: C unit testing API,  Next: C++ unit testing API,  Prev: The dejagnu_h header file,  Up: Unit testing
 
5.3 C unit testing API
======================
 
All of the functions that take a 'msg' parameter use a C 'char *' that
is the message to be displayed.  There currently is no support for
variable length arguments.
 
   * 'pass' prints a message for a successful test completion.
 
          pass(msg);
 
   * 'fail' prints a message for an unsuccessful test completion.
 
          fail(msg);
 
   * 'untested' prints a message for an test case that isn't run for
     some technical reason.
 
          untested(msg);
 
   * 'unresolved' prints a message for an test case that is run, but
     there is no clear result.  These output states require a human to
     look over the results to determine what happened.
 
          unresolved(msg);
 
   * 'totals' prints out the total numbers of all the test state
     outputs.
 
          totals();
 
 
File: dejagnu.info,  Node: C++ unit testing API,  Prev: C unit testing API,  Up: Unit testing
 
5.4 C++ unit testing API
========================
 
All of the methods that take a 'msg' parameter use a C char * or STL
string, that is the message to be displayed.  There currently is no
support for variable length arguments.
 
   * 'pass' prints a message for a successful test completion.
 
          TestState::pass(msg);
 
     'fail' prints a message for an unsuccessful test completion.
 
          TestState::fail(msg);
 
     'untested' prints a message for an test case that isn't run for
     some reason.
 
          TestState::untested(msg);
 
   * 'unresolved' prints a message for an test case that is run, but
     there is no clear result.  These output states require a human to
     look over the results to determine what happened.
 
          TestState::unresolved(msg);
 
   * 'totals' prints out the total numbers of all the test state
     outputs.
 
          TestState::totals();
 
 
File: dejagnu.info,  Node: Reference,  Prev: Unit testing,  Up: Top
 
6 Reference
***********
 
* Menu:
 
* Builtin Procedures::
 
 
File: dejagnu.info,  Node: Builtin Procedures,  Up: Reference
 
6.1 Builtin Procedures
======================
 
DejaGnu provides these Tcl procedures.
 
* Menu:
 
* Core Internal Procedures::
* Procedures For Remote Communication::
* Procedures For Using Utilities to Connect: connprocs.
* Procedures For Target Boards::
* Target Database Procedures: target database library file.
* Platform Dependent Procedures: platform dependent procedures.
* Utility Procedures::
* Libgloss, a free board support package (BSP): Libgloss.
* Debugging Procedures::
 
 
File: dejagnu.info,  Node: Core Internal Procedures,  Next: Procedures For Remote Communication,  Up: Builtin Procedures
 
6.1.1 Core Internal Procedures
------------------------------
 
* Menu:
 
* open_logs Procedure: open_logs procedure
* close_logs Procedure: close_logs procedure
* isbuild Procedure: isbuild procedure
* is_remote Procedure: is_remote procedure
* is3way Procedure: is3way procedure
* ishost Procedure: ishost procedure
* istarget Procedure: istarget procedure
* isnative Procedure: isnative procedure
* log_and_exit Procedure: log_and_exit procedure
* log_summary Procedure: log_summary procedure
* setup_xfail Procedure: setup_xfail procedure
* pass Procedure: pass procedure
* fail Procedure: fail procedure
* xpass Procedure: xpass procedure
* xfail Procedure: xfail procedure
* set_warning_threshold Procedure: set_warning_threshold procedure
* get_warning_threshold Procedure: get_warning_threshold procedure
* warning Procedure: warning procedure
* perror Procedure: perror procedure
* note Procedure: note procedure
* untested Procedure: untested procedure
* unresolved Procedure: unresolved procedure
* unsupported Procedure: unsupported procedure
* transform Procedure: transform procedure
* check_conditional_xfail Procedure: check_conditional_xfail procedure
* clear_xfail Procedure: clear_xfail procedure
* verbose Procedure: verbose procedure
* load_lib Procedure: load_lib procedure
 
 
File: dejagnu.info,  Node: open_logs procedure,  Next: close_logs procedure,  Up: Core Internal Procedures
 
6.1.1.1 open_logs Procedure
...........................
 
Open the output logs.
 
     open_logs
 
 
File: dejagnu.info,  Node: close_logs procedure,  Next: isbuild procedure,  Prev: open_logs procedure,  Up: Core Internal Procedures
 
6.1.1.2 close_logs Procedure
............................
 
Close the output logs.
 
     close_logs
 
 
File: dejagnu.info,  Node: isbuild procedure,  Next: is_remote procedure,  Prev: close_logs procedure,  Up: Core Internal Procedures
 
6.1.1.3 isbuild Procedure
.........................
 
Tests for a particular build host environment.  If the currently
configured host matches the argument string, the result is _1_;
otherwise the result is _0_.  _host_ must be a full three-part configure
host name; in particular, you may not use the shorter nicknames
supported by configure (but you can use wildcard characters, using shell
syntax, to specify sets of names).  If it is passed a NULL string, then
it returns the name of the build canonical configuration.
 
     isbuild{pattern}
 
'pattern'
 
 
File: dejagnu.info,  Node: is_remote procedure,  Next: is3way procedure,  Prev: isbuild procedure,  Up: Core Internal Procedures
 
6.1.1.4 is_remote Procedure
...........................
 
Is board remote?  Return a non-zero value, if so.
 
     is_remote { board }
 
 
File: dejagnu.info,  Node: is3way procedure,  Next: ishost procedure,  Prev: is_remote procedure,  Up: Core Internal Procedures
 
6.1.1.5 is3way Procedure
........................
 
Tests for a Canadian cross.  This is when the tests will be run on a
remotely hosted cross-compiler.  If it is a Canadian cross, then the
result is _1_; otherwise _0_.
 
     is3way
 
 
File: dejagnu.info,  Node: ishost procedure,  Next: istarget procedure,  Prev: is3way procedure,  Up: Core Internal Procedures
 
6.1.1.6 ishost Procedure
........................
 
Tests for a particular host environment.  If the currently configured
host matches the argument string, the result is _1_; otherwise the
result is _0_.  _host_ must be a full three-part configure host name; in
particular, you may not use the shorter nicknames supported by configure
(but you can use wildcard characters, using shell syntax, to specify
sets of names).
 
     ishost{pattern}
 
''
 
 
File: dejagnu.info,  Node: istarget procedure,  Next: isnative procedure,  Prev: ishost procedure,  Up: Core Internal Procedures
 
6.1.1.7 istarget Procedure
..........................
 
Tests for a particular target environment.  If the currently configured
target matches the argument string, the result is _1_ ; otherwise the
result is _0_.  target must be a full three-part configure target name;
in particular, you may not use the shorter nicknames supported by
configure (but you can use wildcard characters, using shell syntax, to
specify sets of names).  If it is passed a _NULL_ string, then it
returns the name of the build canonical configuration.
 
     istarget { args }
 
''
 
 
File: dejagnu.info,  Node: isnative procedure,  Next: log_and_exit procedure,  Prev: istarget procedure,  Up: Core Internal Procedures
 
6.1.1.8 isnative Procedure
..........................
 
Tests whether the current configuration has the same host and target.
When it runs in a native configuration this procedure returns a _1_;
otherwise it returns a _0_.
 
     isnative
 
 
File: dejagnu.info,  Node: log_and_exit procedure,  Next: log_summary procedure,  Prev: isnative procedure,  Up: Core Internal Procedures
 
6.1.1.9 log_and_exit Procedure
..............................
 
     log_and_exit
 
 
File: dejagnu.info,  Node: log_summary procedure,  Next: setup_xfail procedure,  Prev: log_and_exit procedure,  Up: Core Internal Procedures
 
6.1.1.10 log_summary Procedure
..............................
 
     log_summary{args}
 
'args'
 
 
File: dejagnu.info,  Node: setup_xfail procedure,  Next: pass procedure,  Prev: log_summary procedure,  Up: Core Internal Procedures
 
6.1.1.11 setup_xfail Procedure
..............................
 
Declares that the test is expected to fail on a particular set of
configurations.  The config argument must be a list of full three-part
configure target name; in particular, you may not use the shorter
nicknames supported by configure (but you can use the common shell
wildcard characters to specify sets of names).  The _bugid_ argument is
optional, and used only in the logging file output; use it as a link to
a bug-tracking system such as GNATS.
 
   Once you use 'setup_xfail', the 'fail' and 'pass' procedures produce
the messages _XFAIL_ and _XPASS_ respectively, allowing you to
distinguish expected failures (and unexpected success!)  from other test
outcomes.
 
     *Warning*
 
     Warning you must clear the expected failure after using setup_xfail
     in a test case.  Any call to 'pass 'or 'fail' clears the expected
     failure implicitly; if the test has some other outcome, e.g.  an
     error, you can call 'clear_xfail' to clear the expected failure
     explicitly.  Otherwise, the expected-failure declaration applies to
     whatever test runs next, leading to surprising results.
 
     setup_xfail{config bugid}
 
'config'
     The config triplet to trigger whether this is an unexpected or
     expect failure.
 
'bugid'
     The optional bugid, used to tie this test case to a bug tracking
     system.
 
 
File: dejagnu.info,  Node: pass procedure,  Next: fail procedure,  Prev: setup_xfail procedure,  Up: Core Internal Procedures
 
6.1.1.12 pass Procedure
.......................
 
Declares a test to have passed.  'pass' writes in the log files a
message beginning with _PASS_ (or _XPASS_, if failure was expected),
appending the argument 'string'.
 
     pass { message }
 
'message'
     The message to use in the PASS result.
 
 
File: dejagnu.info,  Node: fail procedure,  Next: xpass procedure,  Prev: pass procedure,  Up: Core Internal Procedures
 
6.1.1.13 fail Procedure
.......................
 
Declares a test to have failed.  'fail' writes in the log files a
message beginning with _FAIL_ (or _XFAIL_, if failure was expected),
appending the argument 'string'.
 
     fail { message }
 
'string'
     The message to use in the FAIL result.
 
 
File: dejagnu.info,  Node: xpass procedure,  Next: xfail procedure,  Prev: fail procedure,  Up: Core Internal Procedures
 
6.1.1.14 xpass Procedure
........................
 
Declares a test to have passed when it was expected to fail.  'xpass'
writes in the log files a message beginning with _XPASS_ (or _XFAIL_, if
failure was expected), appending the argument 'string'.
 
     xpass { message }
 
'message'
     The message to use in the XPASS result.
 
 
File: dejagnu.info,  Node: xfail procedure,  Next: set_warning_threshold procedure,  Prev: xpass procedure,  Up: Core Internal Procedures
 
6.1.1.15 xfail Procedure
........................
 
Declares a test to have expectedly failed.  'xfail' writes in the log
files a message beginning with _XFAIL_ (or _PASS_, if success was
expected), appending the 'message' argument.
 
     xpass { message }
 
 
File: dejagnu.info,  Node: set_warning_threshold procedure,  Next: get_warning_threshold procedure,  Prev: xfail procedure,  Up: Core Internal Procedures
 
6.1.1.16 set_warning_threshold Procedure
........................................
 
Sets the value of 'warning_threshold'.  A value of _0_ disables it:
calls to 'warning' will not turn a _PASS_ or _FAIL_ into an
_UNRESOLVED_.
 
     set_warning_threshold{threshold}
 
'threshold'
     This is the value of the new warning threshold.
 
 
File: dejagnu.info,  Node: get_warning_threshold procedure,  Next: warning procedure,  Prev: set_warning_threshold procedure,  Up: Core Internal Procedures
 
6.1.1.17 get_warning_threshold Procedure
........................................
 
Returns the current value of '{warning_threshold'.  The default value is
3.  This value controls how many 'warning' procedures can be called
before becoming _UNRESOLVED_.
 
     get_warning_threshold
 
 
File: dejagnu.info,  Node: warning procedure,  Next: perror procedure,  Prev: get_warning_threshold procedure,  Up: Core Internal Procedures
 
6.1.1.18 warning Procedure
..........................
 
Declares detection of a minor error in the test case itself.  'warning'
writes in the log files a message beginning with _WARNING_, appending
the argument 'string'.  Use 'warning' rather than 'perror' for cases
(such as communication failure to be followed by a retry) where the test
case can recover from the error.  If the optional 'number' is supplied,
then this is used to set the internal count of warnings to that value.
 
   As a side effect, 'warning_threshold' or more calls to warning in a
single test case also changes the effect of the next 'pass' or 'fail'
command: the test outcome becomes _UNRESOLVED_ since an automatic _PASS_
or _FAIL_ may not be trustworthy after many warnings.  If the optional
numeric value is _0_, then there are no further side effects to calling
this function, and the following test outcome doesn't become
_UNRESOLVED_. This can be used for errors with no known side effects.
 
     warning { messsage number }
 
'message'
     The warning message.
 
'number'
     The optional number to set the error counter.  This is only used to
     fake out the counter when using the 'xfail' procedure to control
     when it flips the output over to _UNRESOLVED_ state.
 
 
File: dejagnu.info,  Node: perror procedure,  Next: note procedure,  Prev: warning procedure,  Up: Core Internal Procedures
 
6.1.1.19 perror Procedure
.........................
 
Declares a severe error in the testing framework itself.  'perror'
writes in the log files a message beginning with _ERROR_, appending the
argument 'string'.
 
   As a side effect, perror also changes the effect of the next 'pass'
or 'fail' command: the test outcome becomes _UNRESOLVED_, since an
automatic _PASS_ or _FAIL_ cannot be trusted after a severe error in the
test framework.  If the optional numeric value is _0_, then there are no
further side effects to calling this function, and the following test
outcome doesn't become _UNRESOLVED_. This can be used for errors with no
known side effects.
 
     perror { message number }
 
'message'
     The message to be logged.
 
'number'
     The optional number to set the error counter.  This is only used to
     fake out the counter when using the 'xfail' procedure to control
     when it flips the output over to _UNRESOLVED_ state.
 
 
File: dejagnu.info,  Node: note procedure,  Next: untested procedure,  Prev: perror procedure,  Up: Core Internal Procedures
 
6.1.1.20 note Procedure
.......................
 
Appends an informational message to the log file.  'note' writes in the
log files a message beginning with _NOTE_, appending the argument
'string'.  Use 'note' sparingly.  The 'verbose' should be used for most
such messages, but in cases where a message is needed in the log file
regardless of the verbosity level use 'note'.
 
     note { string }
 
'string'
     The string to use for this note.
 
 
File: dejagnu.info,  Node: untested procedure,  Next: unresolved procedure,  Prev: note procedure,  Up: Core Internal Procedures
 
6.1.1.21 untested Procedure
...........................
 
Declares a test was not run.  'untested' writes in the log file a
message beginning with _UNTESTED_, appending the argument _string_.  For
example, you might use this in a dummy test whose only role is to record
that a test does not yet exist for some feature.
 
     untested { message }
 
'message'
     The message to use.
 
 
File: dejagnu.info,  Node: unresolved procedure,  Next: unsupported procedure,  Prev: untested procedure,  Up: Core Internal Procedures
 
6.1.1.22 unresolved Procedure
.............................
 
Declares a test to have an unresolved outcome.  'unresolved' writes in
the log file a message beginning with _UNRESOLVED_, appending the
argument _string_.  This usually means the test did not execute as
expected, and a human being must go over results to determine if it
passed or failed (and to improve the test case).
 
     unresolved { message }
 
'string'
     The message to use.
 
 
File: dejagnu.info,  Node: unsupported procedure,  Next: transform procedure,  Prev: unresolved procedure,  Up: Core Internal Procedures
 
6.1.1.23 unsupported Procedure
..............................
 
Declares that a test case depends on some facility that does not exist
in the testing environment.  'unsupported' writes in the log file a
message beginning with _UNSUPPORTED_, appending the argument string.
 
     unsupported { message }
 
'message'
     The message to use.
 
 
File: dejagnu.info,  Node: transform procedure,  Next: check_conditional_xfail procedure,  Prev: unsupported procedure,  Up: Core Internal Procedures
 
6.1.1.24 transform Procedure
............................
 
Generates a string for the name of a tool as it was configured and
installed, given its native name (as the argument 'toolname').  This
makes the assumption that all tools are installed using the same naming
conventions: For example, for a cross compiler supporting the
_m68k-vxworks_ configuration, the result of transform 'gcc' is
'm68k-vxworks-gcc'.
 
     transform{toolname}
 
'toolname'
     The name of the cross-development program to transform.
 
 
File: dejagnu.info,  Node: check_conditional_xfail procedure,  Next: clear_xfail procedure,  Prev: transform procedure,  Up: Core Internal Procedures
 
6.1.1.25 check_conditional_xfail Procedure
..........................................
 
This procedure adds a conditional xfail, based on compiler options used
to create a test case executable.  If an include options is found in the
compiler flags, and it's the right architecture, it'll trigger an
_XFAIL_. Otherwise it'll produce an ordinary _FAIL_. You can also
specify flags to exclude.  This makes a result be a _FAIL_, even if the
included options are found.  To set the conditional, set the variable
'compiler_conditional_xfail_data' to the fields
 
     "[message string] [targets list] [includes list] [excludes list]"
 
   (descriptions below).  This is the checked at pass/fail decision
time, so there is no need to call the procedure yourself, unless you
wish to know if it gets triggered.  After a pass/fail, the variable is
reset, so it doesn't effect other tests.  It returns _1_ if the
conditional is true, or _0_ if the conditional is false.
 
     check_conditional_xfail{message targets includes excludes}
 
'message'
     This is the message to print with the normal test result.
 
'targets'
     This is a string with the list targets to activate this conditional
     on.
 
'includes'
     This is a list of sets of options to search for in the compiler
     options to activate this conditional.  If the list of sets of
     options is empty or if any set of the options matches, then this
     conditional is true.  (It may be useful to specify an empty list of
     include sets if the conditional is always true unless one of the
     exclude sets matches.)
 
'excludes'
     This is a list of sets of options to search for in the compiler
     options to activate this conditional.  If any set of the options
     matches, (regardless of whether any of the include sets match) then
     this conditional is de-activated.
 
   *Specifying the conditional xfail data*
 
           set compiler_conditional_xfail_data { \
                "I sure wish I knew why this was hosed" \
                    "sparc*-sun*-* *-pc-*-*" \
                    {"-Wall -v" "-O3"} \
                    {"-O1" "-Map"} \
               }
 
   What this does is it matches only for these two targets if "-Wall -v"
or "-O3" is set, but neither "-O1" or "-Map" is set.  For a set to
match, the options specified are searched for independently of each
other, so a "-Wall -v" matches either "-Wall -v" or "-v -Wall".  A space
separates the options in the string.  Glob-style regular expressions are
also permitted.
 
 
File: dejagnu.info,  Node: clear_xfail procedure,  Next: verbose procedure,  Prev: check_conditional_xfail procedure,  Up: Core Internal Procedures
 
6.1.1.26 clear_xfail Procedure
..............................
 
Cancel an expected failure (previously declared with 'setup_xfail') for
a particular set of configurations.  The 'config' argument is a list of
configuration target names.  It is only necessary to call 'clear_xfail'
if a test case ends without calling either 'pass' or 'fail', after
calling 'setup_xfail'.
 
     clear_xfail{config}
 
'config'
     The system triplets to clear.
 
 
File: dejagnu.info,  Node: verbose procedure,  Next: load_lib procedure,  Prev: clear_xfail procedure,  Up: Core Internal Procedures
 
6.1.1.27 verbose Procedure
..........................
 
Test cases can use this function to issue helpful messages depending on
the number of '-v'/'--verbose' options passed to runtest on the command
line.  It prints string if the value of the variable 'verbose' is higher
than or equal to the optional loglevel.  The default log level is 1.
Use the optional '-log' argument to cause string to always be added to
the log file, even if it won't be printed.  Use the optional '-x'
argument to log the test results into a parsable XML file.  Use the
optional '-n' argument to print string without a trailing newline.  Use
the optional '--' argument if string begins with "-".
 
     verbose{-log -x -n -r string loglevel}
 
'-x'
 
'-log'
 
'-n'
 
'--'
 
'string'
 
'number'
 
 
File: dejagnu.info,  Node: load_lib procedure,  Prev: verbose procedure,  Up: Core Internal Procedures
 
6.1.1.28 load_lib Procedure
...........................
 
Loads a DejaGnu library file by searching the default fixed paths built
into DejaGnu.  If DejaGnu has been installed, it looks in a path
starting with the installed library directory.  If you are running
DejaGnu directly from a source directory, without first running 'make
install', this path defaults to the current directory.  In either case,
it then looks in the current directory for a directory called 'lib'.  If
there are duplicate definitions, the last one loaded takes precedence
over the earlier ones.
 
     load_lib{filespec}
 
'filespec'
     The name of the DejaGnu library file to load.
 
   The global variable 'libdirs', handled as a list, is appended to the
default fixed paths built into DejaGnu.
 
   *Additional search directories for load_lib*
 
     # append a non-standard search path
             global libdirs
             lappend libdirs $srcdir/../../gcc/testsuite/lib
             # now loading $srcdir/../../gcc/testsuite/lib/foo.exp works
             load_lib foo.exp
 
 
File: dejagnu.info,  Node: Procedures For Remote Communication,  Next: connprocs,  Prev: Core Internal Procedures,  Up: Builtin Procedures
 
6.1.2 Procedures For Remote Communication
-----------------------------------------
 
'lib/remote.exp' defines procedures for establishing and managing
communications.  Each of these procedures tries to establish the
connection up to three times before returning.  Warnings (if retries
will continue) or errors (if the attempt is abandoned) report on
communication failures.  The result for any of these procedures is
either _-1_, when the connection cannot be established, or the spawn ID
returned by the Expect command 'spawn'.
 
   It use the value of the 'connect' field in the 'target_info' array
(was 'connectmode' as the type of connection to make.  Current supported
connection types are ssh, tip, kermit, telnet, rsh, and rlogin.  If the
'--reboot' option was used on the runtest command line, then the target
is rebooted before the connection is made.
 
* Menu:
 
* call_remote Procedure: call_remote procedure
* check_for_board_status Procedure: check_for_board_status procedure
* file_on_build Procedure: file_on_build procedure
* file_on_host Procedure: file_on_host procedure
* local_exec Procedure: local_exec procedure
* remote_binary Procedure: remote_binary procedure
* remote_close Procedure: remote_close procedure
* remote_download Procedure: remote_download procedure
* remote_exec Procedure: remote_exec procedure
* remote_expect Procedure: remote_expect procedure
* remote_file Procedure: remote_file procedure
* remote_ld Procedure: remote_ld procedure
* remote_load Procedure: remote_load procedure
* remote_open Procedure: remote_open procedure
* remote_pop_conn Procedure: remote_pop_conn procedure
* remote_push_conn Procedure: remote_push_conn procedure
* remote_raw_binary Procedure: remote_raw_binary procedure
* remote_raw_close Procedure: remote_raw_close procedure
* remote_raw_file Procedure: remote_raw_file procedure
* remote_raw_ld Procedure: remote_raw_ld procedure
* remote_raw_load Procedure: remote_raw_load procedure
* remote_raw_open Procedure: remote_raw_open procedure
* remote_raw_send Procedure: remote_raw_send procedure
* remote_raw_spawn Procedure: remote_raw_spawn procedure
* remote_raw_transmit Procedure: remote_raw_transmit procedure
* remote_raw_wait Procedure: remote_raw_wait procedure
* remote_reboot Procedure: remote_reboot procedure
* remote_send Procedure: remote_send procedure
* remote_spawn Procedure: remote_spawn procedure
* remote_swap_conn Procedure: remote_swap_conn procedure
* remote_transmit Procedure: remote_transmit procedure
* remote_upload Procedure: remote_upload procedure
* remote_wait Procedure: remote_wait procedure
* standard_close Procedure: standard_close procedure
* standard_download Procedure: standard_download procedure
* standard_exec Procedure: standard_exec procedure
* standard_file Procedure: standard_file procedure
* standard_load Procedure: standard_load procedure
* standard_reboot Procedure: standard_reboot procedure
* standard_send Procedure: standard_send procedure
* standard_spawn Procedure: standard_spawn procedure
* standard_transmit Procedure: standard_transmit procedure
* standard_upload Procedure: standard_upload procedure
* standard_wait Procedure: standard_wait procedure
* unix_clean_filename Procedure: unix_clean_filename procedure
 
 
File: dejagnu.info,  Node: call_remote procedure,  Next: check_for_board_status procedure,  Up: Procedures For Remote Communication
 
6.1.2.1 call_remote Procedure
.............................
 
     call_remote{type proc dest args}
 
'proc'
'dest'
'args'
 
 
File: dejagnu.info,  Node: check_for_board_status procedure,  Next: file_on_build procedure,  Prev: call_remote procedure,  Up: Procedures For Remote Communication
 
6.1.2.2 check_for_board_status Procedure
........................................
 
     check_for_board_status{variable}
 
'variable'
 
 
File: dejagnu.info,  Node: file_on_build procedure,  Next: file_on_host procedure,  Prev: check_for_board_status procedure,  Up: Procedures For Remote Communication
 
6.1.2.3 file_on_build Procedure
...............................
 
     file_on_build{op file args}
 
'op'
'file'
'args'
 
 
File: dejagnu.info,  Node: file_on_host procedure,  Next: local_exec procedure,  Prev: file_on_build procedure,  Up: Procedures For Remote Communication
 
6.1.2.4 file_on_host Procedure
..............................
 
     file_on_host{op file args}
 
'op'
'file'
'args'
 
 
File: dejagnu.info,  Node: local_exec procedure,  Next: remote_binary procedure,  Prev: file_on_host procedure,  Up: Procedures For Remote Communication
 
6.1.2.5 local_exec Procedure
............................
 
     local_exec{commandline inp outp timeout}
 
'inp'
'outp'
'timeout'
 
 
File: dejagnu.info,  Node: remote_binary procedure,  Next: remote_close procedure,  Prev: local_exec procedure,  Up: Procedures For Remote Communication
 
6.1.2.6 remote_binary Procedure
...............................
 
     remote_binary{host}
 
'host'
 
 
File: dejagnu.info,  Node: remote_close procedure,  Next: remote_download procedure,  Prev: remote_binary procedure,  Up: Procedures For Remote Communication
 
6.1.2.7 remote_close Procedure
..............................
 
     remote_close{shellid}
 
'shellid'
     This is the value returned by a call to 'remote_open'.  This closes
     the connection to the target so resources can be used by others.
     This parameter can be left off if the 'fileid' field in the
     'target_info' array is set.
 
 
File: dejagnu.info,  Node: remote_download procedure,  Next: remote_exec procedure,  Prev: remote_close procedure,  Up: Procedures For Remote Communication
 
6.1.2.8 remote_download Procedure
.................................
 
     remote_download{dest file args}
 
'dest'
'file'
'args'
 
 
File: dejagnu.info,  Node: remote_exec procedure,  Next: remote_expect procedure,  Prev: remote_download procedure,  Up: Procedures For Remote Communication
 
6.1.2.9 remote_exec Procedure
.............................
 
     remote_exec{hostname program args}
 
'hostname'
'program'
'args'
 
 
File: dejagnu.info,  Node: remote_expect procedure,  Next: remote_file procedure,  Prev: remote_exec procedure,  Up: Procedures For Remote Communication
 
6.1.2.10 remote_expect Procedure
................................
 
     remote_expect{board timeout args}
 
'board'
'timeout'
'args'
 
 
File: dejagnu.info,  Node: remote_file procedure,  Next: remote_ld procedure,  Prev: remote_expect procedure,  Up: Procedures For Remote Communication
 
6.1.2.11 remote_file Procedure
..............................
 
     remote_file{dest args}
 
'dest'
 
'args'
 
 
File: dejagnu.info,  Node: remote_ld procedure,  Next: remote_load procedure,  Prev: remote_file procedure,  Up: Procedures For Remote Communication
 
6.1.2.12 remote_ld Procedure
............................
 
     remote_ld{dest prog}
 
'dest'
'prog'
 
 
File: dejagnu.info,  Node: remote_load procedure,  Next: remote_open procedure,  Prev: remote_ld procedure,  Up: Procedures For Remote Communication
 
6.1.2.13 remote_load Procedure
..............................
 
     remote_load{dest prog args}
 
'dest'
'prog'
'args'
 
 
File: dejagnu.info,  Node: remote_open procedure,  Next: remote_pop_conn procedure,  Prev: remote_load procedure,  Up: Procedures For Remote Communication
 
6.1.2.14 remote_open Procedure
..............................
 
     remote_open{type}
 
'type'
     This is passed 'host' or 'target'.  Host or target refers to
     whether it is a connection to a remote target, or a remote host.
     This opens the connection to the desired target or host using the
     default values in the configuration system.  It returns that
     'spawn_id' of the process that manages the connection.  This value
     can be used in Expect or 'exp_send' statements, or passed to other
     procedures that need the connection process's id.  This also sets
     the 'fileid' field in the 'target_info' array.
 
 
File: dejagnu.info,  Node: remote_pop_conn procedure,  Next: remote_push_conn procedure,  Prev: remote_open procedure,  Up: Procedures For Remote Communication
 
6.1.2.15 remote_pop_conn Procedure
..................................
 
     remote_pop_conn{host}
 
'host'
 
 
File: dejagnu.info,  Node: remote_push_conn procedure,  Next: remote_raw_binary procedure,  Prev: remote_pop_conn procedure,  Up: Procedures For Remote Communication
 
6.1.2.16 remote_push_conn Procedure
...................................
 
     remote_push_conn{host}
 
'host'
 
 
File: dejagnu.info,  Node: remote_raw_binary procedure,  Next: remote_raw_close procedure,  Prev: remote_push_conn procedure,  Up: Procedures For Remote Communication
 
6.1.2.17 remote_raw_binary Procedure
....................................
 
     remote_raw_binary{host}
 
'host'
 
 
File: dejagnu.info,  Node: remote_raw_close procedure,  Next: remote_raw_file procedure,  Prev: remote_raw_binary procedure,  Up: Procedures For Remote Communication
 
6.1.2.18 remote_raw_close Procedure
...................................
 
     remote_raw_close{host}
 
'host'
 
 
File: dejagnu.info,  Node: remote_raw_file procedure,  Next: remote_raw_ld procedure,  Prev: remote_raw_close procedure,  Up: Procedures For Remote Communication
 
6.1.2.19 remote_raw_file Procedure
..................................
 
     remote_raw_file{dest args}
 
'dest'
 
'args'
 
 
File: dejagnu.info,  Node: remote_raw_ld procedure,  Next: remote_raw_load procedure,  Prev: remote_raw_file procedure,  Up: Procedures For Remote Communication
 
6.1.2.20 remote_raw_ld Procedure
................................
 
     remote_raw_ld{dest prog}
 
'dest'
'prog'
 
 
File: dejagnu.info,  Node: remote_raw_load procedure,  Next: remote_raw_open procedure,  Prev: remote_raw_ld procedure,  Up: Procedures For Remote Communication
 
6.1.2.21 remote_raw_load Procedure
..................................
 
     remote_raw_load{dest prog args}
 
'dest'
'prog'
'args'
 
 
File: dejagnu.info,  Node: remote_raw_open procedure,  Next: remote_raw_send procedure,  Prev: remote_raw_load procedure,  Up: Procedures For Remote Communication
 
6.1.2.22 remote_raw_open Procedure
..................................
 
     remote_raw_open{args}
 
'args'
 
 
File: dejagnu.info,  Node: remote_raw_send procedure,  Next: remote_raw_spawn procedure,  Prev: remote_raw_open procedure,  Up: Procedures For Remote Communication
 
6.1.2.23 remote_raw_send Procedure
..................................
 
     remote_raw_send{dest string}
 
'dest'
'string'
 
 
File: dejagnu.info,  Node: remote_raw_spawn procedure,  Next: remote_raw_transmit procedure,  Prev: remote_raw_send procedure,  Up: Procedures For Remote Communication
 
6.1.2.24 remote_raw_spawn Procedure
...................................
 
     remote_raw_spawn{dest commandline}
 
'dest'
'commandline'
 
 
File: dejagnu.info,  Node: remote_raw_transmit procedure,  Next: remote_raw_wait procedure,  Prev: remote_raw_spawn procedure,  Up: Procedures For Remote Communication
 
6.1.2.25 remote_raw_transmit Procedure
......................................
 
     remote_raw_transmit{dest file}
 
'dest'
'file'
 
 
File: dejagnu.info,  Node: remote_raw_wait procedure,  Next: remote_reboot procedure,  Prev: remote_raw_transmit procedure,  Up: Procedures For Remote Communication
 
6.1.2.26 remote_raw_wait Procedure
..................................
 
     remote_raw_wait{dest timeout}
 
'dest'
'timeout'
 
 
File: dejagnu.info,  Node: remote_reboot procedure,  Next: remote_send procedure,  Prev: remote_raw_wait procedure,  Up: Procedures For Remote Communication
 
6.1.2.27 remote_reboot Procedure
................................
 
Return value of this function depends on actual implementation of reboot
that will be used, in practice it is expected that 'remote_reboot'
returns _1_ on success and _0_ on failure.
 
     remote_reboot{host}
 
'host'
 
 
File: dejagnu.info,  Node: remote_send procedure,  Next: remote_spawn procedure,  Prev: remote_reboot procedure,  Up: Procedures For Remote Communication
 
6.1.2.28 remote_send Procedure
..............................
 
     remote_send{dest string}
 
'dest'
'string'
 
 
File: dejagnu.info,  Node: remote_spawn procedure,  Next: remote_swap_conn procedure,  Prev: remote_send procedure,  Up: Procedures For Remote Communication
 
6.1.2.29 remote_spawn Procedure
...............................
 
     remote_spawn{dest commandline args}
 
'dest'
'commandline'
'args'
 
 
File: dejagnu.info,  Node: remote_swap_conn procedure,  Next: remote_transmit procedure,  Prev: remote_spawn procedure,  Up: Procedures For Remote Communication
 
6.1.2.30 remote_swap_conn Procedure
...................................
 
     remote_swap_conn{host}
 
''
 
 
File: dejagnu.info,  Node: remote_transmit procedure,  Next: remote_upload procedure,  Prev: remote_swap_conn procedure,  Up: Procedures For Remote Communication
 
6.1.2.31 remote_transmit Procedure
..................................
 
     remote_transmit{dest file}
 
'dest'
'file'
 
 
File: dejagnu.info,  Node: remote_upload procedure,  Next: remote_wait procedure,  Prev: remote_transmit procedure,  Up: Procedures For Remote Communication
 
6.1.2.32 remote_upload Procedure
................................
 
     remote_upload{dest srcfile arg}
 
'dest'
'srcfile'
'arg'
 
 
File: dejagnu.info,  Node: remote_wait procedure,  Next: standard_close procedure,  Prev: remote_upload procedure,  Up: Procedures For Remote Communication
 
6.1.2.33 remote_wait Procedure
..............................
 
     remote_wait{dest timeout}
 
'dest'
'timeout'
 
 
File: dejagnu.info,  Node: standard_close procedure,  Next: standard_download procedure,  Prev: remote_wait procedure,  Up: Procedures For Remote Communication
 
6.1.2.34 standard_close Procedure
.................................
 
     standard_close{host}
 
'host'
 
 
File: dejagnu.info,  Node: standard_download procedure,  Next: standard_exec procedure,  Prev: standard_close procedure,  Up: Procedures For Remote Communication
 
6.1.2.35 standard_download Procedure
....................................
 
     standard_download{dest file destfile}
 
'dest'
'file'
'destfile'
 
 
File: dejagnu.info,  Node: standard_exec procedure,  Next: standard_file procedure,  Prev: standard_download procedure,  Up: Procedures For Remote Communication
 
6.1.2.36 standard_exec Procedure
................................
 
     standard_exec{hostname args}
 
'hostname'
'args'
 
 
File: dejagnu.info,  Node: standard_file procedure,  Next: standard_load procedure,  Prev: standard_exec procedure,  Up: Procedures For Remote Communication
 
6.1.2.37 standard_file Procedure
................................
 
     standard_file{dest op args}
 
''
 
 
File: dejagnu.info,  Node: standard_load procedure,  Next: standard_reboot procedure,  Prev: standard_file procedure,  Up: Procedures For Remote Communication
 
6.1.2.38 standard_load Procedure
................................
 
     standard_load{dest prog args}
 
'dest'
'prog'
'args'
 
 
File: dejagnu.info,  Node: standard_reboot procedure,  Next: standard_send procedure,  Prev: standard_load procedure,  Up: Procedures For Remote Communication
 
6.1.2.39 standard_reboot Procedure
..................................
 
It looks like that this procedure is never called, instead
'${board}_reboot' defined in 'base-config.exp' will be used because it
has higher priority and 'base-config.exp' is always imported by
'runtest'.
 
     standard_reboot{host}
 
'host'
 
 
File: dejagnu.info,  Node: standard_send procedure,  Next: standard_spawn procedure,  Prev: standard_reboot procedure,  Up: Procedures For Remote Communication
 
6.1.2.40 standard_send Procedure
................................
 
     standard_send{dest string}
 
'dest'
'string'
 
 
File: dejagnu.info,  Node: standard_spawn procedure,  Next: standard_transmit procedure,  Prev: standard_send procedure,  Up: Procedures For Remote Communication
 
6.1.2.41 standard_spawn Procedure
.................................
 
     standard_spawn{dest commandline}
 
'dest'
'commandline'
 
 
File: dejagnu.info,  Node: standard_transmit procedure,  Next: standard_upload procedure,  Prev: standard_spawn procedure,  Up: Procedures For Remote Communication
 
6.1.2.42 standard_transmit Procedure
....................................
 
     standard_transmit{dest file}
 
'dest'
'file'
 
 
File: dejagnu.info,  Node: standard_upload procedure,  Next: standard_wait procedure,  Prev: standard_transmit procedure,  Up: Procedures For Remote Communication
 
6.1.2.43 standard_upload Procedure
..................................
 
     standard_upload{dest srcfile destfile}
 
'dest'
'srcfile'
'destfile'
 
 
File: dejagnu.info,  Node: standard_wait procedure,  Next: unix_clean_filename procedure,  Prev: standard_upload procedure,  Up: Procedures For Remote Communication
 
6.1.2.44 standard_wait Procedure
................................
 
     standard_wait{dest timeout}
 
'dest'
'timeout'
 
 
File: dejagnu.info,  Node: unix_clean_filename procedure,  Prev: standard_wait procedure,  Up: Procedures For Remote Communication
 
6.1.2.45 unix_clean_filename Procedure
......................................
 
     unix_clean_filename{dest file}
 
'dest'
'file'
 
 
File: dejagnu.info,  Node: connprocs,  Next: Procedures For Target Boards,  Prev: Procedures For Remote Communication,  Up: Builtin Procedures
 
6.1.3 Procedures For Using Utilities to Connect
-----------------------------------------------
 
* Menu:
 
* telnet Procedure: telnet procedure
* rsh Procedure: rsh procedure
* tip Procedure: tip procedure
* kermit Procedure: kermit procedure
* kermit_open Procedure: kermit_open procedure
* kermit_command Procedure: kermit_command procedure
* kermit_send Procedure: kermit_send procedure
* kermit_transmit Procedure: kermit_transmit procedure
* telnet_open Procedure: telnet_open procedure
* telnet_binary Procedure: telnet_binary procedure
* telnet_transmit Procedure: telnet_transmit procedure
* tip_open Procedure: tip_open procedure
* rlogin_open Procedure: rlogin_open procedure
* rlogin_spawn Procedure: rlogin_spawn procedure
* rsh_open Procedure: rsh_open procedure
* rsh_download Procedure: rsh_download procedure
* rsh_upload Procedure: rsh_upload procedure
* rsh_exec Procedure: rsh_exec procedure
* ssh_close Procedure: ssh_close procedure
* ssh_exec Procedure: ssh_exec procedure
* ssh_download Procedure: ssh_download procedure
* ssh_upload Procedure: ssh_upload procedure
* ftp_open Procedure: ftp_open procedure
* ftp_upload Procedure: ftp_upload procedure
* ftp_download Procedure: ftp_download procedure
* ftp_close Procedure: ftp_close procedure
* tip_download Procedure: tip_download procedure
 
 
File: dejagnu.info,  Node: telnet procedure,  Next: rsh procedure,  Up: connprocs
 
6.1.3.1 telnet Procedure
........................
 
     telnet{hostname port}
 
     rlogin{hostname}
 
 
File: dejagnu.info,  Node: rsh procedure,  Next: tip procedure,  Prev: telnet procedure,  Up: connprocs
 
6.1.3.2 rsh Procedure
.....................
 
     rsh{hostname}
 
'hostname'
     This refers to the IP address or name (for example, an entry in
     '/etc/hosts') for this target.  The procedure names reflect the
     Unix utility used to establish a connection.  The optional 'port'
     is used to specify the IP port number.  The value of the 'netport'
     field in the 'target_info' array is used.  (was '$netport') This
     value has two parts, the hostname and the port number, separated by
     a _:_.  If host or target is used in the 'hostname' field, than the
     config array is used for all information.
 
 
File: dejagnu.info,  Node: tip procedure,  Next: kermit procedure,  Prev: rsh procedure,  Up: connprocs
 
6.1.3.3 tip Procedure
.....................
 
     tip{port}
 
'port'
     Connect using the Unix utility 'tip'.  'Port'must be a name from
     the tip configuration file '/etc/remote'.  Often, this is called
     'hardwire', or something like 'ttya'.  This file holds all the
     configuration data for the serial port.  The value of the 'serial'
     field in the 'target_info' array is used.  (was '$serialport') If
     'host' or 'target' is used in the 'port' field, than the config
     array is used for all information.  the config array is used for
     all information.
 
 
File: dejagnu.info,  Node: kermit procedure,  Next: kermit_open procedure,  Prev: tip procedure,  Up: connprocs
 
6.1.3.4 kermit Procedure
........................
 
     kermit{port bps}
 
'port'
     Connect using the program 'kermit'.  'Port' is the device name,
     e.g.  '/dev/ttyb'.
 
'bps'
     'bps' is the line speed to use (in its per second) for the
     connection.  The value of the 'serial' field in the 'target_info'
     array is used.  (was '$serialport') If 'host' or 'target' is used
     in the 'port' field, than the config array is used for all
     information.  the config array is used for all information.
 
 
File: dejagnu.info,  Node: kermit_open procedure,  Next: kermit_command procedure,  Prev: kermit procedure,  Up: connprocs
 
6.1.3.5 kermit_open Procedure
.............................
 
     kermit_open{dest args}
 
'dest'
'args'
 
 
File: dejagnu.info,  Node: kermit_command procedure,  Next: kermit_send procedure,  Prev: kermit_open procedure,  Up: connprocs
 
6.1.3.6 kermit_command Procedure
................................
 
     kermit_command{dest args}
 
'dest'
'args'
 
 
File: dejagnu.info,  Node: kermit_send procedure,  Next: kermit_transmit procedure,  Prev: kermit_command procedure,  Up: connprocs
 
6.1.3.7 kermit_send Procedure
.............................
 
     kermit_send{dest string args}
 
'dest'
'string'
'args'
 
 
File: dejagnu.info,  Node: kermit_transmit procedure,  Next: telnet_open procedure,  Prev: kermit_send procedure,  Up: connprocs
 
6.1.3.8 kermit_transmit Procedure
.................................
 
     kermit_transmit{dest file args}
 
'dest'
'file'
'args'
 
 
File: dejagnu.info,  Node: telnet_open procedure,  Next: telnet_binary procedure,  Prev: kermit_transmit procedure,  Up: connprocs
 
6.1.3.9 telnet_open Procedure
.............................
 
     telnet_open{hostname args}
 
'hostname'
'args'
 
 
File: dejagnu.info,  Node: telnet_binary procedure,  Next: telnet_transmit procedure,  Prev: telnet_open procedure,  Up: connprocs
 
6.1.3.10 telnet_binary Procedure
................................
 
     telnet_binary{hostname}
 
'hostname'
 
 
File: dejagnu.info,  Node: telnet_transmit procedure,  Next: tip_open procedure,  Prev: telnet_binary procedure,  Up: connprocs
 
6.1.3.11 telnet_transmit Procedure
..................................
 
     telnet_transmit{dest file args}
 
'dest'
'file'
'args'
 
 
File: dejagnu.info,  Node: tip_open procedure,  Next: rlogin_open procedure,  Prev: telnet_transmit procedure,  Up: connprocs
 
6.1.3.12 tip_open Procedure
...........................
 
     tip_open{hostname}
 
'hostname'
 
 
File: dejagnu.info,  Node: rlogin_open procedure,  Next: rlogin_spawn procedure,  Prev: tip_open procedure,  Up: connprocs
 
6.1.3.13 rlogin_open Procedure
..............................
 
     rlogin_open{arg}
 
'arg'
 
 
File: dejagnu.info,  Node: rlogin_spawn procedure,  Next: rsh_open procedure,  Prev: rlogin_open procedure,  Up: connprocs
 
6.1.3.14 rlogin_spawn Procedure
...............................
 
     rlogin_spawn{dest cmdline}
 
'dest'
'cmdline'
 
 
File: dejagnu.info,  Node: rsh_open procedure,  Next: rsh_download procedure,  Prev: rlogin_spawn procedure,  Up: connprocs
 
6.1.3.15 rsh_open Procedure
...........................
 
     rsh_open{hostname}
 
'hostname'
 
 
File: dejagnu.info,  Node: rsh_download procedure,  Next: rsh_upload procedure,  Prev: rsh_open procedure,  Up: connprocs
 
6.1.3.16 rsh_download Procedure
...............................
 
     rsh_download{desthost srcfile destfile}
 
'desthost'
'srcfile'
'destfile'
 
 
File: dejagnu.info,  Node: rsh_upload procedure,  Next: rsh_exec procedure,  Prev: rsh_download procedure,  Up: connprocs
 
6.1.3.17 rsh_upload Procedure
.............................
 
     rsh_upload{desthost srcfile destfile}
 
'desthost'
'srcfile'
'destfile'
 
 
File: dejagnu.info,  Node: rsh_exec procedure,  Next: ssh_close procedure,  Prev: rsh_upload procedure,  Up: connprocs
 
6.1.3.18 rsh_exec Procedure
...........................
 
     rsh_exec{boardname cmd args}
 
'boardname'
'cmd'
'args'
 
 
File: dejagnu.info,  Node: ssh_close procedure,  Next: ssh_exec procedure,  Prev: rsh_exec procedure,  Up: connprocs
 
6.1.3.19 ssh_close procedure
............................
 
     ssh_close {desthost}
 
'desthost'
 
 
File: dejagnu.info,  Node: ssh_exec procedure,  Next: ssh_download procedure,  Prev: ssh_close procedure,  Up: connprocs
 
6.1.3.20 ssh_exec procedure
...........................
 
     ssh_exec{boardname program pargs inp outp}
 
'boardname'
'program'
'pargs'
'inp'
'outp'
 
 
File: dejagnu.info,  Node: ssh_download procedure,  Next: ssh_upload procedure,  Prev: ssh_exec procedure,  Up: connprocs
 
6.1.3.21 ssh_download procedure
...............................
 
     ssh_download{desthost srcfile destfile}
 
'desthost'
'srcfile'
'destfile'
 
 
File: dejagnu.info,  Node: ssh_upload procedure,  Next: ftp_open procedure,  Prev: ssh_download procedure,  Up: connprocs
 
6.1.3.22 ssh_upload procedure
.............................
 
     ssh_upload{desthost srcfile destfile}
 
'desthost'
'srcfile'
'destfile'
 
 
File: dejagnu.info,  Node: ftp_open procedure,  Next: ftp_upload procedure,  Prev: ssh_upload procedure,  Up: connprocs
 
6.1.3.23 ftp_open Procedure
...........................
 
     ftp_open{host}
 
'host'
 
 
File: dejagnu.info,  Node: ftp_upload procedure,  Next: ftp_download procedure,  Prev: ftp_open procedure,  Up: connprocs
 
6.1.3.24 ftp_upload Procedure
.............................
 
     ftp_upload{host remotefile localfile}
 
'host'
'remotefile'
'localfile'
 
 
File: dejagnu.info,  Node: ftp_download procedure,  Next: ftp_close procedure,  Prev: ftp_upload procedure,  Up: connprocs
 
6.1.3.25 ftp_download Procedure
...............................
 
     ftp_download{host localfile remotefile}
 
'host'
'localfile'
'remotefile'
 
 
File: dejagnu.info,  Node: ftp_close procedure,  Next: tip_download procedure,  Prev: ftp_download procedure,  Up: connprocs
 
6.1.3.26 ftp_close Procedure
............................
 
     ftp_close{host}
 
'host'
 
 
File: dejagnu.info,  Node: tip_download procedure,  Prev: ftp_close procedure,  Up: connprocs
 
6.1.3.27 tip_download Procedure
...............................
 
     tip_download{spawnid file}
 
'spawnid'
     Download 'file' to the process 'spawnid' (the value returned when
     the connection was established), using the '~put' command under
     tip.  Most often used for single board computers that require
     downloading programs in ASCII S-records.  Returns _1_ if an error
     occurs, _0_ otherwise.
 
'file'
     This is the filename to download.
 
 
File: dejagnu.info,  Node: Procedures For Target Boards,  Next: target database library file,  Prev: connprocs,  Up: Builtin Procedures
 
6.1.4 Procedures For Target Boards
----------------------------------
 
* Menu:
 
* default_link Procedure: default_link procedure
* default_target_assemble Procedure: default_target_assemble procedure
* default_target_compile Procedure: default_target_compile procedure
* pop_config Procedure: pop_config procedure
* prune_warnings Procedure: prune_warnings procedure
* push_build Procedure: push_build procedure
* push_config Procedure: push_config procedure
* reboot_target Procedure: reboot_target procedure
* target_assemble Procedure: target_assemble procedure
* target_compile Procedure: target_compile procedure
 
 
File: dejagnu.info,  Node: default_link procedure,  Next: default_target_assemble procedure,  Up: Procedures For Target Boards
 
6.1.4.1 default_link Procedure
..............................
 
     default_link{board objects destfile flags}
 
'board'
'objects'
'destfile'
'flags'
 
 
File: dejagnu.info,  Node: default_target_assemble procedure,  Next: default_target_compile procedure,  Prev: default_link procedure,  Up: Procedures For Target Boards
 
6.1.4.2 default_target_assemble Procedure
.........................................
 
     default_target_assemble{source destfile flags}
 
'source'
'destfile'
'flags'
 
 
File: dejagnu.info,  Node: default_target_compile procedure,  Next: pop_config procedure,  Prev: default_target_assemble procedure,  Up: Procedures For Target Boards
 
6.1.4.3 default_target_compile Procedure
........................................
 
     default_target_compile{source destfile type options}
 
'source'
'destfile'
'type'
'options'
 
 
File: dejagnu.info,  Node: pop_config procedure,  Next: prune_warnings procedure,  Prev: default_target_compile procedure,  Up: Procedures For Target Boards
 
6.1.4.4 pop_config Procedure
............................
 
     pop_config{type}
 
'type'
 
 
File: dejagnu.info,  Node: prune_warnings procedure,  Next: push_build procedure,  Prev: pop_config procedure,  Up: Procedures For Target Boards
 
6.1.4.5 prune_warnings Procedure
................................
 
     prune_warnings{text}
 
'text'
 
 
File: dejagnu.info,  Node: push_build procedure,  Next: push_config procedure,  Prev: prune_warnings procedure,  Up: Procedures For Target Boards
 
6.1.4.6 push_build Procedure
............................
 
     push_build{name}
 
'name'
 
 
File: dejagnu.info,  Node: push_config procedure,  Next: reboot_target procedure,  Prev: push_build procedure,  Up: Procedures For Target Boards
 
6.1.4.7 push_config Procedure
.............................
 
     push_config{type name}
 
'type'
 
'name'
 
 
File: dejagnu.info,  Node: reboot_target procedure,  Next: target_assemble procedure,  Prev: push_config procedure,  Up: Procedures For Target Boards
 
6.1.4.8 reboot_target Procedure
...............................
 
Reboot the target.
 
     reboot_target
 
 
File: dejagnu.info,  Node: target_assemble procedure,  Next: target_compile procedure,  Prev: reboot_target procedure,  Up: Procedures For Target Boards
 
6.1.4.9 target_assemble Procedure
.................................
 
     target_assemble{source destfile flags}
 
'source'
'destfile'
'flags'
 
 
File: dejagnu.info,  Node: target_compile procedure,  Prev: target_assemble procedure,  Up: Procedures For Target Boards
 
6.1.4.10 target_compile Procedure
.................................
 
     target_compile{source destfile type options}
 
'source'
'destfile'
'type'
'options'
 
 
File: dejagnu.info,  Node: target database library file,  Next: platform dependent procedures,  Prev: Procedures For Target Boards,  Up: Builtin Procedures
 
6.1.5 Target Database Procedures
--------------------------------
 
* Menu:
 
* board_info Procedure: board_info procedure
* host_info Procedure: host_info procedure
* set_board_info Procedure: set_board_info procedure
* add_board_info Procedure: add_board_info procedure
* set_currtarget_info Procedure: set_currtarget_info procedure
* target_info Procedure: target_info procedure
* unset_board_info Procedure: unset_board_info procedure
* unset_currtarget_info Procedure: unset_currtarget_info procedure
* push_target Procedure: push_target procedure
* pop_target Procedure: poptarget procedure
* list_targets Procedure: list_targets procedure
* push_host Procedure: push_host procedure
* pop_host Procedure: pop_host procedure
* compile Procedure: compile procedure
* archive Procedure: archive procedure
* ranlib Procedure: ranlib procedure
* execute_anywhere Procedure: execute_anywhere procedure
 
 
File: dejagnu.info,  Node: board_info procedure,  Next: host_info procedure,  Up: target database library file
 
6.1.5.1 board_info Procedure
............................
 
     board_info{machine op args}
 
'machine'
'op'
'args'
 
 
File: dejagnu.info,  Node: host_info procedure,  Next: set_board_info procedure,  Prev: board_info procedure,  Up: target database library file
 
6.1.5.2 host_info Procedure
...........................
 
     host_info{op args}
 
'op'
'args'
 
 
File: dejagnu.info,  Node: set_board_info procedure,  Next: add_board_info procedure,  Prev: host_info procedure,  Up: target database library file
 
6.1.5.3 set_board_info Procedure
................................
 
This checks if 'board_info' array's field _entry_ has been set already
and if not, then sets it to _value_.
 
     set_board_info{entry value}
 
'entry'
     The name of a 'board_info' field to operate on.
 
'value'
     The value to set the field to.
 
 
File: dejagnu.info,  Node: add_board_info procedure,  Next: set_currtarget_info procedure,  Prev: set_board_info procedure,  Up: target database library file
 
6.1.5.4 add_board_info Procedure
................................
 
This treats 'board_info' array's field _entry_ as a TCL list and adds
_value_ at the end.
 
     add_board_info{entry value}
 
'entry'
     The name of a 'board_info' field to operate on.
 
'value'
     The value to add to the field.
 
 
File: dejagnu.info,  Node: set_currtarget_info procedure,  Next: target_info procedure,  Prev: add_board_info procedure,  Up: target database library file
 
6.1.5.5 set_currtarget_info Procedure
.....................................
 
     set_currtarget_info{entry value}
 
'entry'
'value'
 
 
File: dejagnu.info,  Node: target_info procedure,  Next: unset_board_info procedure,  Prev: set_currtarget_info procedure,  Up: target database library file
 
6.1.5.6 target_info Procedure
.............................
 
     target_info{op args}
 
'op'
'args'
 
 
File: dejagnu.info,  Node: unset_board_info procedure,  Next: unset_currtarget_info procedure,  Prev: target_info procedure,  Up: target database library file
 
6.1.5.7 unset_board_info Procedure
..................................
 
This checks if 'board_info' array's field _entry_ has been set and if
so, then removes it.
 
     unset_board_info{entry}
 
'entry'
     The name of a 'board_info' field to operate on.
 
 
File: dejagnu.info,  Node: unset_currtarget_info procedure,  Next: push_target procedure,  Prev: unset_board_info procedure,  Up: target database library file
 
6.1.5.8 unset_currtarget_info Procedure
.......................................
 
     unset_currtarget_info{entry}
 
'entry'
 
 
File: dejagnu.info,  Node: push_target procedure,  Next: poptarget procedure,  Prev: unset_currtarget_info procedure,  Up: target database library file
 
6.1.5.9 push_target Procedure
.............................
 
This makes the target named _name_ be the current target connection.
The value of _name_ is an index into the 'target_info' array and is set
in the global config file.
 
     push_target{name}
 
'name'
     The name of the target to make current connection.
 
 
File: dejagnu.info,  Node: poptarget procedure,  Next: list_targets procedure,  Prev: push_target procedure,  Up: target database library file
 
6.1.5.10 pop_target Procedure
.............................
 
This unsets the current target connection.
 
     pop_target
 
 
File: dejagnu.info,  Node: list_targets procedure,  Next: push_host procedure,  Prev: poptarget procedure,  Up: target database library file
 
6.1.5.11 list_targets Procedure
...............................
 
This lists all the supported targets for this architecture.
 
     list_targets
 
 
File: dejagnu.info,  Node: push_host procedure,  Next: pop_host procedure,  Prev: list_targets procedure,  Up: target database library file
 
6.1.5.12 push_host Procedure
............................
 
This makes the host named _name_ be the current remote host connection.
The value of _name_ is an index into the 'target_info' array and is set
in the global config file.
 
     push_host{name}
 
'name'
 
 
File: dejagnu.info,  Node: pop_host procedure,  Next: compile procedure,  Prev: push_host procedure,  Up: target database library file
 
6.1.5.13 pop_host Procedure
...........................
 
This unsets the current host connection.
 
     pop_host
 
 
File: dejagnu.info,  Node: compile procedure,  Next: archive procedure,  Prev: pop_host procedure,  Up: target database library file
 
6.1.5.14 compile Procedure
..........................
 
This invokes the compiler as set by CC to compile the file 'file'.  The
default options for many cross compilation targets are _guessed_ by
DejaGnu, and these options can be added to by passing in more parameters
as arguments to 'compile'.  Optionally, this will also use the value of
the _cflags_ field in the target config array.  If the host is not the
same as the build machines, then then compiler is run on the remote host
using 'execute_anywhere'.
 
     compile{file}
 
'file'
 
 
File: dejagnu.info,  Node: archive procedure,  Next: ranlib procedure,  Prev: compile procedure,  Up: target database library file
 
6.1.5.15 archive Procedure
..........................
 
This produces an archive file.  Any parameters passed to 'archive' are
used in addition to the default flags.  Optionally, this will also use
the value of the _arflags_ field in the target config array.  If the
host is not the same as the build machines, then then archiver is run on
the remote host using 'execute_anywhere'.
 
     archive{file}
 
'file'
 
 
File: dejagnu.info,  Node: ranlib procedure,  Next: execute_anywhere procedure,  Prev: archive procedure,  Up: target database library file
 
6.1.5.16 ranlib Procedure
.........................
 
This generates an index for the archive file for systems that aren't
POSIX yet.  Any parameters passed to 'ranlib' are used in for the flags.
 
     ranlib{file}
 
'file'
 
 
File: dejagnu.info,  Node: execute_anywhere procedure,  Prev: ranlib procedure,  Up: target database library file
 
6.1.5.17 execute_anywhere Procedure
...................................
 
This executes the _cmdline_ on the proper host.  This should be used as
a replacement for the Tcl command 'exec' as this version utilizes the
target config info to execute this command on the build machine or a
remote host.  All config information for the remote host must be setup
to have this command work.  If this is a Canadian cross (where we test a
cross compiler that runs on a different host then where DejaGnu is
running) then a connection is made to the remote host and the command is
executed there.  It returns either REMOTERROR (for an error) or the
output produced when the command was executed.  This is used for running
the tool to be tested, not a test case.
 
     execute_anywhere{cmdline}
 
'cmdline'
 
 
File: dejagnu.info,  Node: platform dependent procedures,  Next: Utility Procedures,  Prev: target database library file,  Up: Builtin Procedures
 
6.1.6 Platform Dependent Procedures
-----------------------------------
 
Each combination of target and tool requires some target-dependent
procedures.  The names of these procedures have a common form: the tool
name, followed by an underscore ___, and finally a suffix describing the
procedure's purpose.  For example, a procedure to extract the version
from GDB is called 'gdb_version'.
 
   'runtest' itself calls only two of these procedures, '${tool}_exit'
and '${tool}_version'; these procedures use no arguments.
 
   The other two procedures, '${tool}_start' and '${tool}_load', are
only called by the test suites themselves (or by testsuite-specific
initialization code); they may take arguments or not, depending on the
conventions used within each testsuite.
 
   The usual convention for return codes from any of these procedures
(although it is not required by 'runtest') is to return _0_ if the
procedure succeeded, _1_ if it failed, and _-1_ if there was a
communication error.
 
* Menu:
 
* ${tool}_start Procedure: ${tool}_start procedure
* ${tool}_load Procedure: ${tool}_load procedure
* ${tool}_exit Procedure: ${tool}_exit procedure
* ${tool}_version Procedure: ${tool}_version procedure
 
 
File: dejagnu.info,  Node: ${tool}_start procedure,  Next: ${tool}_load procedure,  Up: platform dependent procedures
 
6.1.6.1 ${tool}_start Procedure
...............................
 
Starts a particular tool.  For an interactive tool, '${tool}_start'
starts and initializes the tool, leaving the tool up and running for the
test cases; an example is 'gdb_start', the start function for GDB. For a
batch-oriented tool, '${tool}_start' is optional; the recommended
convention is to let '${tool}_start' run the tool, leaving the output in
a variable called 'comp_output'.  Test scripts can then analyze
'$comp_output' to determine the test results.  An example of this second
kind of start function is 'gcc_start', the start function for GCC.
 
   DejaGnu itself does not call '${tool}_start'.  The initialization
module '${tool}_init.exp' must call '${tool}_start' for interactive
tools; for batch-oriented tools, each individual test script calls
'${tool}_start' (or makes other arrangements to run the tool).
 
     ${tool}_start
 
 
File: dejagnu.info,  Node: ${tool}_load procedure,  Next: ${tool}_exit procedure,  Prev: ${tool}_start procedure,  Up: platform dependent procedures
 
6.1.6.2 ${tool}_load Procedure
..............................
 
Loads something into a tool.  For an interactive tool, this conditions
the tool for a particular test case; for example, 'gdb_load' loads a new
executable file into the debugger.  For batch-oriented tools,
'${tool}_load' may do nothing--though, for example, the GCC support uses
'gcc_load' to load and run a binary on the target environment.
Conventionally, '${tool}_load' leaves the output of any program it runs
in a variable called '$exec_output'.  Writing '${tool}_load' can be the
most complex part of extending DejaGnu to a new tool or a new target, if
it requires much communication coding or file downloading.  Test scripts
call '${tool}_load'.
 
     ${tool}_load
 
 
File: dejagnu.info,  Node: ${tool}_exit procedure,  Next: ${tool}_version procedure,  Prev: ${tool}_load procedure,  Up: platform dependent procedures
 
6.1.6.3 ${tool}_exit Procedure
..............................
 
Cleans up (if necessary) before DejaGnu exits.  For interactive tools,
this usually ends the interactive session.  You can also use
'${tool}_exit' to remove any temporary files left over from the tests.
'runtest' calls '${tool}_exit'.
 
     ${tool}_exit
 
 
File: dejagnu.info,  Node: ${tool}_version procedure,  Prev: ${tool}_exit procedure,  Up: platform dependent procedures
 
6.1.6.4 ${tool}_version Procedure
.................................
 
Prints the version label and number for '${tool}'.  This is called by
the DejaGnu procedure that prints the final summary report.  The output
should consist of the full path name used for the tested tool, and its
version number.
 
     ${tool}_version
 
 
File: dejagnu.info,  Node: Utility Procedures,  Next: Libgloss,  Prev: platform dependent procedures,  Up: Builtin Procedures
 
6.1.7 Utility Procedures
------------------------
 
* Menu:
 
* getdirs Procedure: getdirs procedure
* find Procedure: find procedure
* which Procedure: which procedure
* grep Procedure: grep procedure
* prune Procedure: prune procedure
* runtest_file_p Procedure: runtest_file_p procedure
* diff Procedure: diff procedure
* setenv Procedure: setenv procedure
* unsetenv Procedure: unsetenv procedure
* getenv Procedure: getenv procedure
* prune_system_crud Procedure: prune_system_crud procedure
 
 
File: dejagnu.info,  Node: getdirs procedure,  Next: find procedure,  Up: Utility Procedures
 
6.1.7.1 getdirs Procedure
.........................
 
Returns a list of all the directories in the single directory a single
directory that match an optional pattern.
 
     getdirs{rootdir pattern}
 
'args'
 
'pattern'
     If you do not specify 'pattern', 'Getdirs' assumes a default
     pattern of _*_.  You may use the common shell wildcard characters
     in the pattern.  If no directories match the pattern, then a NULL
     string is returned.
 
 
File: dejagnu.info,  Node: find procedure,  Next: which procedure,  Prev: getdirs procedure,  Up: Utility Procedures
 
6.1.7.2 find Procedure
......................
 
Search for files whose names match _pattern_ (using shell wildcard
characters for filename expansion).  Search subdirectories recursively,
starting at _rootdir_.  The result is the list of files whose names
match; if no files match, the result is empty.  Filenames in the result
include all intervening subdirectory names.  If no files match the
pattern, then a NULL string is returned.
 
     find{rootdir pattern}
 
'rootdir'
     The top level directory to search the search from.
 
'pattern'
     A csh "glob" style regular expression representing the files to
     find.
 
 
File: dejagnu.info,  Node: which procedure,  Next: grep procedure,  Prev: find procedure,  Up: Utility Procedures
 
6.1.7.3 which Procedure
.......................
 
Searches the execution path for an executable file _binary_, like the
BSD 'which' utility.  This procedure uses the shell environment variable
_PATH_. It returns _0_ if the binary is not in the path, or if there is
no _PATH_ environment variable.  If 'binary' is in the path, it returns
the full path to 'binary'.
 
     which{file}
 
'binary'
     The executable program or shell script to look for.
 
 
File: dejagnu.info,  Node: grep procedure,  Next: prune procedure,  Prev: which procedure,  Up: Utility Procedures
 
6.1.7.4 grep Procedure
......................
 
Search the file called 'filename' (a fully specified path) for lines
that contain a match for regular expression _regexp_.  The result is a
list of all the lines that match.  If no lines match, the result is an
empty string.  Specify _regexp_ using the standard regular expression
style used by the Unix utility program grep.
 
   Use the optional third argument _line_ to start lines in the result
with the line number in 'filename'.  (This argument is simply an option
flag; type it just as shown '--line'.)
 
     grep{filename regexp -line}
 
'filename'
     The file to search.
 
'regexp'
     The Unix style regular expression (as used by the 'grep' Unix
     utility) to search for.
 
'--line'
     Prefix the line number to each line where the regexp matches.
 
 
File: dejagnu.info,  Node: prune procedure,  Next: runtest_file_p procedure,  Prev: grep procedure,  Up: Utility Procedures
 
6.1.7.5 prune Procedure
.......................
 
This procedure is deprecated and will be removed in the next release of
DejaGnu.  If a testsuite uses this procedure, a copy of the procedure
should be made and placed in the lib directory of the testsuite.
 
 
File: dejagnu.info,  Node: runtest_file_p procedure,  Next: diff procedure,  Prev: prune procedure,  Up: Utility Procedures
 
6.1.7.6 runtest_file_p Procedure
................................
 
Search _runtest_s for _testcase_ and return _1_ if found, _0_ if not.
_runtests_ is a list of two elements.  The first is a copy of what was
on the right side of the _=_ if
 
     foo.exp="..."
 
   was specified, or an empty string if no such argument is present.
The second is the pathname of the current testcase under consideration.
This is used by tools like compilers where each testcase is a file.
 
     runtest_file_p{runtests testcase}
 
'runtests'
     The list of patterns to compare against.
 
'testcase'
     The test case filename.
 
 
File: dejagnu.info,  Node: diff procedure,  Next: setenv procedure,  Prev: runtest_file_p procedure,  Up: Utility Procedures
 
6.1.7.7 diff Procedure
......................
 
Compares the two files and returns a _1_ if they match, or a _0_ if they
don't.  If 'verbose' is set, then it'll print the differences to the
screen.
 
     diff{file_1 file_2}
 
'file_1'
     The first file to compare.
 
'file_2'
     The second file to compare.
 
 
File: dejagnu.info,  Node: setenv procedure,  Next: unsetenv procedure,  Prev: diff procedure,  Up: Utility Procedures
 
6.1.7.8 setenv Procedure
........................
 
Sets the environment variable _var_ to the value _val_.
 
     setenv{var val}
 
'var'
     The environment variable to set.
 
'val'
     The value to set the variable to.
 
 
File: dejagnu.info,  Node: unsetenv procedure,  Next: getenv procedure,  Prev: setenv procedure,  Up: Utility Procedures
 
6.1.7.9 unsetenv Procedure
..........................
 
Unsets the environment variable _var_.
 
     unsetenv{var}
 
'var'
     The environment variable to unset.
 
 
File: dejagnu.info,  Node: getenv procedure,  Next: prune_system_crud procedure,  Prev: unsetenv procedure,  Up: Utility Procedures
 
6.1.7.10 getenv Procedure
.........................
 
Returns the value of _var_ in the environment if it exists, otherwise it
returns NULL.
 
     getenv{var}
 
'var'
     The environment variable to get the value of.
 
 
File: dejagnu.info,  Node: prune_system_crud procedure,  Prev: getenv procedure,  Up: Utility Procedures
 
6.1.7.11 prune_system_crud Procedure
....................................
 
For system _system_, delete text the host or target operating system
might issue that will interfere with pattern matching of program output
in _text_.  An example is the message that is printed if a shared
library is out of date.
 
     prune_system_crud{system test}
 
'system'
     The system error messages to look for to screen out.
 
'text'
     The Tcl variable containing the text.
 
 
File: dejagnu.info,  Node: Libgloss,  Next: Debugging Procedures,  Prev: Utility Procedures,  Up: Builtin Procedures
 
6.1.8 Libgloss, a free board support package (BSP)
--------------------------------------------------
 
Libgloss is a free "BSP" (Board Support Package) commonly used with GCC
and G++ to produce a fully linked executable image for an embedded
systems.
 
* Menu:
 
* libgloss_link_flags Procedure: libgloss_link_flags procedure
* libgloss_include_flags Procedure: libgloss_include_flags procedure
* newlib_link_flags Procedure: newlib_link_flags procedure
* newlib_include_flags Procedure: newlib_include_flags procedure
* libio_include_flags Procedure: libio_include_flags procedure
* libio_link_flags Procedure: libio_link_flags procedure
* g++_include_flags Procedure: g++_include_flags procedure
* g++_link_flags Procedure: g++_link_flags procedure
* libstdc++_include_flags Procedure: libstdc++_include_flags procedure
* libstdc++_link_flags Procedure: libstdc++_link_flags procedure
* get_multilibs Procedure: get_multilibs procedure
* find_binutils_prog Procedure: find_binutils_prog procedure
* find_gcc Procedure: find_gcc procedure
* find_gcj Procedure: find_gcj procedure
* find_g++ Procedure: find_g++ procedure
* find_g77 Procedure: find_g77 procedure
* find_gfortran Procedure: find_gfortran procedure
* process_multilib_options Procedure: process_multilib_options procedure
* add_multilib_option Procedure: add_multilib_option procedure
* find_gas Procedure: find_gas procedure
* find_ld Procedure: find_ld procedure
* build_wrapper Procedure: build_wrapper procedure
* winsup_include_flags Procedure: winsup_include_flags procedure
* winsup_link_flags Procedure: winsup_link_flags procedure
 
 
File: dejagnu.info,  Node: libgloss_link_flags procedure,  Next: libgloss_include_flags procedure,  Up: Libgloss
 
6.1.8.1 libgloss_link_flags Procedure
.....................................
 
     libgloss_link_flags{args}
 
'args'
 
 
File: dejagnu.info,  Node: libgloss_include_flags procedure,  Next: newlib_link_flags procedure,  Prev: libgloss_link_flags procedure,  Up: Libgloss
 
6.1.8.2 libgloss_include_flags Procedure
........................................
 
     libgloss_include_flags{args}
 
'args'
 
 
File: dejagnu.info,  Node: newlib_link_flags procedure,  Next: newlib_include_flags procedure,  Prev: libgloss_include_flags procedure,  Up: Libgloss
 
6.1.8.3 newlib_link_flags Procedure
...................................
 
     newlib_link_flags{args}
 
'args'
 
 
File: dejagnu.info,  Node: newlib_include_flags procedure,  Next: libio_include_flags procedure,  Prev: newlib_link_flags procedure,  Up: Libgloss
 
6.1.8.4 newlib_include_flags Procedure
......................................
 
     newlib_include_flags{args}
 
'args'
 
 
File: dejagnu.info,  Node: libio_include_flags procedure,  Next: libio_link_flags procedure,  Prev: newlib_include_flags procedure,  Up: Libgloss
 
6.1.8.5 libio_include_flags Procedure
.....................................
 
     libio_include_flags{args}
 
'args'
 
 
File: dejagnu.info,  Node: libio_link_flags procedure,  Next: g++_include_flags procedure,  Prev: libio_include_flags procedure,  Up: Libgloss
 
6.1.8.6 libio_link_flags Procedure
..................................
 
     libio_link_flags{args}
 
'args'
 
 
File: dejagnu.info,  Node: g++_include_flags procedure,  Next: g++_link_flags procedure,  Prev: libio_link_flags procedure,  Up: Libgloss
 
6.1.8.7 g++_include_flags Procedure
...................................
 
     g++_include_flags{args}
 
'args'
 
 
File: dejagnu.info,  Node: g++_link_flags procedure,  Next: libstdc++_include_flags procedure,  Prev: g++_include_flags procedure,  Up: Libgloss
 
6.1.8.8 g++_link_flags Procedure
................................
 
     g++_link_flags{args}
 
'args'
 
 
File: dejagnu.info,  Node: libstdc++_include_flags procedure,  Next: libstdc++_link_flags procedure,  Prev: g++_link_flags procedure,  Up: Libgloss
 
6.1.8.9 libstdc++_include_flags Procedure
.........................................
 
     libstdc++_include_flags{args}
 
'args'
 
 
File: dejagnu.info,  Node: libstdc++_link_flags procedure,  Next: get_multilibs procedure,  Prev: libstdc++_include_flags procedure,  Up: Libgloss
 
6.1.8.10 libstdc++_link_flags Procedure
.......................................
 
     libstdc++_link_flags{args}
 
'args'
 
 
File: dejagnu.info,  Node: get_multilibs procedure,  Next: find_binutils_prog procedure,  Prev: libstdc++_link_flags procedure,  Up: Libgloss
 
6.1.8.11 get_multilibs Procedure
................................
 
     get_multilibs{args}
 
'args'
 
 
File: dejagnu.info,  Node: find_binutils_prog procedure,  Next: find_gcc procedure,  Prev: get_multilibs procedure,  Up: Libgloss
 
6.1.8.12 find_binutils_prog Procedure
.....................................
 
     find_binutils_prog{name}
 
'name'
 
 
File: dejagnu.info,  Node: find_gcc procedure,  Next: find_gcj procedure,  Prev: find_binutils_prog procedure,  Up: Libgloss
 
6.1.8.13 find_gcc Procedure
...........................
 
     find_gcc
 
 
File: dejagnu.info,  Node: find_gcj procedure,  Next: find_g++ procedure,  Prev: find_gcc procedure,  Up: Libgloss
 
6.1.8.14 find_gcj Procedure
...........................
 
     find_gcj
 
 
File: dejagnu.info,  Node: find_g++ procedure,  Next: find_g77 procedure,  Prev: find_gcj procedure,  Up: Libgloss
 
6.1.8.15 find_g++ Procedure
...........................
 
     find_g++
 
 
File: dejagnu.info,  Node: find_g77 procedure,  Next: find_gfortran procedure,  Prev: find_g++ procedure,  Up: Libgloss
 
6.1.8.16 find_g77 Procedure
...........................
 
     find_g77
 
 
File: dejagnu.info,  Node: find_gfortran procedure,  Next: process_multilib_options procedure,  Prev: find_g77 procedure,  Up: Libgloss
 
6.1.8.17 find_gfortran Procedure
................................
 
     find_gfortran
 
 
File: dejagnu.info,  Node: process_multilib_options procedure,  Next: add_multilib_option procedure,  Prev: find_gfortran procedure,  Up: Libgloss
 
6.1.8.18 process_multilib_options Procedure
...........................................
 
     process_multilib_options{args}
 
'args'
 
 
File: dejagnu.info,  Node: add_multilib_option procedure,  Next: find_gas procedure,  Prev: process_multilib_options procedure,  Up: Libgloss
 
6.1.8.19 add_multilib_option Procedure
......................................
 
     add_multilib_option{args}
 
'args'
 
 
File: dejagnu.info,  Node: find_gas procedure,  Next: find_ld procedure,  Prev: add_multilib_option procedure,  Up: Libgloss
 
6.1.8.20 find_gas Procedure
...........................
 
     find_gas
 
 
File: dejagnu.info,  Node: find_ld procedure,  Next: build_wrapper procedure,  Prev: find_gas procedure,  Up: Libgloss
 
6.1.8.21 find_ld Procedure
..........................
 
     find_ld
 
 
File: dejagnu.info,  Node: build_wrapper procedure,  Next: winsup_include_flags procedure,  Prev: find_ld procedure,  Up: Libgloss
 
6.1.8.22 build_wrapper Procedure
................................
 
     build_wrapper{gluefile}
 
'gluefile'
 
 
File: dejagnu.info,  Node: winsup_include_flags procedure,  Next: winsup_link_flags procedure,  Prev: build_wrapper procedure,  Up: Libgloss
 
6.1.8.23 winsup_include_flags Procedure
.......................................
 
     winsup_include_flags{args}
 
'args'
 
 
File: dejagnu.info,  Node: winsup_link_flags procedure,  Prev: winsup_include_flags procedure,  Up: Libgloss
 
6.1.8.24 winsup_link_flags Procedure
....................................
 
     winsup_link_flags{args}
 
'args'
 
 
File: dejagnu.info,  Node: Debugging Procedures,  Prev: Libgloss,  Up: Builtin Procedures
 
6.1.9 Procedures for debugging your scripts
-------------------------------------------
 
'lib/debugger.exp' defines the following procedures:
 
* Menu:
 
* dumpvars Procedure: dumpvars procedure
* dumplocals Procedure: dumplocals procedure
* dumprocs Procedure: dumprocs procedure
* dumpwatch Procedure: dumpwatch procedure
* watcharray Procedure: watcharray procedure
* watchvar Procedure: watchvar procedure
* watchunset Procedure: watchunset procedure
* watchwrite Procedure: watchwrite procedure
* watchread Procedure: watchread procedure
* watchdel Procedure: watchdel procedure
* print Procedure: print procedure
* quit Procedure: quit procedure
 
 
File: dejagnu.info,  Node: dumpvars procedure,  Next: dumplocals procedure,  Up: Debugging Procedures
 
6.1.9.1 dumpvars Procedure
..........................
 
This takes a csh style regular expression (glob rules) and prints the
values of the global variable names that match.  It is abbreviated as
_dv_.
 
     dumpvars{vars}
 
'vars'
     The variables to dump.
 
 
File: dejagnu.info,  Node: dumplocals procedure,  Next: dumprocs procedure,  Prev: dumpvars procedure,  Up: Debugging Procedures
 
6.1.9.2 dumplocals Procedure
............................
 
This takes a csh style regular expression (glob rules) and prints the
values of the local variable names that match.  It is abbreviated as
_dl_.
 
     dumplocals{args}
 
'args'
 
 
File: dejagnu.info,  Node: dumprocs procedure,  Next: dumpwatch procedure,  Prev: dumplocals procedure,  Up: Debugging Procedures
 
6.1.9.3 dumprocs Procedure
..........................
 
This takes a csh style regular expression (glob rules) and prints the
body of all procs that match.  It is abbreviated as _dp_.
 
     dumprocs{pattern}
 
'pattern'
     The csh "glob" style pattern to look for.
 
 
File: dejagnu.info,  Node: dumpwatch procedure,  Next: watcharray procedure,  Prev: dumprocs procedure,  Up: Debugging Procedures
 
6.1.9.4 dumpwatch Procedure
...........................
 
This takes a csh style regular expression (glob rules) and prints all
the watchpoints.  It is abbreviated as _dw_.
 
     dumpwatch{pattern}
 
'pattern'
     The csh "glob" style pattern to look for.
 
 
File: dejagnu.info,  Node: watcharray procedure,  Next: watchvar procedure,  Prev: dumpwatch procedure,  Up: Debugging Procedures
 
6.1.9.5 watcharray Procedure
............................
 
     watcharray{element type}
 
'type'
     The csh "glob" style pattern to look for.
 
 
File: dejagnu.info,  Node: watchvar procedure,  Next: watchunset procedure,  Prev: watcharray procedure,  Up: Debugging Procedures
 
6.1.9.6 watchvar Procedure
..........................
 
     watchvar{var type}
 
''
 
 
File: dejagnu.info,  Node: watchunset procedure,  Next: watchwrite procedure,  Prev: watchvar procedure,  Up: Debugging Procedures
 
6.1.9.7 watchunset Procedure
............................
 
This breaks program execution when the variable 'var' is unset.  It is
abbreviated as _wu_.
 
     watchunset{arg}
 
'args'
 
 
File: dejagnu.info,  Node: watchwrite procedure,  Next: watchread procedure,  Prev: watchunset procedure,  Up: Debugging Procedures
 
6.1.9.8 watchwrite Procedure
............................
 
This breaks program execution when the variable 'var' is written.  It is
abbreviated as _ww_.
 
     watchwrite{var}
 
'var'
     The variable to watch.
 
 
File: dejagnu.info,  Node: watchread procedure,  Next: watchdel procedure,  Prev: watchwrite procedure,  Up: Debugging Procedures
 
6.1.9.9 watchread Procedure
...........................
 
This breaks program execution when the variable 'var' is read.  It is
abbreviated as _wr_.
 
     watchread{var}
 
'var'
     The variable to watch.
 
 
File: dejagnu.info,  Node: watchdel procedure,  Next: print procedure,  Prev: watchread procedure,  Up: Debugging Procedures
 
6.1.9.10 watchdel Procedure
...........................
 
This deletes a watchpoint from the watch list.  It is abbreviated as
_wd_.
 
     watchdel{args}
 
'args'
 
 
File: dejagnu.info,  Node: print procedure,  Next: quit procedure,  Prev: watchdel procedure,  Up: Debugging Procedures
 
6.1.9.11 print Procedure
........................
 
This prints the value of the variable 'var'.  It is abbreviated as _p_.
 
     print{var}
 
'var'
 
 
File: dejagnu.info,  Node: quit procedure,  Prev: print procedure,  Up: Debugging Procedures
 
6.1.9.12 quit Procedure
.......................
 
This makes runtest exit.  It is abbreviated as _q_.
 
     quit
 
''
 
 
 
Tag Table:
Node: Top204
Node: Introduction1343
Node: What is DejaGnu?1635
Node: Release Notes4139
Node: Design goals6078
Node: A POSIX Conforming Test Framework7721
Node: Installation12810
Node: Running tests13596
Node: Make Check14246
Node: Runtest15397
Node: Output States16122
Node: Invoking runtest18620
Node: Common Operations26910
Node: Output Files28316
Node: Summary log file28937
Node: Detailed log file30751
Node: Debug log file32629
Node: Customizing DejaGnu36444
Node: Global config file38614
Node: Local config file41216
Node: Board config file45102
Node: Remote host testing48355
Node: Config file values52542
Node: Command line option variables53045
Node: User configuration file55735
Node: Extending DejaGnu56622
Node: Adding a new testsuite57038
Node: Adding a new tool57534
Node: Adding a new target64499
Node: Adding a new board66451
Node: Board file values69384
Node: Writing a test case74409
Node: Debugging a test case79389
Node: Adding a test case to a testsuite81617
Node: Test case variables82740
Node: Unit testing84082
Node: What is unit testing?84350
Node: The dejagnu_h header file85180
Node: C unit testing API85917
Node: C++ unit testing API86885
Node: Reference87879
Node: Builtin Procedures88008
Node: Core Internal Procedures88558
Node: open_logs procedure89977
Node: close_logs procedure90183
Node: isbuild procedure90419
Node: is_remote procedure91112
Node: is3way procedure91378
Node: ishost procedure91742
Node: istarget procedure92318
Node: isnative procedure93006
Node: log_and_exit procedure93382
Node: log_summary procedure93605
Node: setup_xfail procedure93844
Node: pass procedure95371
Node: fail procedure95796
Node: xpass procedure96214
Node: xfail procedure96669
Node: set_warning_threshold procedure97067
Node: get_warning_threshold procedure97555
Node: warning procedure97997
Node: perror procedure99395
Node: note procedure100467
Node: untested procedure101041
Node: unresolved procedure101555
Node: unsupported procedure102141
Node: transform procedure102619
Node: check_conditional_xfail procedure103284
Node: clear_xfail procedure105939
Node: verbose procedure106531
Node: load_lib procedure107431
Node: Procedures For Remote Communication108579
Node: call_remote procedure111973
Node: check_for_board_status procedure112230
Node: file_on_build procedure112531
Node: file_on_host procedure112818
Node: local_exec procedure113090
Node: remote_binary procedure113376
Node: remote_close procedure113631
Node: remote_download procedure114135
Node: remote_exec procedure114423
Node: remote_expect procedure114714
Node: remote_file procedure115003
Node: remote_ld procedure115265
Node: remote_load procedure115518
Node: remote_open procedure115789
Node: remote_pop_conn procedure116582
Node: remote_push_conn procedure116852
Node: remote_raw_binary procedure117131
Node: remote_raw_close procedure117414
Node: remote_raw_file procedure117693
Node: remote_raw_ld procedure117978
Node: remote_raw_load procedure118255
Node: remote_raw_open procedure118550
Node: remote_raw_send procedure118823
Node: remote_raw_spawn procedure119113
Node: remote_raw_transmit procedure119420
Node: remote_raw_wait procedure119722
Node: remote_reboot procedure120015
Node: remote_send procedure120460
Node: remote_spawn procedure120728
Node: remote_swap_conn procedure121024
Node: remote_transmit procedure121294
Node: remote_upload procedure121578
Node: remote_wait procedure121867
Node: standard_close procedure122139
Node: standard_download procedure122406
Node: standard_exec procedure122716
Node: standard_file procedure123001
Node: standard_load procedure123266
Node: standard_reboot procedure123553
Node: standard_send procedure124028
Node: standard_spawn procedure124308
Node: standard_transmit procedure124603
Node: standard_upload procedure124895
Node: standard_wait procedure125206
Node: unix_clean_filename procedure125493
Node: connprocs125758
Node: telnet procedure127220
Node: rsh procedure127407
Node: tip procedure128135
Node: kermit procedure128823
Node: kermit_open procedure129455
Node: kermit_command procedure129686
Node: kermit_send procedure129931
Node: kermit_transmit procedure130187
Node: telnet_open procedure130448
Node: telnet_binary procedure130695
Node: telnet_transmit procedure130938
Node: tip_open procedure131200
Node: rlogin_open procedure131423
Node: rlogin_spawn procedure131642
Node: rsh_open procedure131884
Node: rsh_download procedure132105
Node: rsh_upload procedure132374
Node: rsh_exec procedure132637
Node: ssh_close procedure132877
Node: ssh_exec procedure133095
Node: ssh_download procedure133369
Node: ssh_upload procedure133638
Node: ftp_open procedure133901
Node: ftp_upload procedure134110
Node: ftp_download procedure134373
Node: ftp_close procedure134643
Node: tip_download procedure134860
Node: Procedures For Target Boards135419
Node: default_link procedure136177
Node: default_target_assemble procedure136457
Node: default_target_compile procedure136795
Node: pop_config procedure137144
Node: prune_warnings procedure137394
Node: push_build procedure137644
Node: push_config procedure137883
Node: reboot_target procedure138137
Node: target_assemble procedure138395
Node: target_compile procedure138694
Node: target database library file138976
Node: board_info procedure140036
Node: host_info procedure140266
Node: set_board_info procedure140508
Node: add_board_info procedure140976
Node: set_currtarget_info procedure141436
Node: target_info procedure141727
Node: unset_board_info procedure141988
Node: unset_currtarget_info procedure142405
Node: push_target procedure142692
Node: poptarget procedure143165
Node: list_targets procedure143433
Node: push_host procedure143722
Node: pop_host procedure144126
Node: compile procedure144378
Node: archive procedure145053
Node: ranlib procedure145597
Node: execute_anywhere procedure145963
Node: platform dependent procedures146873
Node: ${tool}_start procedure148227
Node: ${tool}_load procedure149259
Node: ${tool}_exit procedure150147
Node: ${tool}_version procedure150619
Node: Utility Procedures151063
Node: getdirs procedure151688
Node: find procedure152234
Node: which procedure152975
Node: grep procedure153541
Node: prune procedure154470
Node: runtest_file_p procedure154854
Node: diff procedure155591
Node: setenv procedure156028
Node: unsetenv procedure156371
Node: getenv procedure156657
Node: prune_system_crud procedure157009
Node: Libgloss157580
Node: libgloss_link_flags procedure159304
Node: libgloss_include_flags procedure159537
Node: newlib_link_flags procedure159815
Node: newlib_include_flags procedure160079
Node: libio_include_flags procedure160349
Node: libio_link_flags procedure160615
Node: g++_include_flags procedure160869
Node: g++_link_flags procedure161121
Node: libstdc++_include_flags procedure161371
Node: libstdc++_link_flags procedure161651
Node: get_multilibs procedure161923
Node: find_binutils_prog procedure162169
Node: find_gcc procedure162418
Node: find_gcj procedure162618
Node: find_g++ procedure162808
Node: find_g77 procedure162998
Node: find_gfortran procedure163193
Node: process_multilib_options procedure163419
Node: add_multilib_option procedure163703
Node: find_gas procedure163967
Node: find_ld procedure164167
Node: build_wrapper procedure164358
Node: winsup_include_flags procedure164601
Node: winsup_link_flags procedure164867
Node: Debugging Procedures165092
Node: dumpvars procedure165836
Node: dumplocals procedure166200
Node: dumprocs procedure166568
Node: dumpwatch procedure166967
Node: watcharray procedure167356
Node: watchvar procedure167634
Node: watchunset procedure167852
Node: watchwrite procedure168168
Node: watchread procedure168514
Node: watchdel procedure168852
Node: print procedure169142
Node: quit procedure169413
 
End Tag Table
 
 
Local Variables:
coding: us-ascii
End: