summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/eptexdir/eptrip/eptrip.diffs
blob: 3891bb9d422c116617d793ebfe0011abc54da6e8 (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
#! /bin/sh -vx
# $Id: eptriptest.test 48633 2018-09-09 17:56:55Z karl $
# Copyright 2017-2018 Karl Berry <tex-live@tug.org>
# Copyright 2011-2014 Peter Breitenlohner <tex-live@tug.org>
# Copyright 2010 Hironori Kitagawa <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.

LC_ALL=C; export LC_ALL;  LANGUAGE=C; export LANGUAGE
+ LC_ALL=C
+ export LC_ALL
+ LANGUAGE=C
+ export LANGUAGE

testdir=$abs_srcdir/triptrap
+ testdir=SRCDIR/triptrap
etestdir=$abs_srcdir/etexdir/etrip
+ etestdir=SRCDIR/etexdir/etrip
eptestdir=$abs_srcdir/eptexdir/eptrip
+ eptestdir=SRCDIR/eptexdir/eptrip

TEXMFCNF=$eptestdir; export TEXMFCNF
+ TEXMFCNF=SRCDIR/eptexdir/eptrip
+ export TEXMFCNF

rm -rf eptripdir
+ rm -rf eptripdir
mkdir eptripdir
+ mkdir eptripdir
cd eptripdir
+ cd eptripdir

dvitype_args="-output-level=2 -dpi=72.27 -page-start='*.*.*.*.*.*.*.*.*.*'"
+ dvitype_args='-output-level=2 -dpi=72.27 -page-start='\''*.*.*.*.*.*.*.*.*.*'\'''

echo ">>> Running e-TRIP test for e-pTeX." >&2
+ echo '>>> Running e-TRIP test for e-pTeX.'
>>> Running e-TRIP test for e-pTeX.
echo ">>> See $eptestdir/eptrip.diffs for example of acceptable diffs." >&2
+ echo '>>> See SRCDIR/eptexdir/eptrip/eptrip.diffs for example of acceptable diffs.'
>>> See SRCDIR/eptexdir/eptrip/eptrip.diffs for example of acceptable diffs.

# pTeX outputs direction of boxes.
P_SED1='s/, yoko direction//;s/yoko direction, //'
+ P_SED1='s/, yoko direction//;s/yoko direction, //'
P_SED2='s/yoko(math) direction, //'
+ P_SED2='s/yoko(math) direction, //'

is_OK=:
+ is_OK=:

set -x
+ set -x

echo "*** TRIP test for e-pTeX in compatibility mode ***."
+ echo '*** TRIP test for e-pTeX in compatibility mode ***.'
*** TRIP test for e-pTeX in compatibility mode ***.

./pltotf $testdir/trip.pl trip.tfm || exit 1
+ ./pltotf SRCDIR/triptrap/trip.pl trip.tfm

./tftopl ./trip.tfm trip.pl || exit 1
+ ./tftopl ./trip.tfm trip.pl

diff $testdir/trip.pl trip.pl || is_OK=false
+ diff SRCDIR/triptrap/trip.pl trip.pl

# get same filename in log
$LN_S $testdir/trip.tex .
+ ln -s SRCDIR/triptrap/trip.tex .

rm -f trip.log
+ rm -f trip.log
./eptex --progname=epinitex --ini <$testdir/trip1.in >cptripin.fot
+ ./eptex --progname=epinitex --ini
if test ! -s trip.fmt; then
  echo "*** trip.fmt not created by trip1.in, investigate!" >&2
  exit 1
fi
+ test '!' -s trip.fmt
sed "$P_SED1" trip.log >  cptripin.log || exit 1
+ sed 's/, yoko direction//;s/yoko direction, //' trip.log
diff $testdir/tripin.log cptripin.log
+ diff SRCDIR/triptrap/tripin.log cptripin.log
1c1
< This is TeX, Version 3.141592653 (INITEX)  4 JUL 1776 12:00
---
> This is e-pTeX, Version 3.141592653-p3.8.3-191112-2.6 (utf8.euc) (TeX Live 2021/dev) (INITEX)  27 JAN 2021 18:03
3c3
< (trip.tex
---
> (./trip.tex
91c91,92
< ### horizontal mode entered at line 77 (language255:hyphenmin1,63)
---
> ### horizontal mode entered at line 77 (language255:hyph
> enmin1,63)
93a95
> \displace 0.0
95a98
> \displace 0.0
368a372
> ....\displace 0.0
370a375
> ....\displace 0.0
437,438d441
< ....\rip 6 (ligature )
< ....\rip 7 (ligature )
450,453c453,456
<  (preloaded format=trip 1776.7.4)
< 1326 strings of total length 23633
< 471 memory locations dumped; current usage is 96&278
< 341 multiletter control sequences
---
>  (preloaded format=trip 2021.1.27)
> 1673 strings of total length 29297
> 491 memory locations dumped; current usage is 112&278
> 400 multiletter control sequences
461c464
< Hyphenation trie of length 273 has 9 ops out of 500
---
> Hyphenation trie of length 273 has 9 ops out of 35111

# May as well test non-ini second time through.
rm -f trip.log
+ rm -f trip.log
./eptex --progname=eptex <$testdir/trip2.in >cptrip.fot
+ ./eptex --progname=eptex
sed "$P_SED1;$P_SED2" trip.log > cptrip.log
+ sed 's/, yoko direction//;s/yoko direction, //;s/yoko(math) direction, //' trip.log
diff $testdir/trip.fot cptrip.fot
+ diff SRCDIR/triptrap/trip.fot cptrip.fot
1,3c1,2
< This is TeX, Version 3.141592653 (INITEX)
< ** &trip  trip 
< (trip.tex ##
---
> This is e-pTeX, Version 3.141592653-p3.8.3-191112-2.6 (utf8.euc) (TeX Live 2021/dev) (preloaded format=eptex)
> **(./trip.tex ##
17c16
< Memory usage before: 159&313; after: 102&278; still untouched: 1613
---
> Memory usage before: 196&313; after: 120&278; still untouched: 2109
75c74
< Memory usage before: 334&431; after: 292&418; still untouched: 175
---
> Memory usage before: 462&431; after: 400&418; still untouched: 240

# We use $DIFF instead of `diff' only for those files where there
# might actually be legitimate numerical differences.
$DIFF $DIFFFLAGS $testdir/trip.log cptrip.log 
+ diff SRCDIR/triptrap/trip.log cptrip.log
1c1
< This is TeX, Version 3.141592653 (preloaded format=trip 1776.7.4)  4 JUL 1776 12:00
---
> This is e-pTeX, Version 3.141592653-p3.8.3-191112-2.6 (utf8.euc) (TeX Live 2021/dev) (preloaded format=trip 2021.1.27)  27 JAN 2021 18:03
3c3
< (trip.tex ##
---
> (./trip.tex ##
73c73
< Memory usage before: 159&313; after: 102&278; still untouched: 1613
---
> Memory usage before: 196&313; after: 120&278; still untouched: 2109
113a114
> .\displace 0.0
198a200
> .\displace 0.0
253a256
> .\displace 0.0
308a312
> .\displace 0.0
349a354
> .\displace 0.0
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
406a412
> ....\displace 0.0
409a416
> ....\displace 0.0
412a420
> ....\displace 0.0
420a429
> .\displace 0.0
426c435
< \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
435a445
> .\displace 0.0
441c451
< \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
450a461
> .\displace 0.0
456c467
< \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
466a478
> .\displace 0.0
483,484c495,496
< \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
588a601
> .....\displace 0.0
591a605
> .....\displace 0.0
594a609
> .....\displace 0.0
630a646
> ......\displace 0.0
633a650
> ......\displace 0.0
636a654
> ......\displace 0.0
642c660
< Memory usage before: 747&484; after: 581&481; still untouched: 1492
---
> Memory usage before: 1118&483; after: 864&480; still untouched: 1989
647c665,666
< ### internal vertical mode entered at line 150 (\output routine)
---
> ### internal vertical mode entered at line 150 (\output 
> routine)
650a670
> .\displace 0.0
660a681
> .\displace 0.0
670a692
> .\displace 0.0
681a704
> .\displace 0.0
693,694c716,717
< \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
701c724
< \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,715c737,738
< \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
815c838
< Memory usage before: 475&470; after: 290&466; still untouched: 1473
---
> Memory usage before: 710&469; after: 418&465; still untouched: 1970
820c843,844
< ### internal vertical mode entered at line 150 (\output routine)
---
> ### internal vertical mode entered at line 150 (\output 
> routine)
915c939
< Memory usage before: 218&459; after: 149&458; still untouched: 1473
---
> Memory usage before: 308&458; after: 198&457; still untouched: 1970
920c944,945
< ### internal vertical mode entered at line 150 (\output routine)
---
> ### internal vertical mode entered at line 150 (\output 
> routine)
1070c1095
< Memory usage before: 118&328; after: 102&328; still untouched: 1473
---
> Memory usage before: 150&327; after: 126&327; still untouched: 1970
1405c1430
< \vbox(16383.99998+0.0)x1000.0, glue set 16342.0fil
---
> \vbox(16383.99998+0.0)x1000.0, glue set 16341.99998fil
1493a1519
> ..\displace 0.0
1503a1530
> ..\displace 0.0
1504a1532
> ..\displace 0.0
1511c1539
< Memory usage before: 990&376; after: 584&370; still untouched: 735
---
> Memory usage before: 1498&375; after: 846&369; still untouched: 1970
1887c1915
< .\rip A
---
> .\displace 0.0
1923c1951
< .\hbox(0.0+0.0)x120.0 []
---
> .\hbox(0.0+0.0)x120.0, yoko(math) direction []
1954c1982
< (tripos.tex
---
> (./tripos.tex
2018c2046
< \vbox(16383.99998+1.0)x100.0, glue set 16239.0fil
---
> \vbox(16383.99998+1.0)x100.0, glue set 16238.99998fil
2022a2051
> ..\displace 0.0
2058a2088
> ..\displace 0.0
2071a2102
> ..\displace 0.0
2092a2124
> ..\displace 0.0
2113a2146
> ..\displace 0.0
2123a2157
> ..\displace 0.0
2142a2177
> ..\displace 0.0
2150a2186
> ..\displace 0.0
2171c2207,2208
< ..\hbox(0.0+0.0)x120.0
---
> ..\hbox(0.0+0.0)x120.0, yoko(math) direction
> ...\displace 0.0
2189c2226
< Memory usage before: 950&531; after: 546&448; still untouched: 706
---
> Memory usage before: 1494&530; after: 826&447; still untouched: 1941
2397c2434
< ! Improper alphabetic constant.
---
> ! Improper alphabetic or KANJI constant.
2533c2570
< \vbox(16383.99998+0.0)x20.0, glue set 16331.0fil
---
> \vbox(16383.99998+0.0)x20.0, glue set 16330.99998fil
2544a2582
> ..\displace 0.0
2570c2608,2609
< .\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, yoko(math) direction
> 
2572c2611
< ..\hbox(0.0+0.0)x0.0
---
> ..\hbox(0.0+0.0)x0.0, yoko(math) direction
2575c2614
< Memory usage before: 339&413; after: 236&405; still untouched: 706
---
> Memory usage before: 497&411; after: 329&403; still untouched: 1941
2650,2651c2689,2690
< Dimensions can be in units of em, ex, in, pt, pc,
< cm, mm, dd, cc, bp, or sp; but yours is a new one!
---
> Dimensions can be in units of em, ex, zw, zh, in, pt, pc,
> cm, mm, dd, cc, bp, H, Q, or sp; but yours is a new one!
2830c2869
< Since I expected to read a number between 0 and 15,
---
> Since I expected to read a number between 0 and 255,
3038c3077,3078
< ^\hbox(7.0+1.0)x2.0
---
> ^\hbox(7.0+1.0)x2.0, yoko(math) direction
> ^.\displace 0.0
3051c3091
< \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
3054c3094
< .\fam0 ^^c8
---
> .\fam0 È 
3056c3096
< .\vbox(-2.0+0.0)x0.0
---
> .\vbox(-2.0+0.0)x0.0, yoko(math) direction
3060c3100,3101
< ^.\hbox(7.0+1.0)x2.0, shifted -2.0
---
> ^.\hbox(7.0+1.0)x2.0, shifted -2.0, yoko(math) direction
> ^..\displace 0.0
3140a3182
> .....\displace 0.0
3142a3185
> ....|\displace 0.0
3143a3187
> ....\displace 0.0
3151a3196
> .\displace 0.0
3235c3280
< ! \textfont 0 is undefined (character ^^c8).
---
> ! \textfont 0 is undefined (character È).
3286c3331
< .\vbox(6.0+-8.0)x0.0
---
> .\vbox(6.0+-8.0)x0.0, yoko(math) direction
3326c3371
< \vbox(10000.0+2.0)x28.0, glue set 9737.58789fil
---
> \vbox(10000.0+2.0)x28.0, glue set 9737.58742fil
3329a3375
> ..\displace 0.0
3374c3420
< ..\vbox(6.0+-8.0)x0.0
---
> ..\vbox(6.0+-8.0)x0.0, yoko(math) direction
3385c3431,3432
< ......\hbox(7.0+1.0)x2.0, shifted -2.0
---
> ......\hbox(7.0+1.0)x2.0, shifted -2.0, yoko(math) direction
> .......\displace 0.0
3544a3592
> ..........\displace 0.0
3546a3595
> .........|\displace 0.0
3547a3597
> .........\displace 0.0
3564c3614,3615
< ...\hbox(7.0+1.0)x1.99
---
> ...\hbox(7.0+1.0)x1.99, yoko(math) direction
> ....\displace 0.0
3616c3667
< Memory usage before: 2170&521; after: 1181&459; still untouched: 175
---
> Memory usage before: 3283&519; after: 1753&457; still untouched: 240
3864c3915
< \vbox(16383.99998+2.0)x100.0, glue set 16318.0fil
---
> \vbox(16383.99998+2.0)x100.0, glue set 16317.99997fil
3919,3920c3970,3972
< ...\vbox(-0.00002+13.00002)x52.5, glue set - 0.00247
< ....\vbox(-0.00002+0.0)x0.0
---
> ...\vbox(-0.00002+13.00002)x52.5, glue set - 0.00247, yoko(math) directi
> on
> ....\vbox(-0.00002+0.0)x0.0, yoko(math) direction
3951c4003
< Memory usage before: 640&415; after: 397&410; still untouched: 175
---
> Memory usage before: 959&413; after: 573&408; still untouched: 240
4034c4086
< \vbox(16383.99998+0.0)x8236.0, glue set 16344.0fil
---
> \vbox(16383.99998+0.0)x8236.0, glue set 16343.99998fil
4053c4105
< Memory usage before: 235&401; after: 178&399; still untouched: 175
---
> Memory usage before: 342&399; after: 248&397; still untouched: 240
4420c4472
< \vbox(16383.99998+0.0)x100.0, glue set 16332.0fil
---
> \vbox(16383.99998+0.0)x100.0, glue set 16331.99998fil
4425a4478
> ...\displace 0.0
4447a4501
> ...\displace 0.0
4475a4530
> ...\displace 0.0
4492a4548
> ...\displace 0.0
4506c4562
< Memory usage before: 651&432; after: 417&418; still untouched: 175
---
> Memory usage before: 1008&431; after: 606&417; still untouched: 240
4742c4798,4799
< \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
4746a4804
> ...\displace 0.0
4762a4821
> .....\displace 0.0
4777a4837
> ......\displace 0.0
4828c4888
< Memory usage before: 776&458; after: 464&452; still untouched: 175
---
> Memory usage before: 1186&457; after: 682&451; still untouched: 240
4881,4888d4940
< ! 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.
< 
5701c5753
< ! \textfont 0 is undefined (character ^^c8).
---
> ! \textfont 0 is undefined (character È).
6381c6433
< (tripos.tex
---
> (./tripos.tex
6502c6554
< l.429 ...^^M=13 \def^^M{\relax}#
---
> l.429 ...^^M=13 \defqqM{\relax}#
6596c6648
< Memory usage before: 819&428; after: 720&426; still untouched: 175
---
> Memory usage before: 1232&428; after: 1078&426; still untouched: 240
6853c6905
< .|vbox(0.0+0.0)x0.0
---
> .|vbox(0.0+0.0)x0.0, yoko(math) direction
6876a6929
> ..|displace 0.0
6891a6945
> ..|displace 0.0
6926a6981
> .|displace 0.0
6959a7015
> .|displace 0.0
6961c7017,7018
< .|hbox(0.0+0.0)x0.0
---
> .|hbox(0.0+0.0)x0.0, yoko(math) direction
> ..|displace 0.0
6991a7049
> .|displace 0.0
7103a7162
> ...|displace 0.0
7108d7166
< ...|ip A (ligature BB)
7116a7175
> ...|displace 0.0
7125d7183
< ...|kern2.0
7126a7185
> .|displace 0.0
7136c7195
< ...|vbox(0.0+0.0)x0.0
---
> ...|vbox(0.0+0.0)x0.0, yoko(math) direction
7156c7215
< Memory usage before: 895&439; after: 290&420; still untouched: 175
---
> Memory usage before: 1350&439; after: 398&420; still untouched: 240
7289c7348
< Memory usage before: 334&431; after: 292&418; still untouched: 175
---
> Memory usage before: 462&431; after: 400&418; still untouched: 240
7297,7300c7356,7359
<  47 strings out of 1674
<  253 string characters out of 8367
<  2825 words of memory out of 3000
<  372 multiletter control sequences out of 2100
---
>  44 strings out of 1627
>  261 string characters out of 10703
>  4260 words of memory out of 4500
>  431 multiletter control sequences out of 15000+0
7302c7361
<  2 hyphenation exceptions out of 307
---
>  1 hyphenation exception out of 659

mv tripos.tex cptripos.tex
+ mv tripos.tex cptripos.tex
diff $testdir/tripos.tex cptripos.tex
+ diff SRCDIR/triptrap/tripos.tex cptripos.tex

eval ./dvitype $dvitype_args trip.dvi >cptrip.typ || exit 1
+ eval ./dvitype -output-level=2 -dpi=72.27 '-page-start='\''*.*.*.*.*.*.*.*.*.*'\''' trip.dvi
./dvitype -output-level=2 -dpi=72.27 -page-start='*.*.*.*.*.*.*.*.*.*' trip.dvi
++ ./dvitype -output-level=2 -dpi=72.27 '-page-start=*.*.*.*.*.*.*.*.*.*' trip.dvi
$DIFF $DIFFFLAGS $testdir/trip.typ cptrip.typ
+ diff SRCDIR/triptrap/trip.typ cptrip.typ
1c1
< This is DVItype, Version 3.6
---
> This is DVItype, Version 3.6 (TeX Live 2021/dev)
9c9
< ' TeX output 1776.07.04:1200'
---
> ' TeX output 2021.01.27:1803'
419c419
< 1121: down4 639342208 
---
> 1121: down4 639342177 
1087,1088c1087,1088
< 2535: y4 203921760 
< 2540: y0 203921760 
---
> 2535: y4 203921756 
> 2540: y0 203921756 

mv trip.fmt ctrip.fmt
+ mv trip.fmt ctrip.fmt

# =================================

echo "*** TRIP test for e-pTeX in extended mode ***."
+ echo '*** TRIP test for e-pTeX in extended mode ***.'
*** TRIP test for e-pTeX in extended mode ***.

rm -f trip.log
+ rm -f trip.log
./eptex --progname=epinitex --ini <$etestdir/etrip1.in >xptripin.fot
+ ./eptex --progname=epinitex --ini
if test ! -s trip.fmt; then
  echo "*** trip.fmt not created by etrip1.in, investigate!" >&2
  exit 1
fi
+ test '!' -s trip.fmt
sed "$P_SED1" trip.log >  xptripin.log || exit 1
+ sed 's/, yoko direction//;s/yoko direction, //' trip.log
diff $testdir/tripin.log xptripin.log
+ diff SRCDIR/triptrap/tripin.log xptripin.log
1,3c1,4
< This is TeX, Version 3.141592653 (INITEX)  4 JUL 1776 12:00
< **\input trip
< (trip.tex
---
> This is e-pTeX, Version 3.141592653-p3.8.3-191112-2.6 (utf8.euc) (TeX Live 2021/dev) (INITEX)  27 JAN 2021 18:03
> entering extended mode
> ***\input trip
> (./trip.tex
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.
< 
91c86,87
< ### horizontal mode entered at line 77 (language255:hyphenmin1,63)
---
> ### horizontal mode entered at line 77 (language255:hyph
> enmin1,63)
93a90
> \displace 0.0
95a93
> \displace 0.0
368a367
> ....\displace 0.0
370a370
> ....\displace 0.0
437,438d436
< ....\rip 6 (ligature )
< ....\rip 7 (ligature )
450,453c448,451
<  (preloaded format=trip 1776.7.4)
< 1326 strings of total length 23633
< 471 memory locations dumped; current usage is 96&278
< 341 multiletter control sequences
---
>  (preloaded format=trip 2021.1.27)
> 1673 strings of total length 29297
> 538 memory locations dumped; current usage is 159&278
> 494 multiletter control sequences
461c459
< Hyphenation trie of length 273 has 9 ops out of 500
---
> Hyphenation trie of length 273 has 9 ops out of 35111

# May as well test non-ini second time through.
rm -f trip.log
+ rm -f trip.log
./eptex --progname=eptex <$etestdir/trip2.in >xptrip.fot
+ ./eptex --progname=eptex
sed "$P_SED1;$P_SED2" trip.log > xptrip.log
+ sed 's/, yoko direction//;s/yoko direction, //;s/yoko(math) direction, //' trip.log
diff $testdir/trip.fot xptrip.fot
+ diff SRCDIR/triptrap/trip.fot xptrip.fot
1,3c1,3
< This is TeX, Version 3.141592653 (INITEX)
< ** &trip  trip 
< (trip.tex ##
---
> This is e-pTeX, Version 3.141592653-p3.8.3-191112-2.6 (utf8.euc) (TeX Live 2021/dev) (preloaded format=eptex)
> **entering extended mode
> ## (./trip.tex
17c17
< Memory usage before: 159&313; after: 102&278; still untouched: 1613
---
> Memory usage before: 196&313; after: 120&278; still untouched: 2109
75c75
< Memory usage before: 334&431; after: 292&418; still untouched: 175
---
> Memory usage before: 462&431; after: 400&418; still untouched: 240
77a78,80
> 
> ### semi simple group (level 1) entered at line 429 (begingroup)
> ### bottom level

# We use $DIFF instead of `diff' only for those files where there
# might actually be legitimate numerical differences.
$DIFF $DIFFFLAGS $testdir/trip.log xptrip.log 
+ diff SRCDIR/triptrap/trip.log xptrip.log
1,3c1,4
< This is TeX, Version 3.141592653 (preloaded format=trip 1776.7.4)  4 JUL 1776 12:00
< ** &trip  trip
< (trip.tex ##
---
> This is e-pTeX, Version 3.141592653-p3.8.3-191112-2.6 (utf8.euc) (TeX Live 2021/dev) (preloaded format=trip 2021.1.27)  27 JAN 2021 18:03
> entering extended mode
> **&trip \toksdef\tokens=0 \input trip
>  (./trip.tex
73c74
< Memory usage before: 159&313; after: 102&278; still untouched: 1613
---
> Memory usage before: 196&313; after: 120&278; still untouched: 2109
113a115
> .\displace 0.0
198a201
> .\displace 0.0
253a257
> .\displace 0.0
308a313
> .\displace 0.0
349a355
> .\displace 0.0
385,386c391,392
< \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
406a413
> ....\displace 0.0
409a417
> ....\displace 0.0
412a421
> ....\displace 0.0
420a430
> .\displace 0.0
426c436
< \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
435a446
> .\displace 0.0
441c452
< \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
450a462
> .\displace 0.0
456c468
< \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
466a479
> .\displace 0.0
483,484c496,497
< \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
588a602
> .....\displace 0.0
591a606
> .....\displace 0.0
594a610
> .....\displace 0.0
630a647
> ......\displace 0.0
633a651
> ......\displace 0.0
636a655
> ......\displace 0.0
642c661
< Memory usage before: 747&484; after: 581&481; still untouched: 1492
---
> Memory usage before: 1118&483; after: 864&480; still untouched: 1989
647c666,667
< ### internal vertical mode entered at line 150 (\output routine)
---
> ### internal vertical mode entered at line 150 (\output 
> routine)
650a671
> .\displace 0.0
660a682
> .\displace 0.0
670a693
> .\displace 0.0
681a705
> .\displace 0.0
693,694c717,718
< \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
701c725
< \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,715c738,739
< \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
815c839
< Memory usage before: 475&470; after: 290&466; still untouched: 1473
---
> Memory usage before: 710&469; after: 418&465; still untouched: 1970
820c844,845
< ### internal vertical mode entered at line 150 (\output routine)
---
> ### internal vertical mode entered at line 150 (\output 
> routine)
915c940
< Memory usage before: 218&459; after: 149&458; still untouched: 1473
---
> Memory usage before: 308&458; after: 198&457; still untouched: 1970
920c945,946
< ### internal vertical mode entered at line 150 (\output routine)
---
> ### internal vertical mode entered at line 150 (\output 
> routine)
1070c1096
< Memory usage before: 118&328; after: 102&328; still untouched: 1473
---
> Memory usage before: 150&327; after: 126&327; still untouched: 1970
1405c1431
< \vbox(16383.99998+0.0)x1000.0, glue set 16342.0fil
---
> \vbox(16383.99998+0.0)x1000.0, glue set 16341.99998fil
1493a1520
> ..\displace 0.0
1503a1531
> ..\displace 0.0
1504a1533
> ..\displace 0.0
1511c1540
< Memory usage before: 990&376; after: 584&370; still untouched: 735
---
> Memory usage before: 1498&375; after: 846&369; still untouched: 1970
1769d1797
< {restoring \fam=-1}
1779d1806
< {restoring \displayindent=0.0pt}
1833d1859
< {restoring \fam=-1}
1887c1913
< .\rip A
---
> .\displace 0.0
1923c1949
< .\hbox(0.0+0.0)x120.0 []
---
> .\hbox(0.0+0.0)x120.0, yoko(math) direction []
1954c1980
< (tripos.tex
---
> (./tripos.tex
2018c2044
< \vbox(16383.99998+1.0)x100.0, glue set 16239.0fil
---
> \vbox(16383.99998+1.0)x100.0, glue set 16238.99998fil
2022a2049
> ..\displace 0.0
2058a2086
> ..\displace 0.0
2071a2100
> ..\displace 0.0
2092a2122
> ..\displace 0.0
2113a2144
> ..\displace 0.0
2123a2155
> ..\displace 0.0
2135c2167
< .\hbox(0.0+0.0)x0.0, shifted 50.0
---
> .\hbox(0.0+0.0)x0.0, shifted 50.0, display
2138c2170
< .\hbox(0.0+0.0)x0.0, shifted 100.0
---
> .\hbox(0.0+0.0)x0.0, shifted 100.0, display
2142a2175
> ..\displace 0.0
2150a2184
> ..\displace 0.0
2171c2205,2206
< ..\hbox(0.0+0.0)x120.0
---
> ..\hbox(0.0+0.0)x120.0, yoko(math) direction
> ...\displace 0.0
2189c2224
< Memory usage before: 950&531; after: 546&448; still untouched: 706
---
> Memory usage before: 1494&530; after: 826&447; still untouched: 1941
2397c2432
< ! Improper alphabetic constant.
---
> ! Improper alphabetic or KANJI constant.
2533c2568
< \vbox(16383.99998+0.0)x20.0, glue set 16331.0fil
---
> \vbox(16383.99998+0.0)x20.0, glue set 16330.99998fil
2544a2580
> ..\displace 0.0
2570c2606,2607
< .\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(math) 
> direction
2572c2609
< ..\hbox(0.0+0.0)x0.0
---
> ..\hbox(0.0+0.0)x0.0, yoko(math) direction
2575c2612
< Memory usage before: 339&413; after: 236&405; still untouched: 706
---
> Memory usage before: 497&411; after: 329&403; still untouched: 1941
2650,2651c2687,2688
< Dimensions can be in units of em, ex, in, pt, pc,
< cm, mm, dd, cc, bp, or sp; but yours is a new one!
---
> Dimensions can be in units of em, ex, zw, zh, in, pt, pc,
> cm, mm, dd, cc, bp, H, Q, or sp; but yours is a new one!
2830c2867
< Since I expected to read a number between 0 and 15,
---
> Since I expected to read a number between 0 and 255,
2835d2871
< {restoring current font=\ip}
3038c3074,3075
< ^\hbox(7.0+1.0)x2.0
---
> ^\hbox(7.0+1.0)x2.0, yoko(math) direction
> ^.\displace 0.0
3051c3088
< \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
3054c3091
< .\fam0 ^^c8
---
> .\fam0 È 
3056c3093
< .\vbox(-2.0+0.0)x0.0
---
> .\vbox(-2.0+0.0)x0.0, yoko(math) direction
3060c3097,3098
< ^.\hbox(7.0+1.0)x2.0, shifted -2.0
---
> ^.\hbox(7.0+1.0)x2.0, shifted -2.0, yoko(math) direction
> ^..\displace 0.0
3140a3179
> .....\displace 0.0
3142a3182
> ....|\displace 0.0
3143a3184
> ....\displace 0.0
3151a3193
> .\displace 0.0
3223d3264
< {restoring \fam=-1}
3235c3276
< ! \textfont 0 is undefined (character ^^c8).
---
> ! \textfont 0 is undefined (character È).
3286c3327
< .\vbox(6.0+-8.0)x0.0
---
> .\vbox(6.0+-8.0)x0.0, yoko(math) direction
3326c3367
< \vbox(10000.0+2.0)x28.0, glue set 9737.58789fil
---
> \vbox(10000.0+2.0)x28.0, glue set 9737.58742fil
3329a3371
> ..\displace 0.0
3372c3414
< .\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
3374c3416
< ..\vbox(6.0+-8.0)x0.0
---
> ..\vbox(6.0+-8.0)x0.0, yoko(math) direction
3385c3427,3428
< ......\hbox(7.0+1.0)x2.0, shifted -2.0
---
> ......\hbox(7.0+1.0)x2.0, shifted -2.0, yoko(math) direction
> .......\displace 0.0
3544a3588
> ..........\displace 0.0
3546a3591
> .........|\displace 0.0
3547a3593
> .........\displace 0.0
3557c3603
< .\hbox(20.5+50.80002)x8.27895, shifted 19.72105
---
> .\hbox(20.5+50.80002)x8.27895, shifted 19.72105, display
3564c3610,3611
< ...\hbox(7.0+1.0)x1.99
---
> ...\hbox(7.0+1.0)x1.99, yoko(math) direction
> ....\displace 0.0
3616c3663
< Memory usage before: 2170&521; after: 1181&459; still untouched: 175
---
> Memory usage before: 3283&519; after: 1753&457; still untouched: 240
3766d3812
< {restoring \fam=-1}
3839d3884
< {restoring \fam=-1}
3864c3909
< \vbox(16383.99998+2.0)x100.0, glue set 16318.0fil
---
> \vbox(16383.99998+2.0)x100.0, glue set 16317.99997fil
3895c3940
< ..\hbox(12.0+4.0)x8.1778
---
> ..\hbox(12.0+4.0)x8.1778, display
3917c3962
< ..\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
3919,3920c3964,3966
< ...\vbox(-0.00002+13.00002)x52.5, glue set - 0.00247
< ....\vbox(-0.00002+0.0)x0.0
---
> ...\vbox(-0.00002+13.00002)x52.5, glue set - 0.00247, yoko(math) directi
> on
> ....\vbox(-0.00002+0.0)x0.0, yoko(math) direction
3925c3971
< ....\hbox(7.0+1.0)x5.0, shifted 47.5
---
> ....\hbox(7.0+1.0)x5.0, shifted 47.5, display
3951c3997
< Memory usage before: 640&415; after: 397&410; still untouched: 175
---
> Memory usage before: 959&413; after: 573&408; still untouched: 240
4011d4056
< {restoring \fam=-1}
4034c4079
< \vbox(16383.99998+0.0)x8236.0, glue set 16344.0fil
---
> \vbox(16383.99998+0.0)x8236.0, glue set 16343.99998fil
4047c4092
< .\hbox(0.0+0.0)x1009.0, shifted 7227.0
---
> .\hbox(0.0+0.0)x1009.0, shifted 7227.0, display
4051c4096
< .\hbox(0.0+0.0)x-7127.0, shifted 7227.0
---
> .\hbox(0.0+0.0)x-7127.0, shifted 7227.0, display
4053c4098
< Memory usage before: 235&401; after: 178&399; still untouched: 175
---
> Memory usage before: 342&399; after: 248&397; still untouched: 240
4420c4465
< \vbox(16383.99998+0.0)x100.0, glue set 16332.0fil
---
> \vbox(16383.99998+0.0)x100.0, glue set 16331.99998fil
4425a4471
> ...\displace 0.0
4447a4494
> ...\displace 0.0
4475a4523
> ...\displace 0.0
4492a4541
> ...\displace 0.0
4506c4555
< Memory usage before: 651&432; after: 417&418; still untouched: 175
---
> Memory usage before: 1008&431; after: 606&417; still untouched: 240
4742c4791,4792
< \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
4746a4797
> ...\displace 0.0
4762a4814
> .....\displace 0.0
4777a4830
> ......\displace 0.0
4828c4881
< Memory usage before: 776&458; after: 464&452; still untouched: 175
---
> Memory usage before: 1186&457; after: 682&451; still untouched: 240
4845c4898
< 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,4888d4933
< ! 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.
< 
5701c5746
< ! \textfont 0 is undefined (character ^^c8).
---
> ! \textfont 0 is undefined (character È).
6381c6426
< (tripos.tex
---
> (./tripos.tex
6502c6547
< l.429 ...^^M=13 \def^^M{\relax}#
---
> l.429 ...^^M=13 \defqqM{\relax}#
6596c6641
< Memory usage before: 819&428; after: 720&426; still untouched: 175
---
> Memory usage before: 1232&428; after: 1078&426; still untouched: 240
6853c6898
< .|vbox(0.0+0.0)x0.0
---
> .|vbox(0.0+0.0)x0.0, yoko(math) direction
6876a6922
> ..|displace 0.0
6891a6938
> ..|displace 0.0
6926a6974
> .|displace 0.0
6959a7008
> .|displace 0.0
6961c7010,7011
< .|hbox(0.0+0.0)x0.0
---
> .|hbox(0.0+0.0)x0.0, yoko(math) direction
> ..|displace 0.0
6991a7042
> .|displace 0.0
7103a7155
> ...|displace 0.0
7108d7159
< ...|ip A (ligature BB)
7116a7168
> ...|displace 0.0
7125d7176
< ...|kern2.0
7126a7178
> .|displace 0.0
7136c7188
< ...|vbox(0.0+0.0)x0.0
---
> ...|vbox(0.0+0.0)x0.0, yoko(math) direction
7156c7208
< Memory usage before: 895&439; after: 290&420; still untouched: 175
---
> Memory usage before: 1350&439; after: 398&420; still untouched: 240
7289c7341
< Memory usage before: 334&431; after: 292&418; still untouched: 175
---
> Memory usage before: 462&431; after: 400&418; still untouched: 240
7292a7345,7347
> 
> ### semi simple group (level 1) entered at line 429 (begingroup)
> ### bottom level
7297,7300c7352,7355
<  47 strings out of 1674
<  253 string characters out of 8367
<  2825 words of memory out of 3000
<  372 multiletter control sequences out of 2100
---
>  44 strings out of 1627
>  261 string characters out of 10703
>  4260 words of memory out of 4500
>  525 multiletter control sequences out of 15000+0
7302,7303c7357,7358
<  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

mv tripos.tex xptripos.tex
+ mv tripos.tex xptripos.tex
diff $testdir/tripos.tex xptripos.tex
+ diff SRCDIR/triptrap/tripos.tex xptripos.tex

eval ./dvitype $dvitype_args trip.dvi >xptrip.typ || exit 1
+ eval ./dvitype -output-level=2 -dpi=72.27 '-page-start='\''*.*.*.*.*.*.*.*.*.*'\''' trip.dvi
./dvitype -output-level=2 -dpi=72.27 -page-start='*.*.*.*.*.*.*.*.*.*' trip.dvi
++ ./dvitype -output-level=2 -dpi=72.27 '-page-start=*.*.*.*.*.*.*.*.*.*' trip.dvi
$DIFF $DIFFFLAGS $testdir/trip.typ xptrip.typ
+ diff SRCDIR/triptrap/trip.typ xptrip.typ
1c1
< This is DVItype, Version 3.6
---
> This is DVItype, Version 3.6 (TeX Live 2021/dev)
9c9
< ' TeX output 1776.07.04:1200'
---
> ' TeX output 2021.01.27:1803'
419c419
< 1121: down4 639342208 
---
> 1121: down4 639342177 
1087,1088c1087,1088
< 2535: y4 203921760 
< 2540: y0 203921760 
---
> 2535: y4 203921756 
> 2540: y0 203921756 

mv trip.fmt xtrip.fmt
+ mv trip.fmt xtrip.fmt

# =================================

echo "*** e-TeX specific part of e-TRIP test for e-pTeX ***."
+ echo '*** e-TeX specific part of e-TRIP test for e-pTeX ***.'
*** e-TeX specific part of e-TRIP test for e-pTeX ***.

./pltotf $etestdir/etrip.pl etrip.tfm || exit 1
+ ./pltotf SRCDIR/etexdir/etrip/etrip.pl etrip.tfm

./tftopl ./etrip.tfm etrip.pl || exit 1
+ ./tftopl ./etrip.tfm etrip.pl

diff $etestdir/etrip.pl etrip.pl || is_OK=false
+ diff SRCDIR/etexdir/etrip/etrip.pl etrip.pl

# get same filename in log
$LN_S $eptestdir/eptrip.tex etrip.tex
+ ln -s SRCDIR/eptexdir/eptrip/eptrip.tex etrip.tex

./eptex --progname=epinitex --ini <$etestdir/etrip2.in >eptripin.fot
+ ./eptex --progname=epinitex --ini
if test ! -s etrip.fmt; then
  echo "*** etrip.fmt not created by etrip2.in, investigate!" >&2
  exit 1
fi
+ test '!' -s etrip.fmt
sed "$P_SED1" etrip.log > eptripin.log || exit 1
+ sed 's/, yoko direction//;s/yoko direction, //' etrip.log
diff $etestdir/etripin.log eptripin.log
+ diff SRCDIR/etexdir/etrip/etripin.log eptripin.log
1c1
< This is e-TeX, Version 3.14159265-2.6 (TeX Live 2014) (INITEX)  22 JAN 2014 11:25
---
> This is e-pTeX, Version 3.141592653-p3.8.3-191112-2.6 (utf8.euc) (TeX Live 2021/dev) (INITEX)  27 JAN 2021 18:03
26,29c26,29
<  (preloaded format=etrip 2014.1.22)
< 1491 strings of total length 26258
< 281 memory locations dumped; current usage is 36&167
< 408 multiletter control sequences
---
>  (preloaded format=etrip 2021.1.27)
> 1674 strings of total length 29328
> 284 memory locations dumped; current usage is 40&167
> 494 multiletter control sequences

# May as well test non-ini second time through.
./eptex --progname=eptex <$etestdir/etrip3.in >eptrip.fot
+ ./eptex --progname=eptex
sed "$P_SED1;$P_SED2" etrip.log > eptrip.log
+ sed 's/, yoko direction//;s/yoko direction, //;s/yoko(math) direction, //' etrip.log
diff $etestdir/etrip.fot eptrip.fot
+ diff SRCDIR/etexdir/etrip/etrip.fot eptrip.fot
1c1
< This is e-TeX, Version 3.14159265-2.6 (TeX Live 2014) (preloaded format=etex)
---
> This is e-pTeX, Version 3.141592653-p3.8.3-191112-2.6 (utf8.euc) (TeX Live 2021/dev) (preloaded format=eptex)
45,46d44
< 
< \openout1 = `etrip.out'.

# We use $DIFF instead of `diff' only for those files where there
# might actually be legitimate numerical differences.
$DIFF $DIFFFLAGS $eptestdir/eptrip.log eptrip.log
+ diff SRCDIR/eptexdir/eptrip/eptrip.log eptrip.log
1c1
< This is e-pTeX, Version 3.14159265-p3.4-130605-2.6 (utf8.euc) (TeX Live 2014) (preloaded format=etrip 2014.1.22)  22 JAN 2014 11:25
---
> This is e-pTeX, Version 3.141592653-p3.8.3-191112-2.6 (utf8.euc) (TeX Live 2021/dev) (preloaded format=etrip 2021.1.27)  27 JAN 2021 18:03
57a58
> .\displace 0.0
104a106
> .\displace 0.0
133a136
> .\displace 0.0
193a197
> .\displace 0.0
205a210
> ..\displace 0.0
253a259
> ..\displace 0.0
283a290
> ..\displace 0.0
303a311
> ..\displace 0.0
692,693d699
< \openout1 = `etrip.out'.
< 
1426c1432
< this will be denominator of:
---
> this will begin denominator of:
1450c1456
< this will be denominator of:
---
> this will begin denominator of:
1497c1503
< this will be denominator of:
---
> this will begin denominator of:
1545c1551
< this will be denominator of:
---
> this will begin denominator of:
1662a1669
> \displace 0.0
1873a1881
> \displace 0.0
1881c1889
< .\hbox(0.0+0.0)x0.0, shifted -16.5
---
> .\hbox(0.0+0.0)x0.0, shifted -16.5, yoko(math) direction
1901a1910
> \displace 0.0
1906c1915
< .\hbox(0.0+0.0)x0.0, shifted 3.0
---
> .\hbox(0.0+0.0)x0.0, shifted 3.0, yoko(math) direction
2207c2216
< A character number must be between 0 and 255, or KANJI code.
---
> A character number must be between 0 and 255.
2213c2222
< A character number must be between 0 and 255, or KANJI code.
---
> A character number must be between 0 and 255.
4025a4035
> ..\displace 0.0
4033a4044
> ..\displace 0.0
4300a4312
> .\displace 0.0
4421,4422c4433,4434
<  19 strings out of 1692
<  145 string characters out of 8157
---
>  19 strings out of 1626
>  145 string characters out of 10672
4424c4436
<  463 multiletter control sequences out of 15000+0
---
>  495 multiletter control sequences out of 15000+0

mv etrip.out eptrip.out
+ mv etrip.out eptrip.out
diff $etestdir/etrip.out eptrip.out
+ diff SRCDIR/etexdir/etrip/etrip.out eptrip.out

eval ./dvitype $dvitype_args etrip.dvi >eptrip.typ || exit 1
+ eval ./dvitype -output-level=2 -dpi=72.27 '-page-start='\''*.*.*.*.*.*.*.*.*.*'\''' etrip.dvi
./dvitype -output-level=2 -dpi=72.27 -page-start='*.*.*.*.*.*.*.*.*.*' etrip.dvi
++ ./dvitype -output-level=2 -dpi=72.27 '-page-start=*.*.*.*.*.*.*.*.*.*' etrip.dvi
$DIFF $DIFFFLAGS $etestdir/etrip.typ eptrip.typ
+ diff SRCDIR/etexdir/etrip/etrip.typ eptrip.typ
1c1
< This is DVItype, Version 3.6 (TeX Live 2014)
---
> This is DVItype, Version 3.6 (TeX Live 2021/dev)
9c9
< ' TeX output 2014.01.22:1125'
---
> ' TeX output 2021.01.27:1803'

$is_OK || {
  echo ">>> There were some errors." >&2
  exit 1
}
+ :

PASS eptexdir/eptriptest.test (exit status: 0)
PASS: eptexdir/eptriptest.test