summaryrefslogtreecommitdiff
path: root/xts5/XtE/StringDefs.m
blob: 9b9712e17308930bf4ac34e677a73b546bb6f502 (plain)
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
Copyright (c) 2005 X.Org Foundation LLC

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Copyright (c) Applied Testing and Technology, Inc. 1993, 1994, 1995
Copyright (c) 88open Consortium, Ltd. 1990, 1991, 1992, 1993
All Rights Reserved.

>># 
>># Project: VSW5
>># 
>># File: xts/XtE/StringDefs.m
>># 
>># Description:
>>#	Tests for StringDefs.h contents
>># 
>># Modifications:
>># $Log: strngdfs.m,v $
>># Revision 1.1  2005-02-12 14:38:25  anderson
>># Initial revision
>>#
>># Revision 8.0  1998/12/23 23:36:14  mar
>># Branch point for Release 5.0.2
>>#
>># Revision 7.0  1998/10/30 22:59:03  mar
>># Branch point for Release 5.0.2b1
>>#
>># Revision 6.0  1998/03/02 05:27:26  tbr
>># Branch point for Release 5.0.1
>>#
>># Revision 5.0  1998/01/26 03:23:59  tbr
>># Branch point for Release 5.0.1b1
>>#
>># Revision 4.0  1995/12/15 09:15:34  tbr
>># Branch point for Release 5.0.0
>>#
>># Revision 3.1  1995/12/15  01:19:14  andy
>># Prepare for GA Release
>>#
>>EXTERN
>>TITLE StringDefs XtE
>>ASSERTION Good A
The header file StringDefs.h shall contain the definitions
specified in Appendix E of the Specification.
>>CODE

