summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/eptexdir/eptrip/eptrip.diffs
blob: d6ba634580f34f9bbdb6ccd60eed022c30343906 (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
>>> Running e-TRIP test for e-pTeX.
>>> See SRCDIR/eptexdir/eptrip/eptrip.diffs for example of acceptable diffs.
+ echo '*** TRIP test for e-pTeX in compatibility mode ***.'
*** TRIP test for e-pTeX in compatibility mode ***.
+ ./pltotf SRCDIR/triptrap/trip.pl trip.tfm
+ ./tftopl ./trip.tfm trip.pl
+ diff SRCDIR/triptrap/trip.pl trip.pl
+ ln -s SRCDIR/triptrap/trip.tex .
+ rm -f trip.log
+ ./eptex --progname=epinitex --ini
+ sed 's/, yoko direction//;s/yoko direction, //' trip.log
+ diff SRCDIR/triptrap/tripin.log cptripin.log
1c1
< This is TeX, Version 3.1415926 (INITEX)  15 MAR 2008 02:23
---
> This is e-pTeX, Version 3.1415926-p3.3-110825-2.4 (utf8.euc) (TeX Live 2012) (INITEX)  11 MAY 2012 14:12
3c3
< (trip.tex
---
> (./trip.tex
9c9
< A character number must be between 0 and 255.
---
> A character number must be between 0 and 255, or KANJI code.
47,48c47,48
< <recently read> \font 
<                       
---
> <recently read> 
>                 
91c91,92
< ### horizontal mode entered at line 77 (language255:hyphenmin1,63)
---
> ### horizontal mode entered at line 77 (language255:hyph
> enmin1,63)
450,453c451,454
<  (preloaded format=trip 2008.3.15)
< 1326 strings of total length 23646
< 471 memory locations dumped; current usage is 96&278
< 341 multiletter control sequences
---
>  (format=trip 2012.5.11)
> 1603 strings of total length 27713
> 489 memory locations dumped; current usage is 110&278
> 387 multiletter control sequences
461c462
< Hyphenation trie of length 273 has 9 ops out of 500
---
> Hyphenation trie of length 273 has 9 ops out of 35111
+ rm -f trip.log
+ ./eptex --progname=eptex
+ sed 's/, yoko direction//;s/yoko direction, //;s/yoko(math) direction, //' trip.log
+ diff SRCDIR/triptrap/trip.fot cptrip.fot
1,3c1,2
< This is TeX, Version 3.1415926 (INITEX)
< ** &trip  trip 
< (trip.tex ##
---
> This is e-pTeX, Version 3.1415926-p3.3-110825-2.4 (utf8.euc) (TeX Live 2012)
> **(./trip.tex ##
17c16
< Memory usage before: 159&313; after: 102&278; still untouched: 1613
---
> Memory usage before: 194&313; after: 118&278; still untouched: 2109
28c27
<                 }
---
>                 
43,44c42,43
< <recently read> end 
<                     
---
> <recently read> 
>                 
70c69
<                 }endwrite 
---
>                 
75c74
< Memory usage before: 334&431; after: 292&418; still untouched: 175
---
> Memory usage before: 456&431; after: 394&418; still untouched: 483
+ diff SRCDIR/triptrap/trip.log cptrip.log
1c1
< This is TeX, Version 3.1415926 (preloaded format=trip 2008.3.15)  15 MAR 2008 02:23
---
> This is e-pTeX, Version 3.1415926-p3.3-110825-2.4 (utf8.euc) (TeX Live 2012) (format=trip 2012.5.11)  11 MAY 2012 14:12
3c3
< (trip.tex ##
---
> (./trip.tex ##
58a59,62
> \openout0 = `8terminal.tex'.
> 
> \openout10 = `tripos.tex'.
> 
73c77
< Memory usage before: 159&313; after: 102&278; still untouched: 1613
---
> Memory usage before: 194&313; after: 118&278; still untouched: 2109
385,386c389,390
< \insert100, natural size 803.09999; split(1.0 plus 43.0,-2.0); float cos
< t 100
---
> \insert100Y, natural size 803.09999; split(1.0 plus 43.0,-2.0); float co
> st 100
426c430
< \insert200, natural size 400.0; split(0.0,-2.0); float cost 100
---
> \insert200Y, natural size 400.0; split(0.0,-2.0); float cost 100
441c445
< \insert200, natural size 400.0; split(1.0,-1.0); float cost 100
---
> \insert200Y, natural size 400.0; split(1.0,-1.0); float cost 100
456c460
< \insert200, natural size 400.0; split(2.0,-1.0); float cost 100
---
> \insert200Y, natural size 400.0; split(2.0,-1.0); float cost 100
483,484c487,488
< \insert200, natural size 10000.0; split(1.0 plus 43.0,-1.0); float cost 
< 3
---
> \insert200Y, natural size 10000.0; split(1.0 plus 43.0,-1.0); float cost
>  3
494,495c498,499
< <recently read> \showlists 
<                            
---
> <recently read> 
>                 
642c646
< Memory usage before: 747&484; after: 581&481; still untouched: 1492
---
> Memory usage before: 1090&483; after: 842&480; still untouched: 1989
647c651,652
< ### internal vertical mode entered at line 150 (\output routine)
---
> ### internal vertical mode entered at line 150 (\output 
> routine)
693,694c698,699
< \insert100, natural size 535.4; split(1.0 plus 43.0,-2.0); float cost 10
< 0
---
> \insert100Y, natural size 535.4; split(1.0 plus 43.0,-2.0); float cost 1
> 00
701c706
< \insert200, natural size 2.0; split(2.0,-1.0); float cost 100
---
> \insert200Y, natural size 2.0; split(2.0,-1.0); float cost 100
714,715c719,720
< \insert200, natural size 10000.0; split(1.0 plus 43.0,-1.0); float cost 
< 3
---
> \insert200Y, natural size 10000.0; split(1.0 plus 43.0,-1.0); float cost
>  3
723,724c728,729
< <recently read> \showlists 
<                            
---
> <recently read> 
>                 
815c820
< Memory usage before: 475&470; after: 290&466; still untouched: 1473
---
> Memory usage before: 694&469; after: 410&465; still untouched: 1970
820c825,826
< ### internal vertical mode entered at line 150 (\output routine)
---
> ### internal vertical mode entered at line 150 (\output 
> routine)
832,833c838,839
< <recently read> \showlists 
<                            
---
> <recently read> 
>                 
915c921
< Memory usage before: 218&459; after: 149&458; still untouched: 1473
---
> Memory usage before: 308&458; after: 198&457; still untouched: 1970
920c926,927
< ### internal vertical mode entered at line 150 (\output routine)
---
> ### internal vertical mode entered at line 150 (\output 
> routine)
928,929c935,936
< <recently read> \showlists 
<                            
---
> <recently read> 
>                 
1070c1077
< Memory usage before: 118&328; after: 102&328; still untouched: 1473
---
> Memory usage before: 150&327; after: 126&327; still untouched: 1970
1405c1412
< \vbox(16383.99998+0.0)x1000.0, glue set 16342.0fil
---
> \vbox(16383.99998+0.0)x1000.0, glue set 16341.99998fil
1504a1512
> ..\displace 0.0
1511c1519
< Memory usage before: 990&376; after: 584&370; still untouched: 735
---
> Memory usage before: 1490&375; after: 842&369; still untouched: 1970
1809,1810c1817,1818
< <recently read> $
<                  
---
> <recently read> 
>                 
1954c1962
< (tripos.tex
---
> (./tripos.tex
2018c2026
< \vbox(16383.99998+1.0)x100.0, glue set 16239.0fil
---
> \vbox(16383.99998+1.0)x100.0, glue set 16238.99998fil
2189c2197
< Memory usage before: 950&531; after: 546&448; still untouched: 706
---
> Memory usage before: 1458&530; after: 808&447; still untouched: 1941
2256,2257c2264,2265
< <recently read> \font 
<                       
---
> <recently read> 
>                 
2397c2405
< ! Improper alphabetic constant.
---
> ! Improper alphabetic or KANJI constant.
2455c2463
<                 \endgroup 
---
>                 
2468,2469c2476,2477
< <recently read> \halign 
<                         
---
> <recently read> 
>                 
2497,2498c2505,2506
< <recently read> =
<                  
---
> <recently read> 
>                 
2533c2541
< \vbox(16383.99998+0.0)x20.0, glue set 16331.0fil
---
> \vbox(16383.99998+0.0)x20.0, glue set 16330.99998fil
2575c2583
< Memory usage before: 339&413; after: 236&405; still untouched: 706
---
> Memory usage before: 493&411; after: 327&403; still untouched: 1941
2587,2588c2595,2596
< <recently read> \eqno 
<                       
---
> <recently read> 
>                 
2695,2696c2703,2704
< <recently read> $
<                  
---
> <recently read> 
>                 
2830c2838
< Since I expected to read a number between 0 and 15,
---
> Since I expected to read a number between 0 and 255,
2904,2905c2912,2913
< <recently read> \displaylimits 
<                                
---
> <recently read> 
>                 
3051c3059
< \insert0, natural size 0.0; split(1.0 plus 43.0,-2.0); float cost 100
---
> \insert0Y, natural size 0.0; split(1.0 plus 43.0,-2.0); float cost 100
3054c3062
< .\fam0 ^^c8
---
> .\fam0 È 
3143a3152
> ....\displace 0.0
3207c3216
<                 }
---
>                 
3235c3244
< ! \textfont 0 is undefined (character ^^c8).
---
> ! \textfont 0 is undefined (character È).
3297,3298c3306,3307
< <recently read> \!
<                   
---
> <recently read> 
>                 
3326c3335
< \vbox(10000.0+2.0)x28.0, glue set 9737.58789fil
---
> \vbox(10000.0+2.0)x28.0, glue set 9737.58742fil
3547a3557
> .........\displace 0.0
3616c3626
< Memory usage before: 2170&521; after: 1181&459; still untouched: 175
---
> Memory usage before: 3263&519; after: 1743&457; still untouched: 483
3778c3788
<                 \inaccessible 
---
>                 
3810c3820
<                 \right .
---
>                 
3825c3835
<                 \right .
---
>                 
3864c3874
< \vbox(16383.99998+2.0)x100.0, glue set 16318.0fil
---
> \vbox(16383.99998+2.0)x100.0, glue set 16317.99997fil
3938c3948
<                 }\endwrite 
---
>                 
3951c3961
< Memory usage before: 640&415; after: 397&410; still untouched: 175
---
> Memory usage before: 959&413; after: 573&408; still untouched: 483
4034c4044
< \vbox(16383.99998+0.0)x8236.0, glue set 16344.0fil
---
> \vbox(16383.99998+0.0)x8236.0, glue set 16343.99998fil
4053c4063
< Memory usage before: 235&401; after: 178&399; still untouched: 175
---
> Memory usage before: 342&399; after: 248&397; still untouched: 483
4420c4430
< \vbox(16383.99998+0.0)x100.0, glue set 16332.0fil
---
> \vbox(16383.99998+0.0)x100.0, glue set 16331.99998fil
4506c4516
< Memory usage before: 651&432; after: 417&418; still untouched: 175
---
> Memory usage before: 992&431; after: 598&417; still untouched: 483
4549,4550c4559,4560
< <argument> ##
<              
---
> <argument> 
>            
4679,4680c4689,4690
< <template> \A 
<               \endtemplate 
---
> <template> 
>            
4689,4690c4699,4700
< <recently read> }
<                  
---
> <recently read> 
>                 
4742c4752,4753
< \vbox(16383.99998+0.0)x205.12613, glue set 16344.0fil
---
> \vbox(16383.99998+0.0)x205.12613, glue set 16343.99998fil, yoko directio
> n
4828c4839
< Memory usage before: 776&458; after: 464&452; still untouched: 175
---
> Memory usage before: 1174&457; after: 676&451; still untouched: 483
4881,4888d4891
< ! Bad number (16).
< <to be read again> 
<                    =
< l.346 ...ewlinechar}\textfont16=
<                                 \relax
< Since I expected to read a number between 0 and 15,
< I changed this one to zero.
< 
4901c4904
<                 \inaccessible 
---
>                 
4996c4999
<                 }
---
>                 
5089c5092
<                 \fi 
---
>                 
5102c5105
<                 \cr }
---
>                 
5115,5116c5118,5119
< <inserted text> \cr 
<                     }
---
> <inserted text> 
>                 
5171c5174
<                 }
---
>                 
5200c5203
<                 }
---
>                 
5220c5223
<                 \par 
---
>                 
5232c5235
<                 \par 
---
>                 
5250c5253
<                 \par 
---
>                 
5266c5269
<                 \par 
---
>                 
5330c5333
<                 $
---
>                 
5384c5387
<                 $
---
>                 
5395c5398
<                 }
---
>                 
5432c5435
<                 }
---
>                 
5530,5531c5533,5534
< <recently read> \enorm 
<                        
---
> <recently read> 
>                 
5654,5655c5657,5658
< <recently read> \accent 
<                         
---
> <recently read> 
>                 
5674c5677
<                 $
---
>                 
5685c5688
<                 }
---
>                 
5700,5702c5703,5705
< ! \textfont 0 is undefined (character ^^c8).
< <recently read> $
<                  
---
> ! \textfont 0 is undefined (character È).
> <recently read> 
>                 
5848,5849c5851,5852
< <recently read> \trip 
<                       
---
> <recently read> 
>                 
5856,5857c5859,5860
< <recently read> \trip 
<                       
---
> <recently read> 
>                 
5911,5912c5914,5915
< <recently read> \foo 
<                      
---
> <recently read> 
>                 
5915,5916c5918,5919
< <template> \endtemplate 
<                         
---
> <template> 
>            
5938,5939c5941,5942
< <template> }\endtemplate 
<                          
---
> <template> 
>            
5959c5962
<                 }
---
>                 
5973c5976
<                 \cr 
---
>                 
5985c5988
<                 {
---
>                 
6109c6112
<                 }
---
>                 
6152c6155
<                 }
---
>                 
6283,6284c6286,6287
< <template> \cr 
<                
---
> <template> 
>            
6297,6298c6300,6301
< <template> &
<             \ifnum 0=`{\fi \endtemplate 
---
> <template> 
>            
6342,6343c6345,6346
< <recently read> \err 
<                      
---
> <recently read> 
>                 
6346,6347c6349,6350
< <template> \endtemplate 
<                         
---
> <template> 
>            
6380c6383
< (tripos.tex
---
> (./tripos.tex
6403,6404c6406,6407
< <recently read> \input 
<                        
---
> <recently read> 
>                 
6501c6504
< l.429 ...^^M=13 \def^^M{\relax}#
---
> l.429 ...^^M=13 \defqqM{\relax}#
6541c6544
<                 \par 
---
>                 
6544,6545c6547,6548
< <inserted text> }
<                  \endwrite 
---
> <inserted text> 
>                 
6561,6562c6564,6565
< <inserted text> }
<                  \endwrite 
---
> <inserted text> 
>                 
6581,6582c6584,6585
< <recently read> }
<                  
---
> <recently read> 
>                 
6595c6598
< Memory usage before: 819&428; after: 720&426; still untouched: 175
---
> Memory usage before: 1220&428; after: 1070&426; still untouched: 483
6700,6701c6703,6704
< <recently read> |undefined 
<                            
---
> <recently read> 
>                 
6775c6778
<                 }
---
>                 
6800c6803
<                 }
---
>                 
6815c6818
<                 }
---
>                 
6830c6833
<                 }
---
>                 
7155c7158
< Memory usage before: 895&439; after: 290&420; still untouched: 175
---
> Memory usage before: 1336&439; after: 392&420; still untouched: 483
7182c7185
<                 }
---
>                 
7218,7219c7221,7222
< <recently read> end 
<                     
---
> <recently read> 
>                 
7279c7282
<                 }endwrite 
---
>                 
7288c7291
< Memory usage before: 334&431; after: 292&418; still untouched: 175
---
> Memory usage before: 456&431; after: 394&418; still untouched: 483
7296,7299c7299,7302
<  47 strings out of 1674
<  253 string characters out of 8354
<  2825 words of memory out of 3000
<  372 multiletter control sequences out of 2100
---
>  44 strings out of 1697
>  261 string characters out of 8287
>  4017 words of memory out of 4500
>  418 multiletter control sequences out of 15000+0
7301c7304
<  2 hyphenation exceptions out of 307
---
>  1 hyphenation exception out of 659
+ eval ./dvitype -output-level=2 -dpi=72.27 '-page-start='\''*.*.*.*.*.*.*.*.*.*'\''' trip.dvi
++ ./dvitype -output-level=2 -dpi=72.27 '-page-start=*.*.*.*.*.*.*.*.*.*' trip.dvi
+ diff SRCDIR/triptrap/trip.typ cptrip.typ
1c1
< This is DVItype, Version 3.6
---
> This is DVItype, Version 3.6 (TeX Live 2012)
9c9
< ' TeX output 2008.03.15:0223'
---
> ' TeX output 2012.05.11:1412'
419c419
< 1121: down4 639342208 
---
> 1121: down4 639342177 
1087,1088c1087,1088
< 2535: y4 203921760 
< 2540: y0 203921760 
---
> 2535: y4 203921756 
> 2540: y0 203921756 
+ echo '*** TRIP test for e-pTeX in extended mode ***.'
*** TRIP test for e-pTeX in extended mode ***.
+ rm -f trip.log
+ ./eptex --progname=epinitex --ini
+ sed 's/, yoko direction//;s/yoko direction, //' trip.log
+ diff SRCDIR/triptrap/tripin.log xptripin.log
1,3c1,4
< This is TeX, Version 3.1415926 (INITEX)  15 MAR 2008 02:23
< **\input trip
< (trip.tex
---
> This is e-pTeX, Version 3.1415926-p3.3-110825-2.4 (utf8.euc) (TeX Live 2012) (INITEX)  11 MAY 2012 14:12
> entering extended mode
> ***\input trip
> (./trip.tex
9c10
< A character number must be between 0 and 255.
---
> A character number must be between 0 and 255, or KANJI code.
36,41d36
< ! Bad register code (256).
< l.29 ...{1} \toksdef\tokens=256 
<                                 \show\errorstopmode
< A register number must be between 0 and 255.
< I changed this one to zero.
< 
47,48c42,43
< <recently read> \font 
<                       
---
> <recently read> 
>                 
91c86,87
< ### horizontal mode entered at line 77 (language255:hyphenmin1,63)
---
> ### horizontal mode entered at line 77 (language255:hyph
> enmin1,63)
450,453c446,449
<  (preloaded format=trip 2008.3.15)
< 1326 strings of total length 23646
< 471 memory locations dumped; current usage is 96&278
< 341 multiletter control sequences
---
>  (format=trip 2012.5.11)
> 1603 strings of total length 27713
> 536 memory locations dumped; current usage is 157&278
> 459 multiletter control sequences
461c457
< Hyphenation trie of length 273 has 9 ops out of 500
---
> Hyphenation trie of length 273 has 9 ops out of 35111
+ rm -f trip.log
+ ./eptex --progname=eptex
+ sed 's/, yoko direction//;s/yoko direction, //;s/yoko(math) direction, //' trip.log
+ diff SRCDIR/triptrap/trip.fot xptrip.fot
1,3c1,3
< This is TeX, Version 3.1415926 (INITEX)
< ** &trip  trip 
< (trip.tex ##
---
> This is e-pTeX, Version 3.1415926-p3.3-110825-2.4 (utf8.euc) (TeX Live 2012)
> **entering extended mode
> ## (./trip.tex
17c17
< Memory usage before: 159&313; after: 102&278; still untouched: 1613
---
> Memory usage before: 194&313; after: 118&278; still untouched: 2109
28c28
<                 }
---
>                 
43,44c43,44
< <recently read> end 
<                     
---
> <recently read> 
>                 
70c70
<                 }endwrite 
---
>                 
75c75
< Memory usage before: 334&431; after: 292&418; still untouched: 175
---
> Memory usage before: 456&431; after: 394&418; still untouched: 483
77a78,80
> 
> ### semi simple group (level 1) entered at line 429 (begingroup)
> ### bottom level
+ diff SRCDIR/triptrap/trip.log xptrip.log
1,3c1,4
< This is TeX, Version 3.1415926 (preloaded format=trip 2008.3.15)  15 MAR 2008 02:23
< ** &trip  trip
< (trip.tex ##
---
> This is e-pTeX, Version 3.1415926-p3.3-110825-2.4 (utf8.euc) (TeX Live 2012) (format=trip 2012.5.11)  11 MAY 2012 14:12
> entering extended mode
> **&trip \toksdef\tokens=0 \input trip
>  (./trip.tex
58a60,63
> \openout0 = `8terminal.tex'.
> 
> \openout10 = `tripos.tex'.
> 
73c78
< Memory usage before: 159&313; after: 102&278; still untouched: 1613
---
> Memory usage before: 194&313; after: 118&278; still untouched: 2109
385,386c390,391
< \insert100, natural size 803.09999; split(1.0 plus 43.0,-2.0); float cos
< t 100
---
> \insert100Y, natural size 803.09999; split(1.0 plus 43.0,-2.0); float co
> st 100
426c431
< \insert200, natural size 400.0; split(0.0,-2.0); float cost 100
---
> \insert200Y, natural size 400.0; split(0.0,-2.0); float cost 100
441c446
< \insert200, natural size 400.0; split(1.0,-1.0); float cost 100
---
> \insert200Y, natural size 400.0; split(1.0,-1.0); float cost 100
456c461
< \insert200, natural size 400.0; split(2.0,-1.0); float cost 100
---
> \insert200Y, natural size 400.0; split(2.0,-1.0); float cost 100
483,484c488,489
< \insert200, natural size 10000.0; split(1.0 plus 43.0,-1.0); float cost 
< 3
---
> \insert200Y, natural size 10000.0; split(1.0 plus 43.0,-1.0); float cost
>  3
494,495c499,500
< <recently read> \showlists 
<                            
---
> <recently read> 
>                 
642c647
< Memory usage before: 747&484; after: 581&481; still untouched: 1492
---
> Memory usage before: 1090&483; after: 842&480; still untouched: 1989
647c652,653
< ### internal vertical mode entered at line 150 (\output routine)
---
> ### internal vertical mode entered at line 150 (\output 
> routine)
693,694c699,700
< \insert100, natural size 535.4; split(1.0 plus 43.0,-2.0); float cost 10
< 0
---
> \insert100Y, natural size 535.4; split(1.0 plus 43.0,-2.0); float cost 1
> 00
701c707
< \insert200, natural size 2.0; split(2.0,-1.0); float cost 100
---
> \insert200Y, natural size 2.0; split(2.0,-1.0); float cost 100
714,715c720,721
< \insert200, natural size 10000.0; split(1.0 plus 43.0,-1.0); float cost 
< 3
---
> \insert200Y, natural size 10000.0; split(1.0 plus 43.0,-1.0); float cost
>  3
723,724c729,730
< <recently read> \showlists 
<                            
---
> <recently read> 
>                 
815c821
< Memory usage before: 475&470; after: 290&466; still untouched: 1473
---
> Memory usage before: 694&469; after: 410&465; still untouched: 1970
820c826,827
< ### internal vertical mode entered at line 150 (\output routine)
---
> ### internal vertical mode entered at line 150 (\output 
> routine)
832,833c839,840
< <recently read> \showlists 
<                            
---
> <recently read> 
>                 
915c922
< Memory usage before: 218&459; after: 149&458; still untouched: 1473
---
> Memory usage before: 308&458; after: 198&457; still untouched: 1970
920c927,928
< ### internal vertical mode entered at line 150 (\output routine)
---
> ### internal vertical mode entered at line 150 (\output 
> routine)
928,929c936,937
< <recently read> \showlists 
<                            
---
> <recently read> 
>                 
1070c1078
< Memory usage before: 118&328; after: 102&328; still untouched: 1473
---
> Memory usage before: 150&327; after: 126&327; still untouched: 1970
1405c1413
< \vbox(16383.99998+0.0)x1000.0, glue set 16342.0fil
---
> \vbox(16383.99998+0.0)x1000.0, glue set 16341.99998fil
1504a1513
> ..\displace 0.0
1511c1520
< Memory usage before: 990&376; after: 584&370; still untouched: 735
---
> Memory usage before: 1490&375; after: 842&369; still untouched: 1970
1769d1777
< {restoring \fam=-1}
1779d1786
< {restoring \displayindent=0.0pt}
1809,1810c1816,1817
< <recently read> $
<                  
---
> <recently read> 
>                 
1833d1839
< {restoring \fam=-1}
1954c1960
< (tripos.tex
---
> (./tripos.tex
2018c2024
< \vbox(16383.99998+1.0)x100.0, glue set 16239.0fil
---
> \vbox(16383.99998+1.0)x100.0, glue set 16238.99998fil
2135c2141
< .\hbox(0.0+0.0)x0.0, shifted 50.0
---
> .\hbox(0.0+0.0)x0.0, shifted 50.0, display
2138c2144
< .\hbox(0.0+0.0)x0.0, shifted 100.0
---
> .\hbox(0.0+0.0)x0.0, shifted 100.0, display
2189c2195
< Memory usage before: 950&531; after: 546&448; still untouched: 706
---
> Memory usage before: 1458&530; after: 808&447; still untouched: 1941
2256,2257c2262,2263
< <recently read> \font 
<                       
---
> <recently read> 
>                 
2397c2403
< ! Improper alphabetic constant.
---
> ! Improper alphabetic or KANJI constant.
2455c2461
<                 \endgroup 
---
>                 
2468,2469c2474,2475
< <recently read> \halign 
<                         
---
> <recently read> 
>                 
2497,2498c2503,2504
< <recently read> =
<                  
---
> <recently read> 
>                 
2533c2539
< \vbox(16383.99998+0.0)x20.0, glue set 16331.0fil
---
> \vbox(16383.99998+0.0)x20.0, glue set 16330.99998fil
2570c2576,2577
< .\hbox(0.0+0.0)x15.0, glue set 0.1875, shifted 5.0
---
> .\hbox(0.0+0.0)x15.0, glue set 0.1875, shifted 5.0, display, yoko direct
> ion
2575c2582
< Memory usage before: 339&413; after: 236&405; still untouched: 706
---
> Memory usage before: 493&411; after: 327&403; still untouched: 1941
2587,2588c2594,2595
< <recently read> \eqno 
<                       
---
> <recently read> 
>                 
2695,2696c2702,2703
< <recently read> $
<                  
---
> <recently read> 
>                 
2830c2837
< Since I expected to read a number between 0 and 15,
---
> Since I expected to read a number between 0 and 255,
2835d2841
< {restoring current font=\ip}
2904,2905c2910,2911
< <recently read> \displaylimits 
<                                
---
> <recently read> 
>                 
3051c3057
< \insert0, natural size 0.0; split(1.0 plus 43.0,-2.0); float cost 100
---
> \insert0Y, natural size 0.0; split(1.0 plus 43.0,-2.0); float cost 100
3054c3060
< .\fam0 ^^c8
---
> .\fam0 È 
3143a3150
> ....\displace 0.0
3207c3214
<                 }
---
>                 
3223d3229
< {restoring \fam=-1}
3235c3241
< ! \textfont 0 is undefined (character ^^c8).
---
> ! \textfont 0 is undefined (character È).
3297,3298c3303,3304
< <recently read> \!
<                   
---
> <recently read> 
>                 
3326c3332
< \vbox(10000.0+2.0)x28.0, glue set 9737.58789fil
---
> \vbox(10000.0+2.0)x28.0, glue set 9737.58742fil
3372c3378
< .\hbox(68.26251+98.15005)x19.0, glue set - 1.0, shifted 9.0
---
> .\hbox(68.26251+98.15005)x19.0, glue set - 1.0, shifted 9.0, display
3547a3554
> .........\displace 0.0
3557c3564
< .\hbox(20.5+50.80002)x8.27895, shifted 19.72105
---
> .\hbox(20.5+50.80002)x8.27895, shifted 19.72105, display
3616c3623
< Memory usage before: 2170&521; after: 1181&459; still untouched: 175
---
> Memory usage before: 3263&519; after: 1743&457; still untouched: 483
3766d3772
< {restoring \fam=-1}
3778c3784
<                 \inaccessible 
---
>                 
3810c3816
<                 \right .
---
>                 
3825c3831
<                 \right .
---
>                 
3839d3844
< {restoring \fam=-1}
3864c3869
< \vbox(16383.99998+2.0)x100.0, glue set 16318.0fil
---
> \vbox(16383.99998+2.0)x100.0, glue set 16317.99997fil
3895c3900
< ..\hbox(12.0+4.0)x8.1778
---
> ..\hbox(12.0+4.0)x8.1778, display
3917c3922
< ..\hbox(0.0+13.00002)x-0.1778, glue set - 57.67767fil
---
> ..\hbox(0.0+13.00002)x-0.1778, glue set - 57.67767fil, display
3925c3930
< ....\hbox(7.0+1.0)x5.0, shifted 47.5
---
> ....\hbox(7.0+1.0)x5.0, shifted 47.5, display
3938c3943
<                 }\endwrite 
---
>                 
3951c3956
< Memory usage before: 640&415; after: 397&410; still untouched: 175
---
> Memory usage before: 959&413; after: 573&408; still untouched: 483
4011d4015
< {restoring \fam=-1}
4034c4038
< \vbox(16383.99998+0.0)x8236.0, glue set 16344.0fil
---
> \vbox(16383.99998+0.0)x8236.0, glue set 16343.99998fil
4047c4051
< .\hbox(0.0+0.0)x1009.0, shifted 7227.0
---
> .\hbox(0.0+0.0)x1009.0, shifted 7227.0, display
4051c4055
< .\hbox(0.0+0.0)x-7127.0, shifted 7227.0
---
> .\hbox(0.0+0.0)x-7127.0, shifted 7227.0, display
4053c4057
< Memory usage before: 235&401; after: 178&399; still untouched: 175
---
> Memory usage before: 342&399; after: 248&397; still untouched: 483
4420c4424
< \vbox(16383.99998+0.0)x100.0, glue set 16332.0fil
---
> \vbox(16383.99998+0.0)x100.0, glue set 16331.99998fil
4506c4510
< Memory usage before: 651&432; after: 417&418; still untouched: 175
---
> Memory usage before: 992&431; after: 598&417; still untouched: 483
4549,4550c4553,4554
< <argument> ##
<              
---
> <argument> 
>            
4679,4680c4683,4684
< <template> \A 
<               \endtemplate 
---
> <template> 
>            
4689,4690c4693,4694
< <recently read> }
<                  
---
> <recently read> 
>                 
4742c4746,4747
< \vbox(16383.99998+0.0)x205.12613, glue set 16344.0fil
---
> \vbox(16383.99998+0.0)x205.12613, glue set 16343.99998fil, yoko directio
> n
4828c4833
< Memory usage before: 776&458; after: 464&452; still untouched: 175
---
> Memory usage before: 1174&457; after: 676&451; still untouched: 483
4845c4850
< I'll pretend you didn't say \long or \outer or \global.
---
> I'll pretend you didn't say \long or \outer or \global or \protected.
4881,4888d4885
< ! Bad number (16).
< <to be read again> 
<                    =
< l.346 ...ewlinechar}\textfont16=
<                                 \relax
< Since I expected to read a number between 0 and 15,
< I changed this one to zero.
< 
4901c4898
<                 \inaccessible 
---
>                 
4996c4993
<                 }
---
>                 
5089c5086
<                 \fi 
---
>                 
5102c5099
<                 \cr }
---
>                 
5115,5116c5112,5113
< <inserted text> \cr 
<                     }
---
> <inserted text> 
>                 
5171c5168
<                 }
---
>                 
5200c5197
<                 }
---
>                 
5220c5217
<                 \par 
---
>                 
5232c5229
<                 \par 
---
>                 
5250c5247
<                 \par 
---
>                 
5266c5263
<                 \par 
---
>                 
5330c5327
<                 $
---
>                 
5384c5381
<                 $
---
>                 
5395c5392
<                 }
---
>                 
5432c5429
<                 }
---
>                 
5530,5531c5527,5528
< <recently read> \enorm 
<                        
---
> <recently read> 
>                 
5654,5655c5651,5652
< <recently read> \accent 
<                         
---
> <recently read> 
>                 
5674c5671
<                 $
---
>                 
5685c5682
<                 }
---
>                 
5700,5702c5697,5699
< ! \textfont 0 is undefined (character ^^c8).
< <recently read> $
<                  
---
> ! \textfont 0 is undefined (character È).
> <recently read> 
>                 
5848,5849c5845,5846
< <recently read> \trip 
<                       
---
> <recently read> 
>                 
5856,5857c5853,5854
< <recently read> \trip 
<                       
---
> <recently read> 
>                 
5911,5912c5908,5909
< <recently read> \foo 
<                      
---
> <recently read> 
>                 
5915,5916c5912,5913
< <template> \endtemplate 
<                         
---
> <template> 
>            
5938,5939c5935,5936
< <template> }\endtemplate 
<                          
---
> <template> 
>            
5959c5956
<                 }
---
>                 
5973c5970
<                 \cr 
---
>                 
5985c5982
<                 {
---
>                 
6109c6106
<                 }
---
>                 
6152c6149
<                 }
---
>                 
6283,6284c6280,6281
< <template> \cr 
<                
---
> <template> 
>            
6297,6298c6294,6295
< <template> &
<             \ifnum 0=`{\fi \endtemplate 
---
> <template> 
>            
6342,6343c6339,6340
< <recently read> \err 
<                      
---
> <recently read> 
>                 
6346,6347c6343,6344
< <template> \endtemplate 
<                         
---
> <template> 
>            
6380c6377
< (tripos.tex
---
> (./tripos.tex
6403,6404c6400,6401
< <recently read> \input 
<                        
---
> <recently read> 
>                 
6501c6498
< l.429 ...^^M=13 \def^^M{\relax}#
---
> l.429 ...^^M=13 \defqqM{\relax}#
6541c6538
<                 \par 
---
>                 
6544,6545c6541,6542
< <inserted text> }
<                  \endwrite 
---
> <inserted text> 
>                 
6561,6562c6558,6559
< <inserted text> }
<                  \endwrite 
---
> <inserted text> 
>                 
6581,6582c6578,6579
< <recently read> }
<                  
---
> <recently read> 
>                 
6595c6592
< Memory usage before: 819&428; after: 720&426; still untouched: 175
---
> Memory usage before: 1220&428; after: 1070&426; still untouched: 483
6700,6701c6697,6698
< <recently read> |undefined 
<                            
---
> <recently read> 
>                 
6775c6772
<                 }
---
>                 
6800c6797
<                 }
---
>                 
6815c6812
<                 }
---
>                 
6830c6827
<                 }
---
>                 
7155c7152
< Memory usage before: 895&439; after: 290&420; still untouched: 175
---
> Memory usage before: 1336&439; after: 392&420; still untouched: 483
7182c7179
<                 }
---
>                 
7218,7219c7215,7216
< <recently read> end 
<                     
---
> <recently read> 
>                 
7279c7276
<                 }endwrite 
---
>                 
7288c7285
< Memory usage before: 334&431; after: 292&418; still untouched: 175
---
> Memory usage before: 456&431; after: 394&418; still untouched: 483
7291a7289,7291
> 
> ### semi simple group (level 1) entered at line 429 (begingroup)
> ### bottom level
7296,7299c7296,7299
<  47 strings out of 1674
<  253 string characters out of 8354
<  2825 words of memory out of 3000
<  372 multiletter control sequences out of 2100
---
>  44 strings out of 1697
>  261 string characters out of 8287
>  4017 words of memory out of 4500
>  490 multiletter control sequences out of 15000+0
7301,7302c7301,7302
<  2 hyphenation exceptions out of 307
<  7i,7n,9p,113b,38s stack positions out of 200i,40n,60p,500b,600s
---
>  1 hyphenation exception out of 659
>  7i,7n,9p,136b,40s stack positions out of 200i,40n,60p,500b,600s
+ eval ./dvitype -output-level=2 -dpi=72.27 '-page-start='\''*.*.*.*.*.*.*.*.*.*'\''' trip.dvi
++ ./dvitype -output-level=2 -dpi=72.27 '-page-start=*.*.*.*.*.*.*.*.*.*' trip.dvi
+ diff SRCDIR/triptrap/trip.typ xptrip.typ
1c1
< This is DVItype, Version 3.6
---
> This is DVItype, Version 3.6 (TeX Live 2012)
9c9
< ' TeX output 2008.03.15:0223'
---
> ' TeX output 2012.05.11:1412'
419c419
< 1121: down4 639342208 
---
> 1121: down4 639342177 
1087,1088c1087,1088
< 2535: y4 203921760 
< 2540: y0 203921760 
---
> 2535: y4 203921756 
> 2540: y0 203921756 
+ echo '*** e-TeX specific part of e-TRIP test for e-pTeX ***.'
*** e-TeX specific part of e-TRIP test for e-pTeX ***.
+ ./pltotf SRCDIR/etexdir/etrip/etrip.pl etrip.tfm
+ ./tftopl ./etrip.tfm etrip.pl
+ diff SRCDIR/etexdir/etrip/etrip.pl etrip.pl
+ ln -s SRCDIR/eptexdir/eptrip/etrip.tex .
+ ./eptex --progname=epinitex --ini
+ sed 's/, yoko direction//;s/yoko direction, //' etrip.log
+ diff SRCDIR/etexdir/etrip/etripin.log eptripin.log
1c1
< This is e-TeX, Version 3.1415926-2.4 (TeX Live 2012) (INITEX)  11 MAY 2012 13:47
---
> This is e-pTeX, Version 3.1415926-p3.3-110825-2.4 (utf8.euc) (TeX Live 2012) (INITEX)  11 MAY 2012 14:12
27,29c27,29
< 1491 strings of total length 26238
< 280 memory locations dumped; current usage is 36&166
< 408 multiletter control sequences
---
> 1604 strings of total length 27744
> 283 memory locations dumped; current usage is 40&166
> 459 multiletter control sequences
+ ./eptex --progname=eptex
+ sed 's/, yoko direction//;s/yoko direction, //;s/yoko(math) direction, //' etrip.log
+ diff SRCDIR/etexdir/etrip/etrip.fot eptrip.fot
1c1
< This is e-TeX, Version 3.1415926-2.4 (TeX Live 2012)
---
> This is e-pTeX, Version 3.1415926-p3.3-110825-2.4 (utf8.euc) (TeX Live 2012)
+ diff SRCDIR/eptexdir/eptrip/etrip.log eptrip.log
1c1
< This is e-pTeX, Version 3.1415926-p3.3-110825-2.4 (utf8.euc) (TeX Live 2012) (format=etrip 2012.5.11)  11 MAY 2012 14:10
---
> This is e-pTeX, Version 3.1415926-p3.3-110825-2.4 (utf8.euc) (TeX Live 2012) (format=etrip 2012.5.11)  11 MAY 2012 14:12
203c203
< \vbox(30.00002+0.0)x0.0, yoko direction
---
> \vbox(30.00002+0.0)x0.0
641c641
< \vbox(0.0+0.0)x0.0, yoko direction
---
> \vbox(0.0+0.0)x0.0
666c666
< \vbox(0.0+0.0)x0.0, yoko direction
---
> \vbox(0.0+0.0)x0.0
942c942
< ### yoko direction, restricted horizontal mode entered at line 468
---
> ### restricted horizontal mode entered at line 468
953c953
< ### yoko direction, vertical mode entered at line 0
---
> ### vertical mode entered at line 0
965c965
< \hbox(8.0+2.0)x9.0, yoko direction []}
---
> \hbox(8.0+2.0)x9.0 []}
980c980
< \vbox(188.0+0.0)x10.0, yoko direction
---
> \vbox(188.0+0.0)x10.0
984c984
< .\vbox(9.0+0.0)x0.0, yoko direction
---
> .\vbox(9.0+0.0)x0.0
988c988
< .\hbox(0.0+0.0)x0.0, yoko direction
---
> .\hbox(0.0+0.0)x0.0
996c996
< .\vbox(19.0+0.0)x0.0, yoko direction
---
> .\vbox(19.0+0.0)x0.0
1002c1002
< .\vbox(30.0+0.0)x0.0, yoko direction
---
> .\vbox(30.0+0.0)x0.0
1007c1007
< .\hbox(0.0+0.0)x10.0, yoko direction
---
> .\hbox(0.0+0.0)x10.0
1064c1064
< \vbox(17.0+0.0)x0.0, glue set 2.0fil, yoko direction
---
> \vbox(17.0+0.0)x0.0, glue set 2.0fil
1068c1068
< .\vbox(9.0+0.0)x0.0, yoko direction
---
> .\vbox(9.0+0.0)x0.0
1072c1072
< .\hbox(0.0+0.0)x0.0, yoko direction
---
> .\hbox(0.0+0.0)x0.0
1081c1081
< \vbox(132.0+0.0)x10.0, yoko direction
---
> \vbox(132.0+0.0)x10.0
1084c1084
< .\vbox(19.0+0.0)x0.0, yoko direction
---
> .\vbox(19.0+0.0)x0.0
1090c1090
< .\vbox(30.0+0.0)x0.0, yoko direction
---
> .\vbox(30.0+0.0)x0.0
1095c1095
< .\hbox(0.0+0.0)x10.0, yoko direction
---
> .\hbox(0.0+0.0)x10.0
1110c1110
< \vbox(27.0+0.0)x0.0, glue set 5.0fil, yoko direction
---
> \vbox(27.0+0.0)x0.0, glue set 5.0fil
1113c1113
< .\vbox(19.0+0.0)x0.0, yoko direction
---
> .\vbox(19.0+0.0)x0.0
1122c1122
< \vbox(70.0+0.0)x10.0, yoko direction
---
> \vbox(70.0+0.0)x10.0
1124c1124
< .\vbox(30.0+0.0)x0.0, yoko direction
---
> .\vbox(30.0+0.0)x0.0
1129c1129
< .\hbox(0.0+0.0)x10.0, yoko direction
---
> .\hbox(0.0+0.0)x10.0
1144c1144
< \vbox(37.0+0.0)x0.0, glue set 7.0fil, yoko direction
---
> \vbox(37.0+0.0)x0.0, glue set 7.0fil
1146c1146
< .\vbox(30.0+0.0)x0.0, yoko direction
---
> .\vbox(30.0+0.0)x0.0
1154c1154
< \vbox(0.0+0.0)x10.0, yoko direction
---
> \vbox(0.0+0.0)x10.0
1156c1156
< .\hbox(0.0+0.0)x10.0, yoko direction
---
> .\hbox(0.0+0.0)x10.0
1185c1185
< \vbox(35.0+0.0)x0.0, glue set 21.0fil, yoko direction
---
> \vbox(35.0+0.0)x0.0, glue set 21.0fil
1189c1189
< .\vbox(9.0+0.0)x0.0, yoko direction
---
> .\vbox(9.0+0.0)x0.0
1193c1193
< .\hbox(0.0+0.0)x0.0, yoko direction
---
> .\hbox(0.0+0.0)x0.0
1215c1215
< \vbox(35.0+0.0)x0.0, glue set 13.0fil, yoko direction
---
> \vbox(35.0+0.0)x0.0, glue set 13.0fil
1218c1218
< .\vbox(19.0+0.0)x0.0, yoko direction
---
> .\vbox(19.0+0.0)x0.0
1240c1240
< \vbox(35.0+0.0)x0.0, glue set 5.0fil, yoko direction
---
> \vbox(35.0+0.0)x0.0, glue set 5.0fil
1242c1242
< .\vbox(30.0+0.0)x0.0, yoko direction
---
> .\vbox(30.0+0.0)x0.0
1263c1263
< \vbox(35.0+0.0)x10.0, glue set 35.0fil, yoko direction
---
> \vbox(35.0+0.0)x10.0, glue set 35.0fil
1265c1265
< .\hbox(0.0+0.0)x10.0, yoko direction
---
> .\hbox(0.0+0.0)x10.0
1289c1289
< \vbox(35.0+0.0)x0.0, glue set 35.0fil, yoko direction
---
> \vbox(35.0+0.0)x0.0, glue set 35.0fil
1291c1291
< .\hbox(0.0+0.0)x0.0, yoko direction
---
> .\hbox(0.0+0.0)x0.0
1315c1315
< \vbox(35.0+0.0)x0.0, glue set 35.0fil, yoko direction
---
> \vbox(35.0+0.0)x0.0, glue set 35.0fil
1317c1317
< .\hbox(0.0+0.0)x0.0, yoko direction
---
> .\hbox(0.0+0.0)x0.0
1402c1402
< ### yoko(math) direction, math mode entered at line 522
---
> ### math mode entered at line 522
1416c1416
< ### yoko(math) direction, math mode entered at line 519
---
> ### math mode entered at line 519
1426c1426
< ### yoko(math) direction, math mode entered at line 515
---
> ### math mode entered at line 515
1434c1434
< ### yoko(math) direction, math mode entered at line 514
---
> ### math mode entered at line 514
1438,1439c1438,1439
< ### yoko(math) direction, math mode entered at line 513
< ### yoko direction, restricted horizontal mode entered at line 512
---
> ### math mode entered at line 513
> ### restricted horizontal mode entered at line 512
1441c1441
< ### yoko direction, vertical mode entered at line 0
---
> ### vertical mode entered at line 0
1449c1449
< ### yoko(math) direction, math mode entered at line 519
---
> ### math mode entered at line 519
1473c1473
< ### yoko(math) direction, math mode entered at line 515
---
> ### math mode entered at line 515
1481c1481
< ### yoko(math) direction, math mode entered at line 514
---
> ### math mode entered at line 514
1485,1486c1485,1486
< ### yoko(math) direction, math mode entered at line 513
< ### yoko direction, restricted horizontal mode entered at line 512
---
> ### math mode entered at line 513
> ### restricted horizontal mode entered at line 512
1488c1488
< ### yoko direction, vertical mode entered at line 0
---
> ### vertical mode entered at line 0
1496c1496
< ### yoko(math) direction, math mode entered at line 515
---
> ### math mode entered at line 515
1529c1529
< ### yoko(math) direction, math mode entered at line 514
---
> ### math mode entered at line 514
1533,1534c1533,1534
< ### yoko(math) direction, math mode entered at line 513
< ### yoko direction, restricted horizontal mode entered at line 512
---
> ### math mode entered at line 513
> ### restricted horizontal mode entered at line 512
1536c1536
< ### yoko direction, vertical mode entered at line 0
---
> ### vertical mode entered at line 0
1544c1544
< ### yoko(math) direction, math mode entered at line 514
---
> ### math mode entered at line 514
1581,1582c1581,1582
< ### yoko(math) direction, math mode entered at line 513
< ### yoko direction, restricted horizontal mode entered at line 512
---
> ### math mode entered at line 513
> ### restricted horizontal mode entered at line 512
1584c1584
< ### yoko direction, vertical mode entered at line 0
---
> ### vertical mode entered at line 0
1592c1592
< ### yoko(math) direction, math mode entered at line 513
---
> ### math mode entered at line 513
1631c1631
< ### yoko direction, restricted horizontal mode entered at line 512
---
> ### restricted horizontal mode entered at line 512
1633c1633
< ### yoko direction, vertical mode entered at line 0
---
> ### vertical mode entered at line 0
1641c1641
< ### yoko direction, restricted horizontal mode entered at line 512
---
> ### restricted horizontal mode entered at line 512
1844c1844
< ### yoko direction, vertical mode entered at line 0
---
> ### vertical mode entered at line 0
1852c1852
< ### yoko direction, restricted horizontal mode entered at line 530
---
> ### restricted horizontal mode entered at line 530
1860c1860
< .\hbox(0.0+0.0)x0.0, shifted -16.5, yoko direction
---
> .\hbox(0.0+0.0)x0.0, shifted -16.5
1872c1872
< ### yoko direction, vertical mode entered at line 0
---
> ### vertical mode entered at line 0
1880c1880
< ### yoko direction, restricted horizontal mode entered at line 533
---
> ### restricted horizontal mode entered at line 533
1885c1885
< .\hbox(0.0+0.0)x0.0, shifted 3.0, yoko direction
---
> .\hbox(0.0+0.0)x0.0, shifted 3.0
1904c1904
< ### yoko direction, vertical mode entered at line 0
---
> ### vertical mode entered at line 0
1923c1923
< .\hbox(0.0+0.0)x0.0, yoko direction
---
> .\hbox(0.0+0.0)x0.0
1947c1947
< \vbox(0.0+0.0)x10.0, yoko direction
---
> \vbox(0.0+0.0)x10.0
1974c1974
< ..\hbox(0.0+0.0)x0.0, yoko direction
---
> ..\hbox(0.0+0.0)x0.0
3192c3192
< \hbox(0.0+0.0)x3.0, yoko direction
---
> \hbox(0.0+0.0)x3.0
3245c3245
< \vbox(0.0+0.0)x96.0, yoko direction
---
> \vbox(0.0+0.0)x96.0
3257,3258c3257,3258
< \hbox(0.0+0.0)x96.0, glue set 31.0fill, yoko direction
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> \hbox(0.0+0.0)x96.0, glue set 31.0fill
> .\hbox(0.0+0.0)x30.0
3260c3260
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> .\hbox(0.0+0.0)x30.0
3288c3288
< \vbox(0.0+0.0)x96.0, yoko direction
---
> \vbox(0.0+0.0)x96.0
3300,3301c3300,3301
< \hbox(0.0+0.0)x96.0, glue set - 0.25, yoko direction
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> \hbox(0.0+0.0)x96.0, glue set - 0.25
> .\hbox(0.0+0.0)x30.0
3303c3303
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> .\hbox(0.0+0.0)x30.0
3331c3331
< \vbox(0.0+0.0)x96.0, yoko direction
---
> \vbox(0.0+0.0)x96.0
3343,3344c3343,3344
< \hbox(0.0+0.0)x96.0, glue set - 0.5, yoko direction
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> \hbox(0.0+0.0)x96.0, glue set - 0.5
> .\hbox(0.0+0.0)x30.0
3346c3346
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> .\hbox(0.0+0.0)x30.0
3382c3382
< \vbox(0.0+0.0)x98.0, yoko direction
---
> \vbox(0.0+0.0)x98.0
3400,3401c3400,3401
< \hbox(0.0+0.0)x98.0, glue set 34.0fill, yoko direction
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> \hbox(0.0+0.0)x98.0, glue set 34.0fill
> .\hbox(0.0+0.0)x30.0
3429c3429
< \vbox(0.0+0.0)x98.0, yoko direction
---
> \vbox(0.0+0.0)x98.0
3441c3441
< \hbox(0.0+0.0)x98.0, glue set - 0.125, yoko direction
---
> \hbox(0.0+0.0)x98.0, glue set - 0.125
3443c3443
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> .\hbox(0.0+0.0)x30.0
3445c3445
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> .\hbox(0.0+0.0)x30.0
3473c3473
< \vbox(0.0+0.0)x98.0, yoko direction
---
> \vbox(0.0+0.0)x98.0
3485,3486c3485,3486
< \hbox(0.0+0.0)x98.0, glue set - 0.25, yoko direction
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> \hbox(0.0+0.0)x98.0, glue set - 0.25
> .\hbox(0.0+0.0)x30.0
3488c3488
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> .\hbox(0.0+0.0)x30.0
3516c3516
< \vbox(0.0+0.0)x100.0, yoko direction
---
> \vbox(0.0+0.0)x100.0
3528,3529c3528,3529
< \hbox(0.0+0.0)x100.0, glue set 35.0fill, yoko direction
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> \hbox(0.0+0.0)x100.0, glue set 35.0fill
> .\hbox(0.0+0.0)x30.0
3531c3531
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> .\hbox(0.0+0.0)x30.0
3559c3559
< \vbox(0.0+0.0)x100.0, yoko direction
---
> \vbox(0.0+0.0)x100.0
3571,3572c3571,3572
< \hbox(0.0+0.0)x100.0, glue set 35.0fill, yoko direction
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> \hbox(0.0+0.0)x100.0, glue set 35.0fill
> .\hbox(0.0+0.0)x30.0
3574c3574
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> .\hbox(0.0+0.0)x30.0
3602c3602
< \vbox(0.0+0.0)x100.0, yoko direction
---
> \vbox(0.0+0.0)x100.0
3614,3615c3614,3615
< \hbox(0.0+0.0)x100.0, glue set 35.0fill, yoko direction
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> \hbox(0.0+0.0)x100.0, glue set 35.0fill
> .\hbox(0.0+0.0)x30.0
3617c3617
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> .\hbox(0.0+0.0)x30.0
3645c3645
< \vbox(0.0+0.0)x110.0, yoko direction
---
> \vbox(0.0+0.0)x110.0
3657,3658c3657,3658
< \hbox(0.0+0.0)x110.0, glue set 45.0fill, yoko direction
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> \hbox(0.0+0.0)x110.0, glue set 45.0fill
> .\hbox(0.0+0.0)x30.0
3661c3661
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> .\hbox(0.0+0.0)x30.0
3689c3689
< \vbox(0.0+0.0)x110.0, yoko direction
---
> \vbox(0.0+0.0)x110.0
3701,3702c3701,3702
< \hbox(0.0+0.0)x110.0, glue set 0.125, yoko direction
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> \hbox(0.0+0.0)x110.0, glue set 0.125
> .\hbox(0.0+0.0)x30.0
3704c3704
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> .\hbox(0.0+0.0)x30.0
3732c3732
< \vbox(0.0+0.0)x110.0, yoko direction
---
> \vbox(0.0+0.0)x110.0
3744,3745c3744,3745
< \hbox(0.0+0.0)x110.0, glue set 0.25, yoko direction
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> \hbox(0.0+0.0)x110.0, glue set 0.25
> .\hbox(0.0+0.0)x30.0
3747c3747
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> .\hbox(0.0+0.0)x30.0
3775c3775
< \vbox(0.0+0.0)x120.0, yoko direction
---
> \vbox(0.0+0.0)x120.0
3787,3788c3787,3788
< \hbox(0.0+0.0)x120.0, glue set 55.0fill, yoko direction
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> \hbox(0.0+0.0)x120.0, glue set 55.0fill
> .\hbox(0.0+0.0)x30.0
3790c3790
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> .\hbox(0.0+0.0)x30.0
3818c3818
< \vbox(0.0+0.0)x120.0, yoko direction
---
> \vbox(0.0+0.0)x120.0
3830,3831c3830,3831
< \hbox(0.0+0.0)x120.0, glue set 0.25, yoko direction
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> \hbox(0.0+0.0)x120.0, glue set 0.25
> .\hbox(0.0+0.0)x30.0
3833c3833
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> .\hbox(0.0+0.0)x30.0
3861c3861
< \vbox(0.0+0.0)x120.0, yoko direction
---
> \vbox(0.0+0.0)x120.0
3873,3874c3873,3874
< \hbox(0.0+0.0)x120.0, glue set 0.5, yoko direction
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> \hbox(0.0+0.0)x120.0, glue set 0.5
> .\hbox(0.0+0.0)x30.0
3876c3876
< .\hbox(0.0+0.0)x30.0, yoko direction
---
> .\hbox(0.0+0.0)x30.0
4003c4003
< \vbox(0.0+0.0)x0.0, yoko direction
---
> \vbox(0.0+0.0)x0.0
4024,4026c4024,4026
< \vbox(40.0+0.0)x0.0, yoko direction
< .\vbox(20.0+0.0)x0.0, yoko direction
< ..\vbox(20.0+0.0)x0.0, yoko direction
---
> \vbox(40.0+0.0)x0.0
> .\vbox(20.0+0.0)x0.0
> ..\vbox(20.0+0.0)x0.0
4030c4030
< .\vbox(20.0+0.0)x0.0, yoko direction
---
> .\vbox(20.0+0.0)x0.0
4034c4034
< ..\vbox(20.0+0.0)x0.0, yoko direction
---
> ..\vbox(20.0+0.0)x0.0
4044,4046c4044,4046
< \vbox(50.0+0.0)x0.0, yoko direction
< .\vbox(30.0+0.0)x0.0, yoko direction
< ..\vbox(20.0+0.0)x0.0, yoko direction
---
> \vbox(50.0+0.0)x0.0
> .\vbox(30.0+0.0)x0.0
> ..\vbox(20.0+0.0)x0.0
4052c4052
< .\vbox(20.0+0.0)x0.0, yoko direction
---
> .\vbox(20.0+0.0)x0.0
4055c4055
< ..\vbox(20.0+0.0)x0.0, yoko direction
---
> ..\vbox(20.0+0.0)x0.0
4065,4067c4065,4067
< \vbox(60.0+0.0)x0.0, yoko direction
< .\vbox(20.0+0.0)x0.0, yoko direction
< ..\vbox(20.0+0.0)x0.0, yoko direction
---
> \vbox(60.0+0.0)x0.0
> .\vbox(20.0+0.0)x0.0
> ..\vbox(20.0+0.0)x0.0
4074c4074
< .\vbox(20.0+0.0)x0.0, yoko direction
---
> .\vbox(20.0+0.0)x0.0
4078c4078
< ..\vbox(20.0+0.0)x0.0, yoko direction
---
> ..\vbox(20.0+0.0)x0.0
4088,4090c4088,4090
< \vbox(60.0+0.0)x0.0, yoko direction
< .\vbox(30.0+0.0)x0.0, yoko direction
< ..\vbox(20.0+0.0)x0.0, yoko direction
---
> \vbox(60.0+0.0)x0.0
> .\vbox(30.0+0.0)x0.0
> ..\vbox(20.0+0.0)x0.0
4098c4098
< .\vbox(20.0+0.0)x0.0, yoko direction
---
> .\vbox(20.0+0.0)x0.0
4101c4101
< ..\vbox(20.0+0.0)x0.0, yoko direction
---
> ..\vbox(20.0+0.0)x0.0
4111c4111
< ### yoko direction, internal vertical mode entered at line 1184
---
> ### internal vertical mode entered at line 1184
4113c4113
< ### yoko direction, vertical mode entered at line 0
---
> ### vertical mode entered at line 0
4126c4126
< ### yoko direction, internal vertical mode entered at line 1184
---
> ### internal vertical mode entered at line 1184
4128c4128
< ### yoko direction, vertical mode entered at line 0
---
> ### vertical mode entered at line 0
4138c4138
< ### yoko direction, internal vertical mode entered at line 1185
---
> ### internal vertical mode entered at line 1185
4140c4140
< ### yoko direction, vertical mode entered at line 0
---
> ### vertical mode entered at line 0
4153c4153
< ### yoko direction, internal vertical mode entered at line 1185
---
> ### internal vertical mode entered at line 1185
4158c4158
< ### yoko direction, vertical mode entered at line 0
---
> ### vertical mode entered at line 0
4168c4168
< \vbox(12.0+0.0)x0.0, yoko direction
---
> \vbox(12.0+0.0)x0.0
4181c4181
< \vbox(0.0+0.0)x0.0, yoko direction
---
> \vbox(0.0+0.0)x0.0
4186c4186
< .\hbox(0.0+0.0)x0.0, yoko direction
---
> .\hbox(0.0+0.0)x0.0
4195c4195
< ### yoko direction, internal vertical mode entered at line 1191
---
> ### internal vertical mode entered at line 1191
4198c4198
< ### yoko direction, vertical mode entered at line 0
---
> ### vertical mode entered at line 0
4267c4267
< \vbox(0.0+0.0)x0.0, yoko direction}
---
> \vbox(0.0+0.0)x0.0}
+ eval ./dvitype -output-level=2 -dpi=72.27 '-page-start='\''*.*.*.*.*.*.*.*.*.*'\''' etrip.dvi
++ ./dvitype -output-level=2 -dpi=72.27 '-page-start=*.*.*.*.*.*.*.*.*.*' etrip.dvi
+ diff SRCDIR/etexdir/etrip/etrip.typ eptrip.typ
9c9
< ' TeX output 2012.05.11:1347'
---
> ' TeX output 2012.05.11:1412'
+ :
PASS: eptexdir/eptrip.test