#ifndef XtNaccelerators
	tet_infoline("String \"XtNaccelerators\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNaccelerators, "accelerators") != 0) {
		sprintf(ebuf, "ERROR: XtNaccelerators should be \"accelerators\", is \"%s\"", XtNaccelerators);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNallowHoriz
	tet_infoline("String \"XtNallowHoriz\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNallowHoriz, "allowHoriz") != 0) {
		sprintf(ebuf, "ERROR: XtNallowHoriz should be \"allowHoriz\", is \"%s\"", XtNallowHoriz);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNallowVert
	tet_infoline("String \"XtNallowVert\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNallowVert, "allowVert") != 0) {
		sprintf(ebuf, "ERROR: XtNallowVert should be \"allowVert\", is \"%s\"", XtNallowVert);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNancestorSensitive
	tet_infoline("String \"XtNancestorSensitive\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNancestorSensitive, "ancestorSensitive") != 0) {
		sprintf(ebuf, "ERROR: XtNancestorSensitive should be \"ancestorSensitive\", is \"%s\"", XtNancestorSensitive);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNbackground
	tet_infoline("String \"XtNbackground\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNbackground, "background") != 0) {
		sprintf(ebuf, "ERROR: XtNbackground should be \"background\", is \"%s\"", XtNbackground);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNbackgroundPixmap
	tet_infoline("String \"XtNbackgroundPixmap\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNbackgroundPixmap, "backgroundPixmap") != 0) {
		sprintf(ebuf, "ERROR: XtNbackgroundPixmap should be \"backgroundPixmap\", is \"%s\"", XtNbackgroundPixmap);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNbitmap
	tet_infoline("String \"XtNbitmap\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNbitmap, "bitmap") != 0) {
		sprintf(ebuf, "ERROR: XtNbitmap should be \"bitmap\", is \"%s\"", XtNbitmap);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNborderColor
	tet_infoline("String \"XtNborderColor\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNborderColor, "borderColor") != 0) {
		sprintf(ebuf, "ERROR: XtNborderColor should be \"borderColor\", is \"%s\"", XtNborderColor);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNborder
	tet_infoline("String \"XtNborder\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNborder, "borderColor") != 0) {
		sprintf(ebuf, "ERROR: XtNborder should be \"borderColor\", is \"%s\"", XtNborder);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNborderPixmap
	tet_infoline("String \"XtNborderPixmap\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNborderPixmap, "borderPixmap") != 0) {
		sprintf(ebuf, "ERROR: XtNborderPixmap should be \"borderPixmap\", is \"%s\"", XtNborderPixmap);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNborderWidth
	tet_infoline("String \"XtNborderWidth\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNborderWidth, "borderWidth") != 0) {
		sprintf(ebuf, "ERROR: XtNborderWidth should be \"borderWidth\", is \"%s\"", XtNborderWidth);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNcallback
	tet_infoline("String \"XtNcallback\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNcallback, "callback") != 0) {
		sprintf(ebuf, "ERROR: XtNcallback should be \"callback\", is \"%s\"", XtNcallback);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNchildren
	tet_infoline("String \"XtNchildren\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNchildren, "children") != 0) {
		sprintf(ebuf, "ERROR: XtNchildren should be \"children\", is \"%s\"", XtNchildren);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNcolormap
	tet_infoline("String \"XtNcolormap\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNcolormap, "colormap") != 0) {
		sprintf(ebuf, "ERROR: XtNcolormap should be \"colormap\", is \"%s\"", XtNcolormap);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNdepth
	tet_infoline("String \"XtNdepth\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNdepth, "depth") != 0) {
		sprintf(ebuf, "ERROR: XtNdepth should be \"depth\", is \"%s\"", XtNdepth);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNdestroyCallback
	tet_infoline("String \"XtNdestroyCallback\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNdestroyCallback, "destroyCallback") != 0) {
		sprintf(ebuf, "ERROR: XtNdestroyCallback should be \"destroyCallback\", is \"%s\"", XtNdestroyCallback);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNeditType
	tet_infoline("String \"XtNeditType\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNeditType, "editType") != 0) {
		sprintf(ebuf, "ERROR: XtNeditType should be \"editType\", is \"%s\"", XtNeditType);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNfile
	tet_infoline("String \"XtNfile\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNfile, "file") != 0) {
		sprintf(ebuf, "ERROR: XtNfile should be \"file\", is \"%s\"", XtNfile);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNfont
	tet_infoline("String \"XtNfont\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNfont, "font") != 0) {
		sprintf(ebuf, "ERROR: XtNfont should be \"font\", is \"%s\"", XtNfont);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNfontSet
	tet_infoline("String \"XtNfontSet\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNfontSet, "fontSet") != 0) {
		sprintf(ebuf, "ERROR: XtNfontSet should be \"fontSet\", is \"%s\"", XtNfontSet);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNforceBars
	tet_infoline("String \"XtNforceBars\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNforceBars, "forceBars") != 0) {
		sprintf(ebuf, "ERROR: XtNforceBars should be \"forceBars\", is \"%s\"", XtNforceBars);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNforeground
	tet_infoline("String \"XtNforeground\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNforeground, "foreground") != 0) {
		sprintf(ebuf, "ERROR: XtNforeground should be \"foreground\", is \"%s\"", XtNforeground);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNfunction
	tet_infoline("String \"XtNfunction\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNfunction, "function") != 0) {
		sprintf(ebuf, "ERROR: XtNfunction should be \"function\", is \"%s\"", XtNfunction);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNheight
	tet_infoline("String \"XtNheight\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNheight, "height") != 0) {
		sprintf(ebuf, "ERROR: XtNheight should be \"height\", is \"%s\"", XtNheight);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNhighlight
	tet_infoline("String \"XtNhighlight\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNhighlight, "highlight") != 0) {
		sprintf(ebuf, "ERROR: XtNhighlight should be \"highlight\", is \"%s\"", XtNhighlight);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNhSpace
	tet_infoline("String \"XtNhSpace\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNhSpace, "hSpace") != 0) {
		sprintf(ebuf, "ERROR: XtNhSpace should be \"hSpace\", is \"%s\"", XtNhSpace);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNindex
	tet_infoline("String \"XtNindex\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNindex, "index") != 0) {
		sprintf(ebuf, "ERROR: XtNindex should be \"index\", is \"%s\"", XtNindex);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNinitialResourcesPersistent
	tet_infoline("String \"XtNinitialResourcesPersistent\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNinitialResourcesPersistent, "initialResourcesPersistent") != 0) {
		sprintf(ebuf, "ERROR: XtNinitialResourcesPersistent should be \"initialResourcesPersistent\", is \"%s\"", XtNinitialResourcesPersistent);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNinnerHeight
	tet_infoline("String \"XtNinnerHeight\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNinnerHeight, "innerHeight") != 0) {
		sprintf(ebuf, "ERROR: XtNinnerHeight should be \"innerHeight\", is \"%s\"", XtNinnerHeight);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNinnerWidth
	tet_infoline("String \"XtNinnerWidth\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNinnerWidth, "innerWidth") != 0) {
		sprintf(ebuf, "ERROR: XtNinnerWidth should be \"innerWidth\", is \"%s\"", XtNinnerWidth);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNinnerWindow
	tet_infoline("String \"XtNinnerWindow\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNinnerWindow, "innerWindow") != 0) {
		sprintf(ebuf, "ERROR: XtNinnerWindow should be \"innerWindow\", is \"%s\"", XtNinnerWindow);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNinsertPosition
	tet_infoline("String \"XtNinsertPosition\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNinsertPosition, "insertPosition") != 0) {
		sprintf(ebuf, "ERROR: XtNinsertPosition should be \"insertPosition\", is \"%s\"", XtNinsertPosition);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNinternalHeight
	tet_infoline("String \"XtNinternalHeight\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNinternalHeight, "internalHeight") != 0) {
		sprintf(ebuf, "ERROR: XtNinternalHeight should be \"internalHeight\", is \"%s\"", XtNinternalHeight);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNinternalWidth
	tet_infoline("String \"XtNinternalWidth\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNinternalWidth, "internalWidth") != 0) {
		sprintf(ebuf, "ERROR: XtNinternalWidth should be \"internalWidth\", is \"%s\"", XtNinternalWidth);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNjumpProc
	tet_infoline("String \"XtNjumpProc\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNjumpProc, "jumpProc") != 0) {
		sprintf(ebuf, "ERROR: XtNjumpProc should be \"jumpProc\", is \"%s\"", XtNjumpProc);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNjustify
	tet_infoline("String \"XtNjustify\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNjustify, "justify") != 0) {
		sprintf(ebuf, "ERROR: XtNjustify should be \"justify\", is \"%s\"", XtNjustify);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNknobHeight
	tet_infoline("String \"XtNknobHeight\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNknobHeight, "knobHeight") != 0) {
		sprintf(ebuf, "ERROR: XtNknobHeight should be \"knobHeight\", is \"%s\"", XtNknobHeight);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNknobIndent
	tet_infoline("String \"XtNknobIndent\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNknobIndent, "knobIndent") != 0) {
		sprintf(ebuf, "ERROR: XtNknobIndent should be \"knobIndent\", is \"%s\"", XtNknobIndent);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNknobPixel
	tet_infoline("String \"XtNknobPixel\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNknobPixel, "knobPixel") != 0) {
		sprintf(ebuf, "ERROR: XtNknobPixel should be \"knobPixel\", is \"%s\"", XtNknobPixel);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNknobWidth
	tet_infoline("String \"XtNknobWidth\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNknobWidth, "knobWidth") != 0) {
		sprintf(ebuf, "ERROR: XtNknobWidth should be \"knobWidth\", is \"%s\"", XtNknobWidth);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNlabel
	tet_infoline("String \"XtNlabel\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNlabel, "label") != 0) {
		sprintf(ebuf, "ERROR: XtNlabel should be \"label\", is \"%s\"", XtNlabel);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNlength
	tet_infoline("String \"XtNlength\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNlength, "length") != 0) {
		sprintf(ebuf, "ERROR: XtNlength should be \"length\", is \"%s\"", XtNlength);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNlowerRight
	tet_infoline("String \"XtNlowerRight\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNlowerRight, "lowerRight") != 0) {
		sprintf(ebuf, "ERROR: XtNlowerRight should be \"lowerRight\", is \"%s\"", XtNlowerRight);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNmappedWhenManaged
	tet_infoline("String \"XtNmappedWhenManaged\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNmappedWhenManaged, "mappedWhenManaged") != 0) {
		sprintf(ebuf, "ERROR: XtNmappedWhenManaged should be \"mappedWhenManaged\", is \"%s\"", XtNmappedWhenManaged);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNmenuEntry
	tet_infoline("String \"XtNmenuEntry\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNmenuEntry, "menuEntry") != 0) {
		sprintf(ebuf, "ERROR: XtNmenuEntry should be \"menuEntry\", is \"%s\"", XtNmenuEntry);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNname
	tet_infoline("String \"XtNname\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNname, "name") != 0) {
		sprintf(ebuf, "ERROR: XtNname should be \"name\", is \"%s\"", XtNname);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNnotify
	tet_infoline("String \"XtNnotify\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNnotify, "notify") != 0) {
		sprintf(ebuf, "ERROR: XtNnotify should be \"notify\", is \"%s\"", XtNnotify);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNnumChildren
	tet_infoline("String \"XtNnumChildren\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNnumChildren, "numChildren") != 0) {
		sprintf(ebuf, "ERROR: XtNnumChildren should be \"numChildren\", is \"%s\"", XtNnumChildren);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNorientation
	tet_infoline("String \"XtNorientation\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNorientation, "orientation") != 0) {
		sprintf(ebuf, "ERROR: XtNorientation should be \"orientation\", is \"%s\"", XtNorientation);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNparameter
	tet_infoline("String \"XtNparameter\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNparameter, "parameter") != 0) {
		sprintf(ebuf, "ERROR: XtNparameter should be \"parameter\", is \"%s\"", XtNparameter);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNpixmap
	tet_infoline("String \"XtNpixmap\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNpixmap, "pixmap") != 0) {
		sprintf(ebuf, "ERROR: XtNpixmap should be \"pixmap\", is \"%s\"", XtNpixmap);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNpopupCallback
	tet_infoline("String \"XtNpopupCallback\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNpopupCallback, "popupCallback") != 0) {
		sprintf(ebuf, "ERROR: XtNpopupCallback should be \"popupCallback\", is \"%s\"", XtNpopupCallback);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNpopdownCallback
	tet_infoline("String \"XtNpopdownCallback\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNpopdownCallback, "popdownCallback") != 0) {
		sprintf(ebuf, "ERROR: XtNpopdownCallback should be \"popdownCallback\", is \"%s\"", XtNpopdownCallback);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNresize
	tet_infoline("String \"XtNresize\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNresize, "resize") != 0) {
		sprintf(ebuf, "ERROR: XtNresize should be \"resize\", is \"%s\"", XtNresize);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNreverseVideo
	tet_infoline("String \"XtNreverseVideo\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNreverseVideo, "reverseVideo") != 0) {
		sprintf(ebuf, "ERROR: XtNreverseVideo should be \"reverseVideo\", is \"%s\"", XtNreverseVideo);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNscreen
	tet_infoline("String \"XtNscreen\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNscreen, "screen") != 0) {
		sprintf(ebuf, "ERROR: XtNscreen should be \"screen\", is \"%s\"", XtNscreen);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNscrollProc
	tet_infoline("String \"XtNscrollProc\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNscrollProc, "scrollProc") != 0) {
		sprintf(ebuf, "ERROR: XtNscrollProc should be \"scrollProc\", is \"%s\"", XtNscrollProc);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNscrollDCursor
	tet_infoline("String \"XtNscrollDCursor\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNscrollDCursor, "scrollDCursor") != 0) {
		sprintf(ebuf, "ERROR: XtNscrollDCursor should be \"scrollDCursor\", is \"%s\"", XtNscrollDCursor);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNscrollHCursor
	tet_infoline("String \"XtNscrollHCursor\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNscrollHCursor, "scrollHCursor") != 0) {
		sprintf(ebuf, "ERROR: XtNscrollHCursor should be \"scrollHCursor\", is \"%s\"", XtNscrollHCursor);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNscrollLCursor
	tet_infoline("String \"XtNscrollLCursor\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNscrollLCursor, "scrollLCursor") != 0) {
		sprintf(ebuf, "ERROR: XtNscrollLCursor should be \"scrollLCursor\", is \"%s\"", XtNscrollLCursor);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNscrollRCursor
	tet_infoline("String \"XtNscrollRCursor\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNscrollRCursor, "scrollRCursor") != 0) {
		sprintf(ebuf, "ERROR: XtNscrollRCursor should be \"scrollRCursor\", is \"%s\"", XtNscrollRCursor);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNscrollUCursor
	tet_infoline("String \"XtNscrollUCursor\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNscrollUCursor, "scrollUCursor") != 0) {
		sprintf(ebuf, "ERROR: XtNscrollUCursor should be \"scrollUCursor\", is \"%s\"", XtNscrollUCursor);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNscrollVCursor
	tet_infoline("String \"XtNscrollVCursor\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNscrollVCursor, "scrollVCursor") != 0) {
		sprintf(ebuf, "ERROR: XtNscrollVCursor should be \"scrollVCursor\", is \"%s\"", XtNscrollVCursor);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNselection
	tet_infoline("String \"XtNselection\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNselection, "selection") != 0) {
		sprintf(ebuf, "ERROR: XtNselection should be \"selection\", is \"%s\"", XtNselection);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNselectionArray
	tet_infoline("String \"XtNselectionArray\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNselectionArray, "selectionArray") != 0) {
		sprintf(ebuf, "ERROR: XtNselectionArray should be \"selectionArray\", is \"%s\"", XtNselectionArray);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNsensitive
	tet_infoline("String \"XtNsensitive\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNsensitive, "sensitive") != 0) {
		sprintf(ebuf, "ERROR: XtNsensitive should be \"sensitive\", is \"%s\"", XtNsensitive);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNshown
	tet_infoline("String \"XtNshown\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNshown, "shown") != 0) {
		sprintf(ebuf, "ERROR: XtNshown should be \"shown\", is \"%s\"", XtNshown);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNspace
	tet_infoline("String \"XtNspace\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNspace, "space") != 0) {
		sprintf(ebuf, "ERROR: XtNspace should be \"space\", is \"%s\"", XtNspace);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNstring
	tet_infoline("String \"XtNstring\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNstring, "string") != 0) {
		sprintf(ebuf, "ERROR: XtNstring should be \"string\", is \"%s\"", XtNstring);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNtextOptions
	tet_infoline("String \"XtNtextOptions\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNtextOptions, "textOptions") != 0) {
		sprintf(ebuf, "ERROR: XtNtextOptions should be \"textOptions\", is \"%s\"", XtNtextOptions);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNtextSink
	tet_infoline("String \"XtNtextSink\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNtextSink, "textSink") != 0) {
		sprintf(ebuf, "ERROR: XtNtextSink should be \"textSink\", is \"%s\"", XtNtextSink);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNtextSource
	tet_infoline("String \"XtNtextSource\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNtextSource, "textSource") != 0) {
		sprintf(ebuf, "ERROR: XtNtextSource should be \"textSource\", is \"%s\"", XtNtextSource);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNthickness
	tet_infoline("String \"XtNthickness\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNthickness, "thickness") != 0) {
		sprintf(ebuf, "ERROR: XtNthickness should be \"thickness\", is \"%s\"", XtNthickness);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNthumb
	tet_infoline("String \"XtNthumb\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNthumb, "thumb") != 0) {
		sprintf(ebuf, "ERROR: XtNthumb should be \"thumb\", is \"%s\"", XtNthumb);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNthumbProc
	tet_infoline("String \"XtNthumbProc\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNthumbProc, "thumbProc") != 0) {
		sprintf(ebuf, "ERROR: XtNthumbProc should be \"thumbProc\", is \"%s\"", XtNthumbProc);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNtop
	tet_infoline("String \"XtNtop\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNtop, "top") != 0) {
		sprintf(ebuf, "ERROR: XtNtop should be \"top\", is \"%s\"", XtNtop);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNtranslations
	tet_infoline("String \"XtNtranslations\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNtranslations, "translations") != 0) {
		sprintf(ebuf, "ERROR: XtNtranslations should be \"translations\", is \"%s\"", XtNtranslations);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNunrealizeCallback
	tet_infoline("String \"XtNunrealizeCallback\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNunrealizeCallback, "unrealizeCallback") != 0) {
		sprintf(ebuf, "ERROR: XtNunrealizeCallback should be \"unrealizeCallback\", is \"%s\"", XtNunrealizeCallback);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNupdate
	tet_infoline("String \"XtNupdate\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNupdate, "update") != 0) {
		sprintf(ebuf, "ERROR: XtNupdate should be \"update\", is \"%s\"", XtNupdate);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNuseBottom
	tet_infoline("String \"XtNuseBottom\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNuseBottom, "useBottom") != 0) {
		sprintf(ebuf, "ERROR: XtNuseBottom should be \"useBottom\", is \"%s\"", XtNuseBottom);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNuseRight
	tet_infoline("String \"XtNuseRight\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNuseRight, "useRight") != 0) {
		sprintf(ebuf, "ERROR: XtNuseRight should be \"useRight\", is \"%s\"", XtNuseRight);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNvalue
	tet_infoline("String \"XtNvalue\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNvalue, "value") != 0) {
		sprintf(ebuf, "ERROR: XtNvalue should be \"value\", is \"%s\"", XtNvalue);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNvSpace
	tet_infoline("String \"XtNvSpace\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNvSpace, "vSpace") != 0) {
		sprintf(ebuf, "ERROR: XtNvSpace should be \"vSpace\", is \"%s\"", XtNvSpace);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNwidth
	tet_infoline("String \"XtNwidth\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNwidth, "width") != 0) {
		sprintf(ebuf, "ERROR: XtNwidth should be \"width\", is \"%s\"", XtNwidth);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNwindow
	tet_infoline("String \"XtNwindow\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNwindow, "window") != 0) {
		sprintf(ebuf, "ERROR: XtNwindow should be \"window\", is \"%s\"", XtNwindow);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNx
	tet_infoline("String \"XtNx\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNx, "x") != 0) {
		sprintf(ebuf, "ERROR: XtNx should be \"x\", is \"%s\"", XtNx);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtNy
	tet_infoline("String \"XtNy\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtNy, "y") != 0) {
		sprintf(ebuf, "ERROR: XtNy should be \"y\", is \"%s\"", XtNy);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCAccelerators
	tet_infoline("String \"XtCAccelerators\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCAccelerators, "Accelerators") != 0) {
		sprintf(ebuf, "ERROR: XtCAccelerators should be \"Accelerators\", is \"%s\"", XtCAccelerators);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCBackground
	tet_infoline("String \"XtCBackground\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCBackground, "Background") != 0) {
		sprintf(ebuf, "ERROR: XtCBackground should be \"Background\", is \"%s\"", XtCBackground);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCBitmap
	tet_infoline("String \"XtCBitmap\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCBitmap, "Bitmap") != 0) {
		sprintf(ebuf, "ERROR: XtCBitmap should be \"Bitmap\", is \"%s\"", XtCBitmap);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCBoolean
	tet_infoline("String \"XtCBoolean\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCBoolean, "Boolean") != 0) {
		sprintf(ebuf, "ERROR: XtCBoolean should be \"Boolean\", is \"%s\"", XtCBoolean);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCBorderColor
	tet_infoline("String \"XtCBorderColor\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCBorderColor, "BorderColor") != 0) {
		sprintf(ebuf, "ERROR: XtCBorderColor should be \"BorderColor\", is \"%s\"", XtCBorderColor);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCBorderWidth
	tet_infoline("String \"XtCBorderWidth\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCBorderWidth, "BorderWidth") != 0) {
		sprintf(ebuf, "ERROR: XtCBorderWidth should be \"BorderWidth\", is \"%s\"", XtCBorderWidth);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCCallback
	tet_infoline("String \"XtCCallback\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCCallback, "Callback") != 0) {
		sprintf(ebuf, "ERROR: XtCCallback should be \"Callback\", is \"%s\"", XtCCallback);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCColormap
	tet_infoline("String \"XtCColormap\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCColormap, "Colormap") != 0) {
		sprintf(ebuf, "ERROR: XtCColormap should be \"Colormap\", is \"%s\"", XtCColormap);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCColor
	tet_infoline("String \"XtCColor\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCColor, "Color") != 0) {
		sprintf(ebuf, "ERROR: XtCColor should be \"Color\", is \"%s\"", XtCColor);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCCursor
	tet_infoline("String \"XtCCursor\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCCursor, "Cursor") != 0) {
		sprintf(ebuf, "ERROR: XtCCursor should be \"Cursor\", is \"%s\"", XtCCursor);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCDepth
	tet_infoline("String \"XtCDepth\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCDepth, "Depth") != 0) {
		sprintf(ebuf, "ERROR: XtCDepth should be \"Depth\", is \"%s\"", XtCDepth);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCEditType
	tet_infoline("String \"XtCEditType\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCEditType, "EditType") != 0) {
		sprintf(ebuf, "ERROR: XtCEditType should be \"EditType\", is \"%s\"", XtCEditType);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCEventBindings
	tet_infoline("String \"XtCEventBindings\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCEventBindings, "EventBindings") != 0) {
		sprintf(ebuf, "ERROR: XtCEventBindings should be \"EventBindings\", is \"%s\"", XtCEventBindings);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCFile
	tet_infoline("String \"XtCFile\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCFile, "File") != 0) {
		sprintf(ebuf, "ERROR: XtCFile should be \"File\", is \"%s\"", XtCFile);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCFont
	tet_infoline("String \"XtCFont\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCFont, "Font") != 0) {
		sprintf(ebuf, "ERROR: XtCFont should be \"Font\", is \"%s\"", XtCFont);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCFontSet
	tet_infoline("String \"XtCFontSet\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCFontSet, "FontSet") != 0) {
		sprintf(ebuf, "ERROR: XtCFontSet should be \"FontSet\", is \"%s\"", XtCFontSet);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCForeground
	tet_infoline("String \"XtCForeground\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCForeground, "Foreground") != 0) {
		sprintf(ebuf, "ERROR: XtCForeground should be \"Foreground\", is \"%s\"", XtCForeground);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCFraction
	tet_infoline("String \"XtCFraction\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCFraction, "Fraction") != 0) {
		sprintf(ebuf, "ERROR: XtCFraction should be \"Fraction\", is \"%s\"", XtCFraction);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCFunction
	tet_infoline("String \"XtCFunction\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCFunction, "Function") != 0) {
		sprintf(ebuf, "ERROR: XtCFunction should be \"Function\", is \"%s\"", XtCFunction);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCHeight
	tet_infoline("String \"XtCHeight\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCHeight, "Height") != 0) {
		sprintf(ebuf, "ERROR: XtCHeight should be \"Height\", is \"%s\"", XtCHeight);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCHSpace
	tet_infoline("String \"XtCHSpace\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCHSpace, "HSpace") != 0) {
		sprintf(ebuf, "ERROR: XtCHSpace should be \"HSpace\", is \"%s\"", XtCHSpace);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCIndex
	tet_infoline("String \"XtCIndex\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCIndex, "Index") != 0) {
		sprintf(ebuf, "ERROR: XtCIndex should be \"Index\", is \"%s\"", XtCIndex);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCInitialResourcesPersistent
	tet_infoline("String \"XtCInitialResourcesPersistent\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCInitialResourcesPersistent, "InitialResourcesPersistent") != 0) {
		sprintf(ebuf, "ERROR: XtCInitialResourcesPersistent should be \"InitialResourcesPersistent\", is \"%s\"", XtCInitialResourcesPersistent);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCInsertPosition
	tet_infoline("String \"XtCInsertPosition\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCInsertPosition, "InsertPosition") != 0) {
		sprintf(ebuf, "ERROR: XtCInsertPosition should be \"InsertPosition\", is \"%s\"", XtCInsertPosition);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCInterval
	tet_infoline("String \"XtCInterval\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCInterval, "Interval") != 0) {
		sprintf(ebuf, "ERROR: XtCInterval should be \"Interval\", is \"%s\"", XtCInterval);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCJustify
	tet_infoline("String \"XtCJustify\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCJustify, "Justify") != 0) {
		sprintf(ebuf, "ERROR: XtCJustify should be \"Justify\", is \"%s\"", XtCJustify);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCKnobIndent
	tet_infoline("String \"XtCKnobIndent\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCKnobIndent, "KnobIndent") != 0) {
		sprintf(ebuf, "ERROR: XtCKnobIndent should be \"KnobIndent\", is \"%s\"", XtCKnobIndent);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCKnobPixel
	tet_infoline("String \"XtCKnobPixel\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCKnobPixel, "KnobPixel") != 0) {
		sprintf(ebuf, "ERROR: XtCKnobPixel should be \"KnobPixel\", is \"%s\"", XtCKnobPixel);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCLabel
	tet_infoline("String \"XtCLabel\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCLabel, "Label") != 0) {
		sprintf(ebuf, "ERROR: XtCLabel should be \"Label\", is \"%s\"", XtCLabel);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCLength
	tet_infoline("String \"XtCLength\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCLength, "Length") != 0) {
		sprintf(ebuf, "ERROR: XtCLength should be \"Length\", is \"%s\"", XtCLength);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCMappedWhenManaged
	tet_infoline("String \"XtCMappedWhenManaged\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCMappedWhenManaged, "MappedWhenManaged") != 0) {
		sprintf(ebuf, "ERROR: XtCMappedWhenManaged should be \"MappedWhenManaged\", is \"%s\"", XtCMappedWhenManaged);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCMargin
	tet_infoline("String \"XtCMargin\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCMargin, "Margin") != 0) {
		sprintf(ebuf, "ERROR: XtCMargin should be \"Margin\", is \"%s\"", XtCMargin);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCMenuEntry
	tet_infoline("String \"XtCMenuEntry\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCMenuEntry, "MenuEntry") != 0) {
		sprintf(ebuf, "ERROR: XtCMenuEntry should be \"MenuEntry\", is \"%s\"", XtCMenuEntry);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCNotify
	tet_infoline("String \"XtCNotify\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCNotify, "Notify") != 0) {
		sprintf(ebuf, "ERROR: XtCNotify should be \"Notify\", is \"%s\"", XtCNotify);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCOrientation
	tet_infoline("String \"XtCOrientation\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCOrientation, "Orientation") != 0) {
		sprintf(ebuf, "ERROR: XtCOrientation should be \"Orientation\", is \"%s\"", XtCOrientation);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCParameter
	tet_infoline("String \"XtCParameter\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCParameter, "Parameter") != 0) {
		sprintf(ebuf, "ERROR: XtCParameter should be \"Parameter\", is \"%s\"", XtCParameter);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCPixmap
	tet_infoline("String \"XtCPixmap\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCPixmap, "Pixmap") != 0) {
		sprintf(ebuf, "ERROR: XtCPixmap should be \"Pixmap\", is \"%s\"", XtCPixmap);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCPosition
	tet_infoline("String \"XtCPosition\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCPosition, "Position") != 0) {
		sprintf(ebuf, "ERROR: XtCPosition should be \"Position\", is \"%s\"", XtCPosition);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCReadOnly
	tet_infoline("String \"XtCReadOnly\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCReadOnly, "ReadOnly") != 0) {
		sprintf(ebuf, "ERROR: XtCReadOnly should be \"ReadOnly\", is \"%s\"", XtCReadOnly);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCResize
	tet_infoline("String \"XtCResize\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCResize, "Resize") != 0) {
		sprintf(ebuf, "ERROR: XtCResize should be \"Resize\", is \"%s\"", XtCResize);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCReverseVideo
	tet_infoline("String \"XtCReverseVideo\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCReverseVideo, "ReverseVideo") != 0) {
		sprintf(ebuf, "ERROR: XtCReverseVideo should be \"ReverseVideo\", is \"%s\"", XtCReverseVideo);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCScreen
	tet_infoline("String \"XtCScreen\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCScreen, "Screen") != 0) {
		sprintf(ebuf, "ERROR: XtCScreen should be \"Screen\", is \"%s\"", XtCScreen);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCScrollProc
	tet_infoline("String \"XtCScrollProc\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCScrollProc, "ScrollProc") != 0) {
		sprintf(ebuf, "ERROR: XtCScrollProc should be \"ScrollProc\", is \"%s\"", XtCScrollProc);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCScrollDCursor
	tet_infoline("String \"XtCScrollDCursor\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCScrollDCursor, "ScrollDCursor") != 0) {
		sprintf(ebuf, "ERROR: XtCScrollDCursor should be \"ScrollDCursor\", is \"%s\"", XtCScrollDCursor);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCScrollHCursor
	tet_infoline("String \"XtCScrollHCursor\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCScrollHCursor, "ScrollHCursor") != 0) {
		sprintf(ebuf, "ERROR: XtCScrollHCursor should be \"ScrollHCursor\", is \"%s\"", XtCScrollHCursor);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCScrollLCursor
	tet_infoline("String \"XtCScrollLCursor\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCScrollLCursor, "ScrollLCursor") != 0) {
		sprintf(ebuf, "ERROR: XtCScrollLCursor should be \"ScrollLCursor\", is \"%s\"", XtCScrollLCursor);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCScrollRCursor
	tet_infoline("String \"XtCScrollRCursor\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCScrollRCursor, "ScrollRCursor") != 0) {
		sprintf(ebuf, "ERROR: XtCScrollRCursor should be \"ScrollRCursor\", is \"%s\"", XtCScrollRCursor);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCScrollUCursor
	tet_infoline("String \"XtCScrollUCursor\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCScrollUCursor, "ScrollUCursor") != 0) {
		sprintf(ebuf, "ERROR: XtCScrollUCursor should be \"ScrollUCursor\", is \"%s\"", XtCScrollUCursor);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCScrollVCursor
	tet_infoline("String \"XtCScrollVCursor\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCScrollVCursor, "ScrollVCursor") != 0) {
		sprintf(ebuf, "ERROR: XtCScrollVCursor should be \"ScrollVCursor\", is \"%s\"", XtCScrollVCursor);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCSelection
	tet_infoline("String \"XtCSelection\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCSelection, "Selection") != 0) {
		sprintf(ebuf, "ERROR: XtCSelection should be \"Selection\", is \"%s\"", XtCSelection);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCSensitive
	tet_infoline("String \"XtCSensitive\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCSensitive, "Sensitive") != 0) {
		sprintf(ebuf, "ERROR: XtCSensitive should be \"Sensitive\", is \"%s\"", XtCSensitive);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCSelectionArray
	tet_infoline("String \"XtCSelectionArray\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCSelectionArray, "SelectionArray") != 0) {
		sprintf(ebuf, "ERROR: XtCSelectionArray should be \"SelectionArray\", is \"%s\"", XtCSelectionArray);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCSpace
	tet_infoline("String \"XtCSpace\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCSpace, "Space") != 0) {
		sprintf(ebuf, "ERROR: XtCSpace should be \"Space\", is \"%s\"", XtCSpace);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCString
	tet_infoline("String \"XtCString\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCString, "String") != 0) {
		sprintf(ebuf, "ERROR: XtCString should be \"String\", is \"%s\"", XtCString);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCTextOptions
	tet_infoline("String \"XtCTextOptions\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCTextOptions, "TextOptions") != 0) {
		sprintf(ebuf, "ERROR: XtCTextOptions should be \"TextOptions\", is \"%s\"", XtCTextOptions);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCTextPosition
	tet_infoline("String \"XtCTextPosition\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCTextPosition, "TextPosition") != 0) {
		sprintf(ebuf, "ERROR: XtCTextPosition should be \"TextPosition\", is \"%s\"", XtCTextPosition);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCTextSink
	tet_infoline("String \"XtCTextSink\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCTextSink, "TextSink") != 0) {
		sprintf(ebuf, "ERROR: XtCTextSink should be \"TextSink\", is \"%s\"", XtCTextSink);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCTextSource
	tet_infoline("String \"XtCTextSource\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCTextSource, "TextSource") != 0) {
		sprintf(ebuf, "ERROR: XtCTextSource should be \"TextSource\", is \"%s\"", XtCTextSource);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCThickness
	tet_infoline("String \"XtCThickness\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCThickness, "Thickness") != 0) {
		sprintf(ebuf, "ERROR: XtCThickness should be \"Thickness\", is \"%s\"", XtCThickness);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCThumb
	tet_infoline("String \"XtCThumb\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCThumb, "Thumb") != 0) {
		sprintf(ebuf, "ERROR: XtCThumb should be \"Thumb\", is \"%s\"", XtCThumb);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCTranslations
	tet_infoline("String \"XtCTranslations\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCTranslations, "Translations") != 0) {
		sprintf(ebuf, "ERROR: XtCTranslations should be \"Translations\", is \"%s\"", XtCTranslations);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCValue
	tet_infoline("String \"XtCValue\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCValue, "Value") != 0) {
		sprintf(ebuf, "ERROR: XtCValue should be \"Value\", is \"%s\"", XtCValue);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCVSpace
	tet_infoline("String \"XtCVSpace\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCVSpace, "VSpace") != 0) {
		sprintf(ebuf, "ERROR: XtCVSpace should be \"VSpace\", is \"%s\"", XtCVSpace);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCWidth
	tet_infoline("String \"XtCWidth\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCWidth, "Width") != 0) {
		sprintf(ebuf, "ERROR: XtCWidth should be \"Width\", is \"%s\"", XtCWidth);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCWindow
	tet_infoline("String \"XtCWindow\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCWindow, "Window") != 0) {
		sprintf(ebuf, "ERROR: XtCWindow should be \"Window\", is \"%s\"", XtCWindow);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCX
	tet_infoline("String \"XtCX\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCX, "X") != 0) {
		sprintf(ebuf, "ERROR: XtCX should be \"X\", is \"%s\"", XtCX);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtCY
	tet_infoline("String \"XtCY\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtCY, "Y") != 0) {
		sprintf(ebuf, "ERROR: XtCY should be \"Y\", is \"%s\"", XtCY);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRAcceleratorTable
	tet_infoline("String \"XtRAcceleratorTable\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRAcceleratorTable, "AcceleratorTable") != 0) {
		sprintf(ebuf, "ERROR: XtRAcceleratorTable should be \"AcceleratorTable\", is \"%s\"", XtRAcceleratorTable);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRAtom
	tet_infoline("String \"XtRAtom\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRAtom, "Atom") != 0) {
		sprintf(ebuf, "ERROR: XtRAtom should be \"Atom\", is \"%s\"", XtRAtom);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRBitmap
	tet_infoline("String \"XtRBitmap\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRBitmap, "Bitmap") != 0) {
		sprintf(ebuf, "ERROR: XtRBitmap should be \"Bitmap\", is \"%s\"", XtRBitmap);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRBool
	tet_infoline("String \"XtRBool\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRBool, "Bool") != 0) {
		sprintf(ebuf, "ERROR: XtRBool should be \"Bool\", is \"%s\"", XtRBool);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRBoolean
	tet_infoline("String \"XtRBoolean\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRBoolean, "Boolean") != 0) {
		sprintf(ebuf, "ERROR: XtRBoolean should be \"Boolean\", is \"%s\"", XtRBoolean);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRCallback
	tet_infoline("String \"XtRCallback\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRCallback, "Callback") != 0) {
		sprintf(ebuf, "ERROR: XtRCallback should be \"Callback\", is \"%s\"", XtRCallback);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRCallProc
	tet_infoline("String \"XtRCallProc\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRCallProc, "CallProc") != 0) {
		sprintf(ebuf, "ERROR: XtRCallProc should be \"CallProc\", is \"%s\"", XtRCallProc);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRCardinal
	tet_infoline("String \"XtRCardinal\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRCardinal, "Cardinal") != 0) {
		sprintf(ebuf, "ERROR: XtRCardinal should be \"Cardinal\", is \"%s\"", XtRCardinal);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRColor
	tet_infoline("String \"XtRColor\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRColor, "Color") != 0) {
		sprintf(ebuf, "ERROR: XtRColor should be \"Color\", is \"%s\"", XtRColor);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRColormap
	tet_infoline("String \"XtRColormap\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRColormap, "Colormap") != 0) {
		sprintf(ebuf, "ERROR: XtRColormap should be \"Colormap\", is \"%s\"", XtRColormap);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRCursor
	tet_infoline("String \"XtRCursor\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRCursor, "Cursor") != 0) {
		sprintf(ebuf, "ERROR: XtRCursor should be \"Cursor\", is \"%s\"", XtRCursor);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRDimension
	tet_infoline("String \"XtRDimension\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRDimension, "Dimension") != 0) {
		sprintf(ebuf, "ERROR: XtRDimension should be \"Dimension\", is \"%s\"", XtRDimension);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRDisplay
	tet_infoline("String \"XtRDisplay\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRDisplay, "Display") != 0) {
		sprintf(ebuf, "ERROR: XtRDisplay should be \"Display\", is \"%s\"", XtRDisplay);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtREditMode
	tet_infoline("String \"XtREditMode\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtREditMode, "EditMode") != 0) {
		sprintf(ebuf, "ERROR: XtREditMode should be \"EditMode\", is \"%s\"", XtREditMode);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtREnum
	tet_infoline("String \"XtREnum\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtREnum, "Enum") != 0) {
		sprintf(ebuf, "ERROR: XtREnum should be \"Enum\", is \"%s\"", XtREnum);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRFile
	tet_infoline("String \"XtRFile\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRFile, "File") != 0) {
		sprintf(ebuf, "ERROR: XtRFile should be \"File\", is \"%s\"", XtRFile);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRFloat
	tet_infoline("String \"XtRFloat\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRFloat, "Float") != 0) {
		sprintf(ebuf, "ERROR: XtRFloat should be \"Float\", is \"%s\"", XtRFloat);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRFont
	tet_infoline("String \"XtRFont\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRFont, "Font") != 0) {
		sprintf(ebuf, "ERROR: XtRFont should be \"Font\", is \"%s\"", XtRFont);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRFontSet
	tet_infoline("String \"XtRFontSet\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRFontSet, "FontSet") != 0) {
		sprintf(ebuf, "ERROR: XtRFontSet should be \"FontSet\", is \"%s\"", XtRFontSet);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRFontStruct
	tet_infoline("String \"XtRFontStruct\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRFontStruct, "FontStruct") != 0) {
		sprintf(ebuf, "ERROR: XtRFontStruct should be \"FontStruct\", is \"%s\"", XtRFontStruct);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRFunction
	tet_infoline("String \"XtRFunction\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRFunction, "Function") != 0) {
		sprintf(ebuf, "ERROR: XtRFunction should be \"Function\", is \"%s\"", XtRFunction);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRGeometry
	tet_infoline("String \"XtRGeometry\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRGeometry, "Geometry") != 0) {
		sprintf(ebuf, "ERROR: XtRGeometry should be \"Geometry\", is \"%s\"", XtRGeometry);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRImmediate
	tet_infoline("String \"XtRImmediate\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRImmediate, "Immediate") != 0) {
		sprintf(ebuf, "ERROR: XtRImmediate should be \"Immediate\", is \"%s\"", XtRImmediate);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRInitialState
	tet_infoline("String \"XtRInitialState\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRInitialState, "InitialState") != 0) {
		sprintf(ebuf, "ERROR: XtRInitialState should be \"InitialState\", is \"%s\"", XtRInitialState);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRInt
	tet_infoline("String \"XtRInt\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRInt, "Int") != 0) {
		sprintf(ebuf, "ERROR: XtRInt should be \"Int\", is \"%s\"", XtRInt);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRJustify
	tet_infoline("String \"XtRJustify\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRJustify, "Justify") != 0) {
		sprintf(ebuf, "ERROR: XtRJustify should be \"Justify\", is \"%s\"", XtRJustify);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRLongBoolean
	tet_infoline("String \"XtRLongBoolean\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
#ifndef XtRBool
	tet_infoline("String \"XtRBool\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRLongBoolean, XtRBool) != 0) {
		sprintf(ebuf, "ERROR: XtRLongBoolean should be \"%s\", is \"%s\"", XtRBool, XtRLongBoolean);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif
#endif

#ifndef XtRObject
	tet_infoline("String \"XtRObject\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRObject, "Object") != 0) {
		sprintf(ebuf, "ERROR: XtRObject should be \"Object\", is \"%s\"", XtRObject);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtROrientation
	tet_infoline("String \"XtROrientation\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtROrientation, "Orientation") != 0) {
		sprintf(ebuf, "ERROR: XtROrientation should be \"Orientation\", is \"%s\"", XtROrientation);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRPixel
	tet_infoline("String \"XtRPixel\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRPixel, "Pixel") != 0) {
		sprintf(ebuf, "ERROR: XtRPixel should be \"Pixel\", is \"%s\"", XtRPixel);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRPixmap
	tet_infoline("String \"XtRPixmap\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRPixmap, "Pixmap") != 0) {
		sprintf(ebuf, "ERROR: XtRPixmap should be \"Pixmap\", is \"%s\"", XtRPixmap);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRPointer
	tet_infoline("String \"XtRPointer\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRPointer, "Pointer") != 0) {
		sprintf(ebuf, "ERROR: XtRPointer should be \"Pointer\", is \"%s\"", XtRPointer);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRPosition
	tet_infoline("String \"XtRPosition\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRPosition, "Position") != 0) {
		sprintf(ebuf, "ERROR: XtRPosition should be \"Position\", is \"%s\"", XtRPosition);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRScreen
	tet_infoline("String \"XtRScreen\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRScreen, "Screen") != 0) {
		sprintf(ebuf, "ERROR: XtRScreen should be \"Screen\", is \"%s\"", XtRScreen);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRShort
	tet_infoline("String \"XtRShort\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRShort, "Short") != 0) {
		sprintf(ebuf, "ERROR: XtRShort should be \"Short\", is \"%s\"", XtRShort);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRString
	tet_infoline("String \"XtRString\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRString, "String") != 0) {
		sprintf(ebuf, "ERROR: XtRString should be \"String\", is \"%s\"", XtRString);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRStringArray
	tet_infoline("String \"XtRStringArray\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRStringArray, "StringArray") != 0) {
		sprintf(ebuf, "ERROR: XtRStringArray should be \"StringArray\", is \"%s\"", XtRStringArray);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRStringTable
	tet_infoline("String \"XtRStringTable\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRStringTable, "StringTable") != 0) {
		sprintf(ebuf, "ERROR: XtRStringTable should be \"StringTable\", is \"%s\"", XtRStringTable);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRUnsignedChar
	tet_infoline("String \"XtRUnsignedChar\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRUnsignedChar, "UnsignedChar") != 0) {
		sprintf(ebuf, "ERROR: XtRUnsignedChar should be \"UnsignedChar\", is \"%s\"", XtRUnsignedChar);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRTranslationTable
	tet_infoline("String \"XtRTranslationTable\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRTranslationTable, "TranslationTable") != 0) {
		sprintf(ebuf, "ERROR: XtRTranslationTable should be \"TranslationTable\", is \"%s\"", XtRTranslationTable);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRVisual
	tet_infoline("String \"XtRVisual\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRVisual, "Visual") != 0) {
		sprintf(ebuf, "ERROR: XtRVisual should be \"Visual\", is \"%s\"", XtRVisual);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRWidget
	tet_infoline("String \"XtRWidget\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRWidget, "Widget") != 0) {
		sprintf(ebuf, "ERROR: XtRWidget should be \"Widget\", is \"%s\"", XtRWidget);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRWidgetClass
	tet_infoline("String \"XtRWidgetClass\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRWidgetClass, "WidgetClass") != 0) {
		sprintf(ebuf, "ERROR: XtRWidgetClass should be \"WidgetClass\", is \"%s\"", XtRWidgetClass);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRWidgetList
	tet_infoline("String \"XtRWidgetList\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRWidgetList, "WidgetList") != 0) {
		sprintf(ebuf, "ERROR: XtRWidgetList should be \"WidgetList\", is \"%s\"", XtRWidgetList);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtRWindow
	tet_infoline("String \"XtRWindow\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtRWindow, "Window") != 0) {
		sprintf(ebuf, "ERROR: XtRWindow should be \"Window\", is \"%s\"", XtRWindow);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtEoff
	tet_infoline("String \"XtEoff\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtEoff, "off") != 0) {
		sprintf(ebuf, "ERROR: XtEoff should be \"off\", is \"%s\"", XtEoff);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtEfalse
	tet_infoline("String \"XtEfalse\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtEfalse, "false") != 0) {
		sprintf(ebuf, "ERROR: XtEfalse should be \"false\", is \"%s\"", XtEfalse);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtEno
	tet_infoline("String \"XtEno\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtEno, "no") != 0) {
		sprintf(ebuf, "ERROR: XtEno should be \"no\", is \"%s\"", XtEno);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtEon
	tet_infoline("String \"XtEon\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtEon, "on") != 0) {
		sprintf(ebuf, "ERROR: XtEon should be \"on\", is \"%s\"", XtEon);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtEtrue
	tet_infoline("String \"XtEtrue\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtEtrue, "true") != 0) {
		sprintf(ebuf, "ERROR: XtEtrue should be \"true\", is \"%s\"", XtEtrue);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtEyes
	tet_infoline("String \"XtEyes\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtEyes, "yes") != 0) {
		sprintf(ebuf, "ERROR: XtEyes should be \"yes\", is \"%s\"", XtEyes);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtEvertical
	tet_infoline("String \"XtEvertical\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtEvertical, "vertical") != 0) {
		sprintf(ebuf, "ERROR: XtEvertical should be \"vertical\", is \"%s\"", XtEvertical);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtEhorizontal
	tet_infoline("String \"XtEhorizontal\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtEhorizontal, "horizontal") != 0) {
		sprintf(ebuf, "ERROR: XtEhorizontal should be \"horizontal\", is \"%s\"", XtEhorizontal);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtEtextRead
	tet_infoline("String \"XtEtextRead\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtEtextRead, "read") != 0) {
		sprintf(ebuf, "ERROR: XtEtextRead should be \"read\", is \"%s\"", XtEtextRead);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtEtextAppend
	tet_infoline("String \"XtEtextAppend\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtEtextAppend, "append") != 0) {
		sprintf(ebuf, "ERROR: XtEtextAppend should be \"append\", is \"%s\"", XtEtextAppend);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtEtextEdit
	tet_infoline("String \"XtEtextEdit\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtEtextEdit, "edit") != 0) {
		sprintf(ebuf, "ERROR: XtEtextEdit should be \"edit\", is \"%s\"", XtEtextEdit);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtExtdefaultbackground
	tet_infoline("String \"XtExtdefaultbackground\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtExtdefaultbackground, "xtdefaultbackground") != 0) {
		sprintf(ebuf, "ERROR: XtExtdefaultbackground should be \"xtdefaultbackground\", is \"%s\"", XtExtdefaultbackground);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtExtdefaultforeground
	tet_infoline("String \"XtExtdefaultforeground\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtExtdefaultforeground, "xtdefaultforeground") != 0) {
		sprintf(ebuf, "ERROR: XtExtdefaultforeground should be \"xtdefaultforeground\", is \"%s\"", XtExtdefaultforeground);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

#ifndef XtExtdefaultfont
	tet_infoline("String \"XtExtdefaultfont\" not defined in StringDefs.h");
	tet_result(TET_FAIL);
#else
	if (strcmp(XtExtdefaultfont, "xtdefaultfont") != 0) {
		sprintf(ebuf, "ERROR: XtExtdefaultfont should be \"xtdefaultfont\", is \"%s\"", XtExtdefaultfont);
		tet_infoline(ebuf);
		tet_result(TET_FAIL);
	}
#endif

	tet_result(TET_PASS);