Andreas Wacknitz
2024-03-24 3df02058fb3d48a999bbc8d5d56c2910fbc249a4
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
PASS: tests/constitute.tap 1 - char bgr
PASS: tests/constitute.tap 2 - char bgro
PASS: tests/constitute.tap 3 - char bgrp
PASS: tests/constitute.tap 4 - char rgb
PASS: tests/constitute.tap 5 - char rgba
PASS: tests/constitute.tap 6 - char rgbt
PASS: tests/constitute.tap 7 - char rgbo
PASS: tests/constitute.tap 8 - char prgb
PASS: tests/constitute.tap 9 - char cmy
PASS: tests/constitute.tap 10 - char cmyk
PASS: tests/constitute.tap 11 - char i
PASS: tests/constitute.tap 12 - short bgr
PASS: tests/constitute.tap 13 - short bgro
PASS: tests/constitute.tap 14 - short bgrp
PASS: tests/constitute.tap 15 - short rgb
PASS: tests/constitute.tap 16 - short rgba
PASS: tests/constitute.tap 17 - short rgbt
PASS: tests/constitute.tap 18 - short rgbo
PASS: tests/constitute.tap 19 - short prgb
PASS: tests/constitute.tap 20 - short cmy
PASS: tests/constitute.tap 21 - short cmyk
PASS: tests/constitute.tap 22 - short i
PASS: tests/constitute.tap 23 - integer bgr
PASS: tests/constitute.tap 24 - integer bgro
PASS: tests/constitute.tap 25 - integer bgrp
PASS: tests/constitute.tap 26 - integer rgb
PASS: tests/constitute.tap 27 - integer rgba
PASS: tests/constitute.tap 28 - integer rgbt
PASS: tests/constitute.tap 29 - integer rgbo
PASS: tests/constitute.tap 30 - integer prgb
PASS: tests/constitute.tap 31 - integer cmy
PASS: tests/constitute.tap 32 - integer cmyk
PASS: tests/constitute.tap 33 - integer i
PASS: tests/constitute.tap 34 - long bgr
PASS: tests/constitute.tap 35 - long bgro
PASS: tests/constitute.tap 36 - long bgrp
PASS: tests/constitute.tap 37 - long rgb
PASS: tests/constitute.tap 38 - long rgba
PASS: tests/constitute.tap 39 - long rgbt
PASS: tests/constitute.tap 40 - long rgbo
PASS: tests/constitute.tap 41 - long prgb
PASS: tests/constitute.tap 42 - long cmy
PASS: tests/constitute.tap 43 - long cmyk
PASS: tests/constitute.tap 44 - long i
PASS: tests/constitute.tap 45 - float bgr
PASS: tests/constitute.tap 46 - float bgro
PASS: tests/constitute.tap 47 - float bgrp
PASS: tests/constitute.tap 48 - float rgb
PASS: tests/constitute.tap 49 - float rgba
PASS: tests/constitute.tap 50 - float rgbt
PASS: tests/constitute.tap 51 - float rgbo
PASS: tests/constitute.tap 52 - float prgb
PASS: tests/constitute.tap 53 - float cmy
PASS: tests/constitute.tap 54 - float cmyk
PASS: tests/constitute.tap 55 - float i
PASS: tests/constitute.tap 56 - double bgr
PASS: tests/constitute.tap 57 - double bgro
PASS: tests/constitute.tap 58 - double bgrp
PASS: tests/constitute.tap 59 - double rgb
PASS: tests/constitute.tap 60 - double rgba
PASS: tests/constitute.tap 61 - double rgbt
PASS: tests/constitute.tap 62 - double rgbo
PASS: tests/constitute.tap 63 - double prgb
PASS: tests/constitute.tap 64 - double cmy
PASS: tests/constitute.tap 65 - double cmyk
PASS: tests/constitute.tap 66 - double i
PASS: tests/drawtests.tap 1 - vector drawing
PASS: tests/rwblob.tap 1 - ART bilevel
PASS: tests/rwblob.tap 2 - ART gray
PASS: tests/rwblob.tap 3 - ART palette
PASS: tests/rwblob.tap 4 - ART truecolor
PASS: tests/rwblob.tap 5 - AVS bilevel
PASS: tests/rwblob.tap 6 - AVS gray
PASS: tests/rwblob.tap 7 - AVS palette
PASS: tests/rwblob.tap 8 - AVS truecolor
PASS: tests/rwblob.tap 9 - BMP bilevel
PASS: tests/rwblob.tap 10 - BMP gray
PASS: tests/rwblob.tap 11 - BMP palette
PASS: tests/rwblob.tap 12 - BMP truecolor
PASS: tests/rwblob.tap 13 - BMP truecolor
PASS: tests/rwblob.tap 14 - BMP2 bilevel
PASS: tests/rwblob.tap 15 - BMP2 gray
PASS: tests/rwblob.tap 16 - BMP2 palette
PASS: tests/rwblob.tap 17 - BMP2 truecolor
PASS: tests/rwblob.tap 18 - BMP3 bilevel
PASS: tests/rwblob.tap 19 - BMP3 gray
PASS: tests/rwblob.tap 20 - BMP3 palette
PASS: tests/rwblob.tap 21 - BMP3 truecolor
PASS: tests/rwblob.tap 22 - CALS bilevel
PASS: tests/rwblob.tap 23 - CALS gray
PASS: tests/rwblob.tap 24 - CALS palette
PASS: tests/rwblob.tap 25 - CALS truecolor
PASS: tests/rwblob.tap 26 - CIN bilevel
PASS: tests/rwblob.tap 27 - CIN gray
PASS: tests/rwblob.tap 28 - CIN palette
PASS: tests/rwblob.tap 29 - CIN truecolor
PASS: tests/rwblob.tap 30 - DIB bilevel
PASS: tests/rwblob.tap 31 - DIB gray
PASS: tests/rwblob.tap 32 - DIB palette
PASS: tests/rwblob.tap 33 - DIB truecolor
PASS: tests/rwblob.tap 34 - DPX bilevel
PASS: tests/rwblob.tap 35 - DPX gray
PASS: tests/rwblob.tap 36 - DPX palette
PASS: tests/rwblob.tap 37 - DPX truecolor
PASS: tests/rwblob.tap 38 - EPDF bilevel
PASS: tests/rwblob.tap 39 - EPDF gray
PASS: tests/rwblob.tap 40 - EPDF palette
PASS: tests/rwblob.tap 41 - EPDF truecolor
PASS: tests/rwblob.tap 42 - EPT bilevel
PASS: tests/rwblob.tap 43 - EPT gray
PASS: tests/rwblob.tap 44 - EPT palette
PASS: tests/rwblob.tap 45 - EPT truecolor
PASS: tests/rwblob.tap 46 - FAX bilevel
PASS: tests/rwblob.tap 47 - FAX gray
PASS: tests/rwblob.tap 48 - FAX palette
PASS: tests/rwblob.tap 49 - FAX truecolor
SKIP: tests/rwblob.tap 50 - FPX bilevel # SKIP requires FPX support
SKIP: tests/rwblob.tap 51 - FPX gray # SKIP requires FPX support
SKIP: tests/rwblob.tap 52 - FPX palette # SKIP requires FPX support
SKIP: tests/rwblob.tap 53 - FPX truecolor # SKIP requires FPX support
PASS: tests/rwblob.tap 54 - G3 bilevel
PASS: tests/rwblob.tap 55 - G3 gray
PASS: tests/rwblob.tap 56 - G3 palette
PASS: tests/rwblob.tap 57 - G3 truecolor
PASS: tests/rwblob.tap 58 - FITS bilevel
PASS: tests/rwblob.tap 59 - FITS gray
PASS: tests/rwblob.tap 60 - FITS palette
PASS: tests/rwblob.tap 61 - FITS truecolor
PASS: tests/rwblob.tap 62 - GIF bilevel
PASS: tests/rwblob.tap 63 - GIF gray
PASS: tests/rwblob.tap 64 - GIF palette
PASS: tests/rwblob.tap 65 - GIF truecolor
PASS: tests/rwblob.tap 66 - GIF87 bilevel
PASS: tests/rwblob.tap 67 - GIF87 gray
PASS: tests/rwblob.tap 68 - GIF87 palette
PASS: tests/rwblob.tap 69 - GIF87 truecolor
PASS: tests/rwblob.tap 70 - HRZ bilevel
PASS: tests/rwblob.tap 71 - HRZ gray
PASS: tests/rwblob.tap 72 - HRZ palette
PASS: tests/rwblob.tap 73 - HRZ truecolor
SKIP: tests/rwblob.tap 74 - JBIG bilevel # SKIP requires JBIG support
SKIP: tests/rwblob.tap 75 - JBIG gray # SKIP requires JBIG support
SKIP: tests/rwblob.tap 76 - JBIG palette # SKIP requires JBIG support
SKIP: tests/rwblob.tap 77 - JBIG truecolor # SKIP requires JBIG support
PASS: tests/rwblob.tap 78 - JPEG bilevel
PASS: tests/rwblob.tap 79 - JPEG gray
PASS: tests/rwblob.tap 80 - JPEG palette
PASS: tests/rwblob.tap 81 - JPEG truecolor
PASS: tests/rwblob.tap 82 - JP2 bilevel
PASS: tests/rwblob.tap 83 - JP2 gray
FAIL: tests/rwblob.tap 84 - JP2 palette
FAIL: tests/rwblob.tap 85 - JP2 truecolor
PASS: tests/rwblob.tap 86 - MAT bilevel
PASS: tests/rwblob.tap 87 - MAT gray
PASS: tests/rwblob.tap 88 - MAT palette
PASS: tests/rwblob.tap 89 - MAT truecolor
PASS: tests/rwblob.tap 90 - MIFF bilevel
PASS: tests/rwblob.tap 91 - MIFF gray
PASS: tests/rwblob.tap 92 - MIFF palette
PASS: tests/rwblob.tap 93 - MIFF truecolor
PASS: tests/rwblob.tap 94 - MNG bilevel
PASS: tests/rwblob.tap 95 - MNG gray
PASS: tests/rwblob.tap 96 - MNG palette
PASS: tests/rwblob.tap 97 - MNG truecolor
PASS: tests/rwblob.tap 98 - MTV bilevel
PASS: tests/rwblob.tap 99 - MTV gray
PASS: tests/rwblob.tap 100 - MTV palette
PASS: tests/rwblob.tap 101 - MTV truecolor
PASS: tests/rwblob.tap 102 - P7 bilevel
PASS: tests/rwblob.tap 103 - P7 gray
PASS: tests/rwblob.tap 104 - P7 palette
PASS: tests/rwblob.tap 105 - P7 truecolor
PASS: tests/rwblob.tap 106 - PBM bilevel
PASS: tests/rwblob.tap 107 - PBM gray
PASS: tests/rwblob.tap 108 - PBM palette
PASS: tests/rwblob.tap 109 - PBM truecolor
PASS: tests/rwblob.tap 110 - PCD bilevel
PASS: tests/rwblob.tap 111 - PCD gray
PASS: tests/rwblob.tap 112 - PCD palette
PASS: tests/rwblob.tap 113 - PCD truecolor
PASS: tests/rwblob.tap 114 - PCDS bilevel
PASS: tests/rwblob.tap 115 - PCDS gray
PASS: tests/rwblob.tap 116 - PCDS palette
PASS: tests/rwblob.tap 117 - PCDS truecolor
PASS: tests/rwblob.tap 118 - PCX bilevel
PASS: tests/rwblob.tap 119 - PCX gray
PASS: tests/rwblob.tap 120 - PCX palette
PASS: tests/rwblob.tap 121 - PCX truecolor
PASS: tests/rwblob.tap 122 - PGM bilevel
PASS: tests/rwblob.tap 123 - PGM gray
PASS: tests/rwblob.tap 124 - PGM palette
PASS: tests/rwblob.tap 125 - PGM truecolor
PASS: tests/rwblob.tap 126 - PGX bilevel
PASS: tests/rwblob.tap 127 - PGX gray
PASS: tests/rwblob.tap 128 - PGX palette
PASS: tests/rwblob.tap 129 - PGX truecolor
PASS: tests/rwblob.tap 130 - PICON bilevel
PASS: tests/rwblob.tap 131 - PICON gray
PASS: tests/rwblob.tap 132 - PICON palette
PASS: tests/rwblob.tap 133 - PICON truecolor
PASS: tests/rwblob.tap 134 - PICT bilevel
PASS: tests/rwblob.tap 135 - PICT gray
PASS: tests/rwblob.tap 136 - PICT palette
PASS: tests/rwblob.tap 137 - PICT truecolor
PASS: tests/rwblob.tap 138 - PNG bilevel
PASS: tests/rwblob.tap 139 - PNG gray
PASS: tests/rwblob.tap 140 - PNG palette
PASS: tests/rwblob.tap 141 - PNG truecolor
PASS: tests/rwblob.tap 142 - PPM bilevel
PASS: tests/rwblob.tap 143 - PPM gray
PASS: tests/rwblob.tap 144 - PPM palette
PASS: tests/rwblob.tap 145 - PPM truecolor
PASS: tests/rwblob.tap 146 - PTIF bilevel
PASS: tests/rwblob.tap 147 - PTIF gray
PASS: tests/rwblob.tap 148 - PTIF palette
PASS: tests/rwblob.tap 149 - PTIF truecolor
PASS: tests/rwblob.tap 150 - RAS bilevel
PASS: tests/rwblob.tap 151 - RAS gray
PASS: tests/rwblob.tap 152 - RAS palette
PASS: tests/rwblob.tap 153 - RAS truecolor
PASS: tests/rwblob.tap 154 - SGI bilevel
PASS: tests/rwblob.tap 155 - SGI gray
PASS: tests/rwblob.tap 156 - SGI palette
PASS: tests/rwblob.tap 157 - SGI truecolor
PASS: tests/rwblob.tap 158 - SUN bilevel
PASS: tests/rwblob.tap 159 - SUN gray
PASS: tests/rwblob.tap 160 - SUN palette
PASS: tests/rwblob.tap 161 - SUN truecolor
PASS: tests/rwblob.tap 162 - TGA bilevel
PASS: tests/rwblob.tap 163 - TGA gray
PASS: tests/rwblob.tap 164 - TGA palette
PASS: tests/rwblob.tap 165 - TGA truecolor
PASS: tests/rwblob.tap 166 - TIFF bilevel
PASS: tests/rwblob.tap 167 - TIFF gray
PASS: tests/rwblob.tap 168 - TIFF palette
PASS: tests/rwblob.tap 169 - TIFF truecolor
PASS: tests/rwblob.tap 170 - TXT bilevel
PASS: tests/rwblob.tap 171 - TXT gray
PASS: tests/rwblob.tap 172 - TXT palette
PASS: tests/rwblob.tap 173 - TXT truecolor
PASS: tests/rwblob.tap 174 - VDA bilevel
PASS: tests/rwblob.tap 175 - VDA gray
PASS: tests/rwblob.tap 176 - VDA palette
PASS: tests/rwblob.tap 177 - VDA truecolor
PASS: tests/rwblob.tap 178 - VICAR bilevel
PASS: tests/rwblob.tap 179 - VICAR gray
PASS: tests/rwblob.tap 180 - VICAR palette
PASS: tests/rwblob.tap 181 - VICAR truecolor
PASS: tests/rwblob.tap 182 - VIFF bilevel
PASS: tests/rwblob.tap 183 - VIFF gray
PASS: tests/rwblob.tap 184 - VIFF palette
PASS: tests/rwblob.tap 185 - VIFF truecolor
PASS: tests/rwblob.tap 186 - VST bilevel
PASS: tests/rwblob.tap 187 - VST gray
PASS: tests/rwblob.tap 188 - VST palette
PASS: tests/rwblob.tap 189 - VST truecolor
PASS: tests/rwblob.tap 190 - WBMP bilevel
PASS: tests/rwblob.tap 191 - WBMP gray
PASS: tests/rwblob.tap 192 - WBMP palette
PASS: tests/rwblob.tap 193 - WBMP truecolor
PASS: tests/rwblob.tap 194 - WEBP bilevel
PASS: tests/rwblob.tap 195 - WEBP gray
PASS: tests/rwblob.tap 196 - WEBP palette
PASS: tests/rwblob.tap 197 - WEBP truecolor
PASS: tests/rwblob.tap 198 - WEBP bilevel (lossless)
PASS: tests/rwblob.tap 199 - WEBP gray (lossless)
PASS: tests/rwblob.tap 200 - WEBP palette (lossless)
PASS: tests/rwblob.tap 201 - WEBP truecolor (lossless)
PASS: tests/rwblob.tap 202 - WPG bilevel
PASS: tests/rwblob.tap 203 - WPG gray
PASS: tests/rwblob.tap 204 - WPG palette
PASS: tests/rwblob.tap 205 - WPG truecolor
PASS: tests/rwblob.tap 206 - XBM bilevel
PASS: tests/rwblob.tap 207 - XBM gray
PASS: tests/rwblob.tap 208 - XBM palette
PASS: tests/rwblob.tap 209 - XBM truecolor
PASS: tests/rwblob.tap 210 - XPM bilevel
PASS: tests/rwblob.tap 211 - XPM gray
PASS: tests/rwblob.tap 212 - XPM palette
PASS: tests/rwblob.tap 213 - XPM truecolor
PASS: tests/rwblob.tap 214 - XWD bilevel
PASS: tests/rwblob.tap 215 - XWD gray
PASS: tests/rwblob.tap 216 - XWD palette
PASS: tests/rwblob.tap 217 - XWD truecolor
PASS: tests/rwblob_sized.tap 1 - CMYK truecolor_70x46
PASS: tests/rwblob_sized.tap 2 - GRAY truecolor_70x46
PASS: tests/rwblob_sized.tap 3 - GRAYA truecolor_70x46
PASS: tests/rwblob_sized.tap 4 - MONO truecolor_70x46
PASS: tests/rwblob_sized.tap 5 - PAL truecolor_70x46
PASS: tests/rwblob_sized.tap 6 - RGB truecolor_70x46
PASS: tests/rwblob_sized.tap 7 - RGBA truecolor_70x46
PASS: tests/rwblob_sized.tap 8 - UYVY truecolor_70x46
PASS: tests/rwblob_sized.tap 9 - YUV truecolor_70x46
PASS: tests/rwfile.tap 1 - ART bilevel
PASS: tests/rwfile.tap 2 - ART bilevel (stdio)
PASS: tests/rwfile.tap 3 - ART gray
PASS: tests/rwfile.tap 4 - ART gray (stdio)
PASS: tests/rwfile.tap 5 - ART palette
PASS: tests/rwfile.tap 6 - ART palette (stdio)
PASS: tests/rwfile.tap 7 - ART truecolor
PASS: tests/rwfile.tap 8 - ART truecolor (stdio)
PASS: tests/rwfile.tap 9 - ART truecolor_1x266
PASS: tests/rwfile.tap 10 - ART truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 11 - AVS bilevel
PASS: tests/rwfile.tap 12 - AVS bilevel (stdio)
PASS: tests/rwfile.tap 13 - AVS gray
PASS: tests/rwfile.tap 14 - AVS gray (stdio)
PASS: tests/rwfile.tap 15 - AVS palette
PASS: tests/rwfile.tap 16 - AVS palette (stdio)
PASS: tests/rwfile.tap 17 - AVS truecolor
PASS: tests/rwfile.tap 18 - AVS truecolor (stdio)
PASS: tests/rwfile.tap 19 - AVS truecolor_1x266
PASS: tests/rwfile.tap 20 - AVS truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 21 - BMP bilevel
PASS: tests/rwfile.tap 22 - BMP bilevel (stdio)
PASS: tests/rwfile.tap 23 - BMP gray
PASS: tests/rwfile.tap 24 - BMP gray (stdio)
PASS: tests/rwfile.tap 25 - BMP palette
PASS: tests/rwfile.tap 26 - BMP palette (stdio)
PASS: tests/rwfile.tap 27 - BMP truecolor
PASS: tests/rwfile.tap 28 - BMP truecolor (stdio)
PASS: tests/rwfile.tap 29 - BMP truecolor_1x266
PASS: tests/rwfile.tap 30 - BMP truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 31 - BMP2 bilevel
PASS: tests/rwfile.tap 32 - BMP2 bilevel (stdio)
PASS: tests/rwfile.tap 33 - BMP2 gray
PASS: tests/rwfile.tap 34 - BMP2 gray (stdio)
PASS: tests/rwfile.tap 35 - BMP2 palette
PASS: tests/rwfile.tap 36 - BMP2 palette (stdio)
PASS: tests/rwfile.tap 37 - BMP2 truecolor
PASS: tests/rwfile.tap 38 - BMP2 truecolor (stdio)
PASS: tests/rwfile.tap 39 - BMP2 truecolor_1x266
PASS: tests/rwfile.tap 40 - BMP2 truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 41 - BMP3 bilevel
PASS: tests/rwfile.tap 42 - BMP3 bilevel (stdio)
PASS: tests/rwfile.tap 43 - BMP3 gray
PASS: tests/rwfile.tap 44 - BMP3 gray (stdio)
PASS: tests/rwfile.tap 45 - BMP3 palette
PASS: tests/rwfile.tap 46 - BMP3 palette (stdio)
PASS: tests/rwfile.tap 47 - BMP3 truecolor
PASS: tests/rwfile.tap 48 - BMP3 truecolor (stdio)
PASS: tests/rwfile.tap 49 - BMP3 truecolor_1x266
PASS: tests/rwfile.tap 50 - BMP3 truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 51 - CALS bilevel
PASS: tests/rwfile.tap 52 - CALS gray
PASS: tests/rwfile.tap 53 - CALS palette
PASS: tests/rwfile.tap 54 - CALS truecolor
PASS: tests/rwfile.tap 55 - CALS truecolor_1x266
PASS: tests/rwfile.tap 56 - CIN bilevel
PASS: tests/rwfile.tap 57 - CIN bilevel (stdio)
PASS: tests/rwfile.tap 58 - CIN gray
PASS: tests/rwfile.tap 59 - CIN gray (stdio)
PASS: tests/rwfile.tap 60 - CIN palette
PASS: tests/rwfile.tap 61 - CIN palette (stdio)
PASS: tests/rwfile.tap 62 - CIN truecolor
PASS: tests/rwfile.tap 63 - CIN truecolor (stdio)
PASS: tests/rwfile.tap 64 - CIN truecolor_1x266
PASS: tests/rwfile.tap 65 - CIN truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 66 - DCX bilevel
PASS: tests/rwfile.tap 67 - DCX bilevel (stdio)
PASS: tests/rwfile.tap 68 - DCX gray
PASS: tests/rwfile.tap 69 - DCX gray (stdio)
PASS: tests/rwfile.tap 70 - DCX palette
PASS: tests/rwfile.tap 71 - DCX palette (stdio)
PASS: tests/rwfile.tap 72 - DCX truecolor
PASS: tests/rwfile.tap 73 - DCX truecolor (stdio)
PASS: tests/rwfile.tap 74 - DCX truecolor_1x266
PASS: tests/rwfile.tap 75 - DCX truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 76 - DIB bilevel
PASS: tests/rwfile.tap 77 - DIB bilevel (stdio)
PASS: tests/rwfile.tap 78 - DIB gray
PASS: tests/rwfile.tap 79 - DIB gray (stdio)
PASS: tests/rwfile.tap 80 - DIB palette
PASS: tests/rwfile.tap 81 - DIB palette (stdio)
PASS: tests/rwfile.tap 82 - DIB truecolor
PASS: tests/rwfile.tap 83 - DIB truecolor (stdio)
PASS: tests/rwfile.tap 84 - DIB truecolor_1x266
PASS: tests/rwfile.tap 85 - DIB truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 86 - DPX bilevel
PASS: tests/rwfile.tap 87 - DPX bilevel (stdio)
PASS: tests/rwfile.tap 88 - DPX gray
PASS: tests/rwfile.tap 89 - DPX gray (stdio)
PASS: tests/rwfile.tap 90 - DPX palette
PASS: tests/rwfile.tap 91 - DPX palette (stdio)
PASS: tests/rwfile.tap 92 - DPX truecolor
PASS: tests/rwfile.tap 93 - DPX truecolor (stdio)
PASS: tests/rwfile.tap 94 - DPX truecolor_1x266
PASS: tests/rwfile.tap 95 - DPX truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 96 - EPDF bilevel
PASS: tests/rwfile.tap 97 - EPDF gray
PASS: tests/rwfile.tap 98 - EPDF palette
PASS: tests/rwfile.tap 99 - EPDF truecolor
PASS: tests/rwfile.tap 100 - EPDF truecolor_1x266
PASS: tests/rwfile.tap 101 - EPSF bilevel
PASS: tests/rwfile.tap 102 - EPSF gray
PASS: tests/rwfile.tap 103 - EPSF palette
PASS: tests/rwfile.tap 104 - EPSF truecolor
PASS: tests/rwfile.tap 105 - EPSF truecolor_1x266
PASS: tests/rwfile.tap 106 - EPSI bilevel
PASS: tests/rwfile.tap 107 - EPSI gray
PASS: tests/rwfile.tap 108 - EPSI palette
PASS: tests/rwfile.tap 109 - EPSI truecolor
PASS: tests/rwfile.tap 110 - EPSI truecolor_1x266
PASS: tests/rwfile.tap 111 - EPI bilevel
PASS: tests/rwfile.tap 112 - EPI gray
PASS: tests/rwfile.tap 113 - EPI palette
PASS: tests/rwfile.tap 114 - EPI truecolor
PASS: tests/rwfile.tap 115 - EPI truecolor_1x266
PASS: tests/rwfile.tap 116 - EPS bilevel
PASS: tests/rwfile.tap 117 - EPS gray
PASS: tests/rwfile.tap 118 - EPS palette
PASS: tests/rwfile.tap 119 - EPS truecolor
PASS: tests/rwfile.tap 120 - EPS truecolor_1x266
PASS: tests/rwfile.tap 121 - EPT bilevel
PASS: tests/rwfile.tap 122 - EPT gray
PASS: tests/rwfile.tap 123 - EPT palette
PASS: tests/rwfile.tap 124 - EPT truecolor
PASS: tests/rwfile.tap 125 - EPT truecolor_1x266
PASS: tests/rwfile.tap 126 - FAX bilevel
PASS: tests/rwfile.tap 127 - FAX bilevel (stdio)
PASS: tests/rwfile.tap 128 - FAX gray
PASS: tests/rwfile.tap 129 - FAX gray (stdio)
PASS: tests/rwfile.tap 130 - FAX palette
PASS: tests/rwfile.tap 131 - FAX palette (stdio)
PASS: tests/rwfile.tap 132 - FAX truecolor
PASS: tests/rwfile.tap 133 - FAX truecolor (stdio)
PASS: tests/rwfile.tap 134 - FAX truecolor_1x266
PASS: tests/rwfile.tap 135 - FAX truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 136 - FITS bilevel
PASS: tests/rwfile.tap 137 - FITS bilevel (stdio)
PASS: tests/rwfile.tap 138 - FITS gray
PASS: tests/rwfile.tap 139 - FITS gray (stdio)
PASS: tests/rwfile.tap 140 - FITS palette
PASS: tests/rwfile.tap 141 - FITS palette (stdio)
PASS: tests/rwfile.tap 142 - FITS truecolor
PASS: tests/rwfile.tap 143 - FITS truecolor (stdio)
PASS: tests/rwfile.tap 144 - FITS truecolor_1x266
PASS: tests/rwfile.tap 145 - FITS truecolor_1x266 (stdio)
SKIP: tests/rwfile.tap 146 - FPX bilevel # SKIP requires FPX support
SKIP: tests/rwfile.tap 147 - FPX gray # SKIP requires FPX support
SKIP: tests/rwfile.tap 148 - FPX palette # SKIP requires FPX support
SKIP: tests/rwfile.tap 149 - FPX truecolor # SKIP requires FPX support
SKIP: tests/rwfile.tap 150 - FPX truecolor_1x266 # SKIP requires FPX support
PASS: tests/rwfile.tap 151 - GIF bilevel
PASS: tests/rwfile.tap 152 - GIF bilevel (stdio)
PASS: tests/rwfile.tap 153 - GIF gray
PASS: tests/rwfile.tap 154 - GIF gray (stdio)
PASS: tests/rwfile.tap 155 - GIF palette
PASS: tests/rwfile.tap 156 - GIF palette (stdio)
PASS: tests/rwfile.tap 157 - GIF truecolor
PASS: tests/rwfile.tap 158 - GIF truecolor (stdio)
PASS: tests/rwfile.tap 159 - GIF truecolor_1x266
PASS: tests/rwfile.tap 160 - GIF truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 161 - GRAY bilevel
PASS: tests/rwfile.tap 162 - GRAY bilevel (stdio)
PASS: tests/rwfile.tap 163 - GRAY gray
PASS: tests/rwfile.tap 164 - GRAY gray (stdio)
PASS: tests/rwfile.tap 165 - GRAY palette
PASS: tests/rwfile.tap 166 - GRAY palette (stdio)
PASS: tests/rwfile.tap 167 - GRAY truecolor
PASS: tests/rwfile.tap 168 - GRAY truecolor (stdio)
PASS: tests/rwfile.tap 169 - GRAY truecolor_1x266
PASS: tests/rwfile.tap 170 - GRAY truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 171 - HRZ bilevel
PASS: tests/rwfile.tap 172 - HRZ bilevel (stdio)
PASS: tests/rwfile.tap 173 - HRZ gray
PASS: tests/rwfile.tap 174 - HRZ gray (stdio)
PASS: tests/rwfile.tap 175 - HRZ palette
PASS: tests/rwfile.tap 176 - HRZ palette (stdio)
PASS: tests/rwfile.tap 177 - HRZ truecolor
PASS: tests/rwfile.tap 178 - HRZ truecolor (stdio)
PASS: tests/rwfile.tap 179 - HRZ truecolor_1x266
PASS: tests/rwfile.tap 180 - HRZ truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 181 - ICB bilevel
PASS: tests/rwfile.tap 182 - ICB bilevel (stdio)
PASS: tests/rwfile.tap 183 - ICB gray
PASS: tests/rwfile.tap 184 - ICB gray (stdio)
PASS: tests/rwfile.tap 185 - ICB palette
PASS: tests/rwfile.tap 186 - ICB palette (stdio)
PASS: tests/rwfile.tap 187 - ICB truecolor
PASS: tests/rwfile.tap 188 - ICB truecolor (stdio)
PASS: tests/rwfile.tap 189 - ICB truecolor_1x266
PASS: tests/rwfile.tap 190 - ICB truecolor_1x266 (stdio)
SKIP: tests/rwfile.tap 191 - JBIG bilevel # SKIP requires JBIG support
SKIP: tests/rwfile.tap 192 - JBIG bilevel (stdio) # SKIP requires JBIG support
SKIP: tests/rwfile.tap 193 - JBIG gray # SKIP requires JBIG support
SKIP: tests/rwfile.tap 194 - JBIG gray (stdio) # SKIP requires JBIG support
SKIP: tests/rwfile.tap 195 - JBIG palette # SKIP requires JBIG support
SKIP: tests/rwfile.tap 196 - JBIG palette (stdio) # SKIP requires JBIG support
SKIP: tests/rwfile.tap 197 - JBIG truecolor # SKIP requires JBIG support
SKIP: tests/rwfile.tap 198 - JBIG truecolor (stdio) # SKIP requires JBIG support
SKIP: tests/rwfile.tap 199 - JBIG truecolor_1x266 # SKIP requires JBIG support
SKIP: tests/rwfile.tap 200 - JBIG truecolor_1x266 (stdio) # SKIP requires JBIG support
PASS: tests/rwfile.tap 201 - JPEG bilevel
PASS: tests/rwfile.tap 202 - JPEG bilevel (stdio)
PASS: tests/rwfile.tap 203 - JPEG gray
PASS: tests/rwfile.tap 204 - JPEG gray (stdio)
PASS: tests/rwfile.tap 205 - JPEG palette
PASS: tests/rwfile.tap 206 - JPEG palette (stdio)
PASS: tests/rwfile.tap 207 - JPEG truecolor
PASS: tests/rwfile.tap 208 - JPEG truecolor (stdio)
PASS: tests/rwfile.tap 209 - JPEG truecolor_1x266
PASS: tests/rwfile.tap 210 - JPEG truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 211 - JP2 bilevel
PASS: tests/rwfile.tap 212 - JP2 bilevel (stdio)
PASS: tests/rwfile.tap 213 - JP2 gray
PASS: tests/rwfile.tap 214 - JP2 gray (stdio)
FAIL: tests/rwfile.tap 215 - JP2 palette
FAIL: tests/rwfile.tap 216 - JP2 palette (stdio)
FAIL: tests/rwfile.tap 217 - JP2 truecolor
FAIL: tests/rwfile.tap 218 - JP2 truecolor (stdio)
FAIL: tests/rwfile.tap 219 - JP2 truecolor_1x266
FAIL: tests/rwfile.tap 220 - JP2 truecolor_1x266 (stdio)
SKIP: tests/rwfile.tap 221 - JXL bilevel # SKIP requires JXL support
SKIP: tests/rwfile.tap 222 - JXL bilevel (stdio) # SKIP requires JXL support
SKIP: tests/rwfile.tap 223 - JXL gray # SKIP requires JXL support
SKIP: tests/rwfile.tap 224 - JXL gray (stdio) # SKIP requires JXL support
SKIP: tests/rwfile.tap 225 - JXL palette # SKIP requires JXL support
SKIP: tests/rwfile.tap 226 - JXL palette (stdio) # SKIP requires JXL support
SKIP: tests/rwfile.tap 227 - JXL truecolor # SKIP requires JXL support
SKIP: tests/rwfile.tap 228 - JXL truecolor (stdio) # SKIP requires JXL support
SKIP: tests/rwfile.tap 229 - JXL truecolor_1x266 # SKIP requires JXL support
SKIP: tests/rwfile.tap 230 - JXL truecolor_1x266 (stdio) # SKIP requires JXL support
PASS: tests/rwfile.tap 231 - MAT bilevel
PASS: tests/rwfile.tap 232 - MAT bilevel (stdio)
PASS: tests/rwfile.tap 233 - MAT gray
PASS: tests/rwfile.tap 234 - MAT gray (stdio)
PASS: tests/rwfile.tap 235 - MAT palette
PASS: tests/rwfile.tap 236 - MAT palette (stdio)
PASS: tests/rwfile.tap 237 - MAT truecolor
PASS: tests/rwfile.tap 238 - MAT truecolor (stdio)
PASS: tests/rwfile.tap 239 - MAT truecolor_1x266
PASS: tests/rwfile.tap 240 - MAT truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 241 - MIFF bilevel
PASS: tests/rwfile.tap 242 - MIFF bilevel (stdio)
PASS: tests/rwfile.tap 243 - MIFF gray
PASS: tests/rwfile.tap 244 - MIFF gray (stdio)
PASS: tests/rwfile.tap 245 - MIFF palette
PASS: tests/rwfile.tap 246 - MIFF palette (stdio)
PASS: tests/rwfile.tap 247 - MIFF truecolor
PASS: tests/rwfile.tap 248 - MIFF truecolor (stdio)
PASS: tests/rwfile.tap 249 - MIFF truecolor_1x266
PASS: tests/rwfile.tap 250 - MIFF truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 251 - MIFF RLE compressed bilevel
PASS: tests/rwfile.tap 252 - MIFF RLE compressed gray
PASS: tests/rwfile.tap 253 - MIFF RLE compressed palette
PASS: tests/rwfile.tap 254 - MIFF RLE compressed truecolor
PASS: tests/rwfile.tap 255 - MIFF RLE compressed truecolor_1x266
PASS: tests/rwfile.tap 256 - MIFF BZIP compressed bilevel
PASS: tests/rwfile.tap 257 - MIFF BZIP compressed gray
PASS: tests/rwfile.tap 258 - MIFF BZIP compressed palette
PASS: tests/rwfile.tap 259 - MIFF BZIP compressed truecolor
PASS: tests/rwfile.tap 260 - MIFF BZIP compressed truecolor_1x266
PASS: tests/rwfile.tap 261 - MIFF ZIP compressed bilevel
PASS: tests/rwfile.tap 262 - MIFF ZIP compressed gray
PASS: tests/rwfile.tap 263 - MIFF ZIP compressed palette
PASS: tests/rwfile.tap 264 - MIFF ZIP compressed truecolor
PASS: tests/rwfile.tap 265 - MIFF ZIP compressed truecolor_1x266
PASS: tests/rwfile.tap 266 - MNG bilevel
PASS: tests/rwfile.tap 267 - MNG bilevel (stdio)
PASS: tests/rwfile.tap 268 - MNG gray
PASS: tests/rwfile.tap 269 - MNG gray (stdio)
PASS: tests/rwfile.tap 270 - MNG palette
PASS: tests/rwfile.tap 271 - MNG palette (stdio)
PASS: tests/rwfile.tap 272 - MNG truecolor
PASS: tests/rwfile.tap 273 - MNG truecolor (stdio)
PASS: tests/rwfile.tap 274 - MNG truecolor_1x266
PASS: tests/rwfile.tap 275 - MNG truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 276 - MPR bilevel
PASS: tests/rwfile.tap 277 - MPR gray
PASS: tests/rwfile.tap 278 - MPR palette
PASS: tests/rwfile.tap 279 - MPR truecolor
PASS: tests/rwfile.tap 280 - MPR truecolor_1x266
PASS: tests/rwfile.tap 281 - MTV bilevel
PASS: tests/rwfile.tap 282 - MTV bilevel (stdio)
PASS: tests/rwfile.tap 283 - MTV gray
PASS: tests/rwfile.tap 284 - MTV gray (stdio)
PASS: tests/rwfile.tap 285 - MTV palette
PASS: tests/rwfile.tap 286 - MTV palette (stdio)
PASS: tests/rwfile.tap 287 - MTV truecolor
PASS: tests/rwfile.tap 288 - MTV truecolor (stdio)
PASS: tests/rwfile.tap 289 - MTV truecolor_1x266
PASS: tests/rwfile.tap 290 - MTV truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 291 - P7 bilevel
PASS: tests/rwfile.tap 292 - P7 bilevel (stdio)
PASS: tests/rwfile.tap 293 - P7 gray
PASS: tests/rwfile.tap 294 - P7 gray (stdio)
PASS: tests/rwfile.tap 295 - P7 palette
PASS: tests/rwfile.tap 296 - P7 palette (stdio)
PASS: tests/rwfile.tap 297 - P7 truecolor
PASS: tests/rwfile.tap 298 - P7 truecolor (stdio)
PASS: tests/rwfile.tap 299 - P7 truecolor_1x266
PASS: tests/rwfile.tap 300 - P7 truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 301 - PAM bilevel (depth 8)
PASS: tests/rwfile.tap 302 - PAM bilevel (stdio, depth 8)
PASS: tests/rwfile.tap 303 - PAM bilevel (depth 16)
PASS: tests/rwfile.tap 304 - PAM bilevel (stdio, depth 16)
PASS: tests/rwfile.tap 305 - PAM bilevel (depth 32)
PASS: tests/rwfile.tap 306 - PAM bilevel (stdio, depth 32)
PASS: tests/rwfile.tap 307 - PAM gray (depth 8)
PASS: tests/rwfile.tap 308 - PAM gray (stdio, depth 8)
PASS: tests/rwfile.tap 309 - PAM gray (depth 16)
PASS: tests/rwfile.tap 310 - PAM gray (stdio, depth 16)
PASS: tests/rwfile.tap 311 - PAM gray (depth 32)
PASS: tests/rwfile.tap 312 - PAM gray (stdio, depth 32)
PASS: tests/rwfile.tap 313 - PAM palette (depth 8)
PASS: tests/rwfile.tap 314 - PAM palette (stdio, depth 8)
PASS: tests/rwfile.tap 315 - PAM palette (depth 16)
PASS: tests/rwfile.tap 316 - PAM palette (stdio, depth 16)
PASS: tests/rwfile.tap 317 - PAM palette (depth 32)
PASS: tests/rwfile.tap 318 - PAM palette (stdio, depth 32)
PASS: tests/rwfile.tap 319 - PAM truecolor (depth 8)
PASS: tests/rwfile.tap 320 - PAM truecolor (stdio, depth 8)
PASS: tests/rwfile.tap 321 - PAM truecolor (depth 16)
PASS: tests/rwfile.tap 322 - PAM truecolor (stdio, depth 16)
PASS: tests/rwfile.tap 323 - PAM truecolor (depth 32)
PASS: tests/rwfile.tap 324 - PAM truecolor (stdio, depth 32)
PASS: tests/rwfile.tap 325 - PAM truecolor_1x266 (depth 8)
PASS: tests/rwfile.tap 326 - PAM truecolor_1x266 (stdio, depth 8)
PASS: tests/rwfile.tap 327 - PAM truecolor_1x266 (depth 16)
PASS: tests/rwfile.tap 328 - PAM truecolor_1x266 (stdio, depth 16)
PASS: tests/rwfile.tap 329 - PAM truecolor_1x266 (depth 32)
PASS: tests/rwfile.tap 330 - PAM truecolor_1x266 (stdio, depth 32)
PASS: tests/rwfile.tap 331 - PBM bilevel
PASS: tests/rwfile.tap 332 - PBM bilevel (stdio)
PASS: tests/rwfile.tap 333 - PBM ASCII bilevel
PASS: tests/rwfile.tap 334 - PBM ASCII bilevel (stdio)
PASS: tests/rwfile.tap 335 - PBM gray
PASS: tests/rwfile.tap 336 - PBM gray (stdio)
PASS: tests/rwfile.tap 337 - PBM ASCII gray
PASS: tests/rwfile.tap 338 - PBM ASCII gray (stdio)
PASS: tests/rwfile.tap 339 - PBM palette
PASS: tests/rwfile.tap 340 - PBM palette (stdio)
PASS: tests/rwfile.tap 341 - PBM ASCII palette
PASS: tests/rwfile.tap 342 - PBM ASCII palette (stdio)
PASS: tests/rwfile.tap 343 - PBM truecolor
PASS: tests/rwfile.tap 344 - PBM truecolor (stdio)
PASS: tests/rwfile.tap 345 - PBM ASCII truecolor
PASS: tests/rwfile.tap 346 - PBM ASCII truecolor (stdio)
PASS: tests/rwfile.tap 347 - PBM truecolor_1x266
PASS: tests/rwfile.tap 348 - PBM truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 349 - PBM ASCII truecolor_1x266
PASS: tests/rwfile.tap 350 - PBM ASCII truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 351 - PCD bilevel
PASS: tests/rwfile.tap 352 - PCD bilevel (stdio)
PASS: tests/rwfile.tap 353 - PCD gray
PASS: tests/rwfile.tap 354 - PCD gray (stdio)
PASS: tests/rwfile.tap 355 - PCD palette
PASS: tests/rwfile.tap 356 - PCD palette (stdio)
PASS: tests/rwfile.tap 357 - PCD truecolor
PASS: tests/rwfile.tap 358 - PCD truecolor (stdio)
PASS: tests/rwfile.tap 359 - PCD truecolor_1x266
PASS: tests/rwfile.tap 360 - PCD truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 361 - PCDS bilevel
PASS: tests/rwfile.tap 362 - PCDS bilevel (stdio)
PASS: tests/rwfile.tap 363 - PCDS gray
PASS: tests/rwfile.tap 364 - PCDS gray (stdio)
PASS: tests/rwfile.tap 365 - PCDS palette
PASS: tests/rwfile.tap 366 - PCDS palette (stdio)
PASS: tests/rwfile.tap 367 - PCDS truecolor
PASS: tests/rwfile.tap 368 - PCDS truecolor (stdio)
PASS: tests/rwfile.tap 369 - PCDS truecolor_1x266
PASS: tests/rwfile.tap 370 - PCDS truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 371 - PCX bilevel
PASS: tests/rwfile.tap 372 - PCX bilevel (stdio)
PASS: tests/rwfile.tap 373 - PCX gray
PASS: tests/rwfile.tap 374 - PCX gray (stdio)
PASS: tests/rwfile.tap 375 - PCX palette
PASS: tests/rwfile.tap 376 - PCX palette (stdio)
PASS: tests/rwfile.tap 377 - PCX truecolor
PASS: tests/rwfile.tap 378 - PCX truecolor (stdio)
PASS: tests/rwfile.tap 379 - PCX truecolor_1x266
PASS: tests/rwfile.tap 380 - PCX truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 381 - PDF bilevel
PASS: tests/rwfile.tap 382 - PDF gray
PASS: tests/rwfile.tap 383 - PDF palette
PASS: tests/rwfile.tap 384 - PDF truecolor
PASS: tests/rwfile.tap 385 - PDF truecolor_1x266
PASS: tests/rwfile.tap 386 - PGM bilevel (depth 8)
PASS: tests/rwfile.tap 387 - PGM bilevel (stdio, depth 8)
PASS: tests/rwfile.tap 388 - PGM ASCII bilevel (depth 8)
PASS: tests/rwfile.tap 389 - PGM ASCII bilevel (stdio, depth 8)
PASS: tests/rwfile.tap 390 - PGM bilevel (depth 16)
PASS: tests/rwfile.tap 391 - PGM bilevel (stdio, depth 16)
PASS: tests/rwfile.tap 392 - PGM ASCII bilevel (depth 16)
PASS: tests/rwfile.tap 393 - PGM ASCII bilevel (stdio, depth 16)
PASS: tests/rwfile.tap 394 - PGM bilevel (depth 32)
PASS: tests/rwfile.tap 395 - PGM bilevel (stdio, depth 32)
PASS: tests/rwfile.tap 396 - PGM ASCII bilevel (depth 32)
PASS: tests/rwfile.tap 397 - PGM ASCII bilevel (stdio, depth 32)
PASS: tests/rwfile.tap 398 - PGM gray (depth 8)
PASS: tests/rwfile.tap 399 - PGM gray (stdio, depth 8)
PASS: tests/rwfile.tap 400 - PGM ASCII gray (depth 8)
PASS: tests/rwfile.tap 401 - PGM ASCII gray (stdio, depth 8)
PASS: tests/rwfile.tap 402 - PGM gray (depth 16)
PASS: tests/rwfile.tap 403 - PGM gray (stdio, depth 16)
PASS: tests/rwfile.tap 404 - PGM ASCII gray (depth 16)
PASS: tests/rwfile.tap 405 - PGM ASCII gray (stdio, depth 16)
PASS: tests/rwfile.tap 406 - PGM gray (depth 32)
PASS: tests/rwfile.tap 407 - PGM gray (stdio, depth 32)
PASS: tests/rwfile.tap 408 - PGM ASCII gray (depth 32)
PASS: tests/rwfile.tap 409 - PGM ASCII gray (stdio, depth 32)
PASS: tests/rwfile.tap 410 - PGM palette (depth 8)
PASS: tests/rwfile.tap 411 - PGM palette (stdio, depth 8)
PASS: tests/rwfile.tap 412 - PGM ASCII palette (depth 8)
PASS: tests/rwfile.tap 413 - PGM ASCII palette (stdio, depth 8)
PASS: tests/rwfile.tap 414 - PGM palette (depth 16)
PASS: tests/rwfile.tap 415 - PGM palette (stdio, depth 16)
PASS: tests/rwfile.tap 416 - PGM ASCII palette (depth 16)
PASS: tests/rwfile.tap 417 - PGM ASCII palette (stdio, depth 16)
PASS: tests/rwfile.tap 418 - PGM palette (depth 32)
PASS: tests/rwfile.tap 419 - PGM palette (stdio, depth 32)
PASS: tests/rwfile.tap 420 - PGM ASCII palette (depth 32)
PASS: tests/rwfile.tap 421 - PGM ASCII palette (stdio, depth 32)
PASS: tests/rwfile.tap 422 - PGM truecolor (depth 8)
PASS: tests/rwfile.tap 423 - PGM truecolor (stdio, depth 8)
PASS: tests/rwfile.tap 424 - PGM ASCII truecolor (depth 8)
PASS: tests/rwfile.tap 425 - PGM ASCII truecolor (stdio, depth 8)
PASS: tests/rwfile.tap 426 - PGM truecolor (depth 16)
PASS: tests/rwfile.tap 427 - PGM truecolor (stdio, depth 16)
PASS: tests/rwfile.tap 428 - PGM ASCII truecolor (depth 16)
PASS: tests/rwfile.tap 429 - PGM ASCII truecolor (stdio, depth 16)
PASS: tests/rwfile.tap 430 - PGM truecolor (depth 32)
PASS: tests/rwfile.tap 431 - PGM truecolor (stdio, depth 32)
PASS: tests/rwfile.tap 432 - PGM ASCII truecolor (depth 32)
PASS: tests/rwfile.tap 433 - PGM ASCII truecolor (stdio, depth 32)
PASS: tests/rwfile.tap 434 - PGM truecolor_1x266 (depth 8)
PASS: tests/rwfile.tap 435 - PGM truecolor_1x266 (stdio, depth 8)
PASS: tests/rwfile.tap 436 - PGM ASCII truecolor_1x266 (depth 8)
PASS: tests/rwfile.tap 437 - PGM ASCII truecolor_1x266 (stdio, depth 8)
PASS: tests/rwfile.tap 438 - PGM truecolor_1x266 (depth 16)
PASS: tests/rwfile.tap 439 - PGM truecolor_1x266 (stdio, depth 16)
PASS: tests/rwfile.tap 440 - PGM ASCII truecolor_1x266 (depth 16)
PASS: tests/rwfile.tap 441 - PGM ASCII truecolor_1x266 (stdio, depth 16)
PASS: tests/rwfile.tap 442 - PGM truecolor_1x266 (depth 32)
PASS: tests/rwfile.tap 443 - PGM truecolor_1x266 (stdio, depth 32)
PASS: tests/rwfile.tap 444 - PGM ASCII truecolor_1x266 (depth 32)
PASS: tests/rwfile.tap 445 - PGM ASCII truecolor_1x266 (stdio, depth 32)
PASS: tests/rwfile.tap 446 - PGX bilevel
PASS: tests/rwfile.tap 447 - PGX bilevel (stdio)
PASS: tests/rwfile.tap 448 - PGX gray
PASS: tests/rwfile.tap 449 - PGX gray (stdio)
PASS: tests/rwfile.tap 450 - PGX palette
PASS: tests/rwfile.tap 451 - PGX palette (stdio)
PASS: tests/rwfile.tap 452 - PGX truecolor
PASS: tests/rwfile.tap 453 - PGX truecolor (stdio)
PASS: tests/rwfile.tap 454 - PGX truecolor_1x266
PASS: tests/rwfile.tap 455 - PGX truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 456 - PICON bilevel
PASS: tests/rwfile.tap 457 - PICON bilevel (stdio)
PASS: tests/rwfile.tap 458 - PICON gray
PASS: tests/rwfile.tap 459 - PICON gray (stdio)
PASS: tests/rwfile.tap 460 - PICON palette
PASS: tests/rwfile.tap 461 - PICON palette (stdio)
PASS: tests/rwfile.tap 462 - PICON truecolor
PASS: tests/rwfile.tap 463 - PICON truecolor (stdio)
PASS: tests/rwfile.tap 464 - PICON truecolor_1x266
PASS: tests/rwfile.tap 465 - PICON truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 466 - PICT bilevel
PASS: tests/rwfile.tap 467 - PICT bilevel (stdio)
PASS: tests/rwfile.tap 468 - PICT gray
PASS: tests/rwfile.tap 469 - PICT gray (stdio)
PASS: tests/rwfile.tap 470 - PICT palette
PASS: tests/rwfile.tap 471 - PICT palette (stdio)
PASS: tests/rwfile.tap 472 - PICT truecolor
PASS: tests/rwfile.tap 473 - PICT truecolor (stdio)
PASS: tests/rwfile.tap 474 - PNG bilevel
PASS: tests/rwfile.tap 475 - PNG bilevel (stdio)
PASS: tests/rwfile.tap 476 - PNG gray
PASS: tests/rwfile.tap 477 - PNG gray (stdio)
PASS: tests/rwfile.tap 478 - PNG palette
PASS: tests/rwfile.tap 479 - PNG palette (stdio)
PASS: tests/rwfile.tap 480 - PNG truecolor
PASS: tests/rwfile.tap 481 - PNG truecolor (stdio)
PASS: tests/rwfile.tap 482 - PNG truecolor_1x266
PASS: tests/rwfile.tap 483 - PNG truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 484 - PNM bilevel
PASS: tests/rwfile.tap 485 - PNM bilevel (stdio)
PASS: tests/rwfile.tap 486 - PNM gray
PASS: tests/rwfile.tap 487 - PNM gray (stdio)
PASS: tests/rwfile.tap 488 - PNM palette
PASS: tests/rwfile.tap 489 - PNM palette (stdio)
PASS: tests/rwfile.tap 490 - PNM truecolor
PASS: tests/rwfile.tap 491 - PNM truecolor (stdio)
PASS: tests/rwfile.tap 492 - PNM truecolor_1x266
PASS: tests/rwfile.tap 493 - PNM truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 494 - PPM bilevel (depth 8)
PASS: tests/rwfile.tap 495 - PPM bilevel (stdio, depth 8)
PASS: tests/rwfile.tap 496 - PPM ASCII bilevel (depth 8)
PASS: tests/rwfile.tap 497 - PPM ASCII bilevel (stdio, depth 8)
PASS: tests/rwfile.tap 498 - PPM bilevel (depth 16)
PASS: tests/rwfile.tap 499 - PPM bilevel (stdio, depth 16)
PASS: tests/rwfile.tap 500 - PPM ASCII bilevel (depth 16)
PASS: tests/rwfile.tap 501 - PPM ASCII bilevel (stdio, depth 16)
PASS: tests/rwfile.tap 502 - PPM bilevel (depth 32)
PASS: tests/rwfile.tap 503 - PPM bilevel (stdio, depth 32)
PASS: tests/rwfile.tap 504 - PPM ASCII bilevel (depth 32)
PASS: tests/rwfile.tap 505 - PPM ASCII bilevel (stdio, depth 32)
PASS: tests/rwfile.tap 506 - PPM gray (depth 8)
PASS: tests/rwfile.tap 507 - PPM gray (stdio, depth 8)
PASS: tests/rwfile.tap 508 - PPM ASCII gray (depth 8)
PASS: tests/rwfile.tap 509 - PPM ASCII gray (stdio, depth 8)
PASS: tests/rwfile.tap 510 - PPM gray (depth 16)
PASS: tests/rwfile.tap 511 - PPM gray (stdio, depth 16)
PASS: tests/rwfile.tap 512 - PPM ASCII gray (depth 16)
PASS: tests/rwfile.tap 513 - PPM ASCII gray (stdio, depth 16)
PASS: tests/rwfile.tap 514 - PPM gray (depth 32)
PASS: tests/rwfile.tap 515 - PPM gray (stdio, depth 32)
PASS: tests/rwfile.tap 516 - PPM ASCII gray (depth 32)
PASS: tests/rwfile.tap 517 - PPM ASCII gray (stdio, depth 32)
PASS: tests/rwfile.tap 518 - PPM palette (depth 8)
PASS: tests/rwfile.tap 519 - PPM palette (stdio, depth 8)
PASS: tests/rwfile.tap 520 - PPM ASCII palette (depth 8)
PASS: tests/rwfile.tap 521 - PPM ASCII palette (stdio, depth 8)
PASS: tests/rwfile.tap 522 - PPM palette (depth 16)
PASS: tests/rwfile.tap 523 - PPM palette (stdio, depth 16)
PASS: tests/rwfile.tap 524 - PPM ASCII palette (depth 16)
PASS: tests/rwfile.tap 525 - PPM ASCII palette (stdio, depth 16)
PASS: tests/rwfile.tap 526 - PPM palette (depth 32)
PASS: tests/rwfile.tap 527 - PPM palette (stdio, depth 32)
PASS: tests/rwfile.tap 528 - PPM ASCII palette (depth 32)
PASS: tests/rwfile.tap 529 - PPM ASCII palette (stdio, depth 32)
PASS: tests/rwfile.tap 530 - PPM truecolor (depth 8)
PASS: tests/rwfile.tap 531 - PPM truecolor (stdio, depth 8)
PASS: tests/rwfile.tap 532 - PPM ASCII truecolor (depth 8)
PASS: tests/rwfile.tap 533 - PPM ASCII truecolor (stdio, depth 8)
PASS: tests/rwfile.tap 534 - PPM truecolor (depth 16)
PASS: tests/rwfile.tap 535 - PPM truecolor (stdio, depth 16)
PASS: tests/rwfile.tap 536 - PPM ASCII truecolor (depth 16)
PASS: tests/rwfile.tap 537 - PPM ASCII truecolor (stdio, depth 16)
PASS: tests/rwfile.tap 538 - PPM truecolor (depth 32)
PASS: tests/rwfile.tap 539 - PPM truecolor (stdio, depth 32)
PASS: tests/rwfile.tap 540 - PPM ASCII truecolor (depth 32)
PASS: tests/rwfile.tap 541 - PPM ASCII truecolor (stdio, depth 32)
PASS: tests/rwfile.tap 542 - PPM truecolor_1x266 (depth 8)
PASS: tests/rwfile.tap 543 - PPM truecolor_1x266 (stdio, depth 8)
PASS: tests/rwfile.tap 544 - PPM ASCII truecolor_1x266 (depth 8)
PASS: tests/rwfile.tap 545 - PPM ASCII truecolor_1x266 (stdio, depth 8)
PASS: tests/rwfile.tap 546 - PPM truecolor_1x266 (depth 16)
PASS: tests/rwfile.tap 547 - PPM truecolor_1x266 (stdio, depth 16)
PASS: tests/rwfile.tap 548 - PPM ASCII truecolor_1x266 (depth 16)
PASS: tests/rwfile.tap 549 - PPM ASCII truecolor_1x266 (stdio, depth 16)
PASS: tests/rwfile.tap 550 - PPM truecolor_1x266 (depth 32)
PASS: tests/rwfile.tap 551 - PPM truecolor_1x266 (stdio, depth 32)
PASS: tests/rwfile.tap 552 - PPM ASCII truecolor_1x266 (depth 32)
PASS: tests/rwfile.tap 553 - PPM ASCII truecolor_1x266 (stdio, depth 32)
PASS: tests/rwfile.tap 554 - PS bilevel
PASS: tests/rwfile.tap 555 - PS gray
PASS: tests/rwfile.tap 556 - PS palette
PASS: tests/rwfile.tap 557 - PS truecolor
PASS: tests/rwfile.tap 558 - PS truecolor_1x266
PASS: tests/rwfile.tap 559 - PS2 bilevel
PASS: tests/rwfile.tap 560 - PS2 gray
PASS: tests/rwfile.tap 561 - PS2 palette
PASS: tests/rwfile.tap 562 - PS2 truecolor
PASS: tests/rwfile.tap 563 - PS2 truecolor_1x266
PASS: tests/rwfile.tap 564 - PS3 bilevel
PASS: tests/rwfile.tap 565 - PS3 gray
PASS: tests/rwfile.tap 566 - PS3 palette
PASS: tests/rwfile.tap 567 - PS3 truecolor
PASS: tests/rwfile.tap 568 - PS3 truecolor_1x266
SKIP: tests/rwfile.tap 569 - PSD bilevel # SKIP requires PSD support
SKIP: tests/rwfile.tap 570 - PSD gray # SKIP requires PSD support
SKIP: tests/rwfile.tap 571 - PSD palette # SKIP requires PSD support
SKIP: tests/rwfile.tap 572 - PSD truecolor # SKIP requires PSD support
SKIP: tests/rwfile.tap 573 - PSD truecolor_1x266 # SKIP requires PSD support
PASS: tests/rwfile.tap 574 - PTIF bilevel
PASS: tests/rwfile.tap 575 - PTIF bilevel (stdio)
PASS: tests/rwfile.tap 576 - PTIF gray
PASS: tests/rwfile.tap 577 - PTIF gray (stdio)
PASS: tests/rwfile.tap 578 - PTIF palette
PASS: tests/rwfile.tap 579 - PTIF palette (stdio)
PASS: tests/rwfile.tap 580 - PTIF truecolor
PASS: tests/rwfile.tap 581 - PTIF truecolor (stdio)
PASS: tests/rwfile.tap 582 - PTIF truecolor_1x266
PASS: tests/rwfile.tap 583 - PTIF truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 584 - RAS bilevel
PASS: tests/rwfile.tap 585 - RAS bilevel (stdio)
PASS: tests/rwfile.tap 586 - RAS gray
PASS: tests/rwfile.tap 587 - RAS gray (stdio)
PASS: tests/rwfile.tap 588 - RAS palette
PASS: tests/rwfile.tap 589 - RAS palette (stdio)
PASS: tests/rwfile.tap 590 - RAS truecolor
PASS: tests/rwfile.tap 591 - RAS truecolor (stdio)
PASS: tests/rwfile.tap 592 - RAS truecolor_1x266
PASS: tests/rwfile.tap 593 - RAS truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 594 - SGI bilevel
PASS: tests/rwfile.tap 595 - SGI bilevel (stdio)
PASS: tests/rwfile.tap 596 - SGI gray
PASS: tests/rwfile.tap 597 - SGI gray (stdio)
PASS: tests/rwfile.tap 598 - SGI palette
PASS: tests/rwfile.tap 599 - SGI palette (stdio)
PASS: tests/rwfile.tap 600 - SGI truecolor
PASS: tests/rwfile.tap 601 - SGI truecolor (stdio)
PASS: tests/rwfile.tap 602 - SGI truecolor_1x266
PASS: tests/rwfile.tap 603 - SGI truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 604 - SUN bilevel
PASS: tests/rwfile.tap 605 - SUN bilevel (stdio)
PASS: tests/rwfile.tap 606 - SUN gray
PASS: tests/rwfile.tap 607 - SUN gray (stdio)
PASS: tests/rwfile.tap 608 - SUN palette
PASS: tests/rwfile.tap 609 - SUN palette (stdio)
PASS: tests/rwfile.tap 610 - SUN truecolor
PASS: tests/rwfile.tap 611 - SUN truecolor (stdio)
PASS: tests/rwfile.tap 612 - SUN truecolor_1x266
PASS: tests/rwfile.tap 613 - SUN truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 614 - TGA bilevel
PASS: tests/rwfile.tap 615 - TGA bilevel (stdio)
PASS: tests/rwfile.tap 616 - TGA gray
PASS: tests/rwfile.tap 617 - TGA gray (stdio)
PASS: tests/rwfile.tap 618 - TGA palette
PASS: tests/rwfile.tap 619 - TGA palette (stdio)
PASS: tests/rwfile.tap 620 - TGA truecolor
PASS: tests/rwfile.tap 621 - TGA truecolor (stdio)
PASS: tests/rwfile.tap 622 - TGA truecolor_1x266
PASS: tests/rwfile.tap 623 - TGA truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 624 - TOPOL bilevel
PASS: tests/rwfile.tap 625 - TOPOL bilevel (stdio)
PASS: tests/rwfile.tap 626 - TOPOL gray
PASS: tests/rwfile.tap 627 - TOPOL gray (stdio)
PASS: tests/rwfile.tap 628 - TOPOL palette
PASS: tests/rwfile.tap 629 - TOPOL palette (stdio)
PASS: tests/rwfile.tap 630 - TOPOL truecolor
PASS: tests/rwfile.tap 631 - TOPOL truecolor (stdio)
PASS: tests/rwfile.tap 632 - TOPOL truecolor_1x266
PASS: tests/rwfile.tap 633 - TOPOL truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 634 - TXT bilevel
PASS: tests/rwfile.tap 635 - TXT bilevel (stdio)
PASS: tests/rwfile.tap 636 - TXT gray
PASS: tests/rwfile.tap 637 - TXT gray (stdio)
PASS: tests/rwfile.tap 638 - TXT palette
PASS: tests/rwfile.tap 639 - TXT palette (stdio)
PASS: tests/rwfile.tap 640 - TXT truecolor
PASS: tests/rwfile.tap 641 - TXT truecolor (stdio)
PASS: tests/rwfile.tap 642 - TXT truecolor_1x266
PASS: tests/rwfile.tap 643 - TXT truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 644 - TIFF bilevel compress=None
PASS: tests/rwfile.tap 645 - TIFF bilevel  compress=None (stdio)
PASS: tests/rwfile.tap 646 - TIFF gray compress=None
PASS: tests/rwfile.tap 647 - TIFF gray  compress=None (stdio)
PASS: tests/rwfile.tap 648 - TIFF palette compress=None
PASS: tests/rwfile.tap 649 - TIFF palette  compress=None (stdio)
PASS: tests/rwfile.tap 650 - TIFF truecolor compress=None
PASS: tests/rwfile.tap 651 - TIFF truecolor  compress=None (stdio)
PASS: tests/rwfile.tap 652 - TIFF truecolor_1x266 compress=None
PASS: tests/rwfile.tap 653 - TIFF truecolor_1x266  compress=None (stdio)
PASS: tests/rwfile.tap 654 - TIFF bilevel compress=Fax
PASS: tests/rwfile.tap 655 - TIFF bilevel  compress=Fax (stdio)
PASS: tests/rwfile.tap 656 - TIFF gray compress=Fax
PASS: tests/rwfile.tap 657 - TIFF gray  compress=Fax (stdio)
PASS: tests/rwfile.tap 658 - TIFF palette compress=Fax
PASS: tests/rwfile.tap 659 - TIFF palette  compress=Fax (stdio)
PASS: tests/rwfile.tap 660 - TIFF truecolor compress=Fax
PASS: tests/rwfile.tap 661 - TIFF truecolor  compress=Fax (stdio)
PASS: tests/rwfile.tap 662 - TIFF truecolor_1x266 compress=Fax
PASS: tests/rwfile.tap 663 - TIFF truecolor_1x266  compress=Fax (stdio)
PASS: tests/rwfile.tap 664 - TIFF bilevel compress=Group4
PASS: tests/rwfile.tap 665 - TIFF bilevel  compress=Group4 (stdio)
PASS: tests/rwfile.tap 666 - TIFF gray compress=Group4
PASS: tests/rwfile.tap 667 - TIFF gray  compress=Group4 (stdio)
PASS: tests/rwfile.tap 668 - TIFF palette compress=Group4
PASS: tests/rwfile.tap 669 - TIFF palette  compress=Group4 (stdio)
PASS: tests/rwfile.tap 670 - TIFF truecolor compress=Group4
PASS: tests/rwfile.tap 671 - TIFF truecolor  compress=Group4 (stdio)
PASS: tests/rwfile.tap 672 - TIFF truecolor_1x266 compress=Group4
PASS: tests/rwfile.tap 673 - TIFF truecolor_1x266  compress=Group4 (stdio)
PASS: tests/rwfile.tap 674 - TIFF bilevel compress=JPEG
PASS: tests/rwfile.tap 675 - TIFF bilevel  compress=JPEG (stdio)
PASS: tests/rwfile.tap 676 - TIFF gray compress=JPEG
PASS: tests/rwfile.tap 677 - TIFF gray  compress=JPEG (stdio)
PASS: tests/rwfile.tap 678 - TIFF palette compress=JPEG
PASS: tests/rwfile.tap 679 - TIFF palette  compress=JPEG (stdio)
PASS: tests/rwfile.tap 680 - TIFF truecolor compress=JPEG
PASS: tests/rwfile.tap 681 - TIFF truecolor  compress=JPEG (stdio)
PASS: tests/rwfile.tap 682 - TIFF truecolor_1x266 compress=JPEG
PASS: tests/rwfile.tap 683 - TIFF truecolor_1x266  compress=JPEG (stdio)
PASS: tests/rwfile.tap 684 - TIFF bilevel compress=LZW
PASS: tests/rwfile.tap 685 - TIFF bilevel  compress=LZW (stdio)
PASS: tests/rwfile.tap 686 - TIFF gray compress=LZW
PASS: tests/rwfile.tap 687 - TIFF gray  compress=LZW (stdio)
PASS: tests/rwfile.tap 688 - TIFF palette compress=LZW
PASS: tests/rwfile.tap 689 - TIFF palette  compress=LZW (stdio)
PASS: tests/rwfile.tap 690 - TIFF truecolor compress=LZW
PASS: tests/rwfile.tap 691 - TIFF truecolor  compress=LZW (stdio)
PASS: tests/rwfile.tap 692 - TIFF truecolor_1x266 compress=LZW
PASS: tests/rwfile.tap 693 - TIFF truecolor_1x266  compress=LZW (stdio)
PASS: tests/rwfile.tap 694 - TIFF bilevel compress=RLE
PASS: tests/rwfile.tap 695 - TIFF bilevel  compress=RLE (stdio)
PASS: tests/rwfile.tap 696 - TIFF gray compress=RLE
PASS: tests/rwfile.tap 697 - TIFF gray  compress=RLE (stdio)
PASS: tests/rwfile.tap 698 - TIFF palette compress=RLE
PASS: tests/rwfile.tap 699 - TIFF palette  compress=RLE (stdio)
PASS: tests/rwfile.tap 700 - TIFF truecolor compress=RLE
PASS: tests/rwfile.tap 701 - TIFF truecolor  compress=RLE (stdio)
PASS: tests/rwfile.tap 702 - TIFF truecolor_1x266 compress=RLE
PASS: tests/rwfile.tap 703 - TIFF truecolor_1x266  compress=RLE (stdio)
PASS: tests/rwfile.tap 704 - TIFF bilevel compress=Zip
PASS: tests/rwfile.tap 705 - TIFF bilevel  compress=Zip (stdio)
PASS: tests/rwfile.tap 706 - TIFF gray compress=Zip
PASS: tests/rwfile.tap 707 - TIFF gray  compress=Zip (stdio)
PASS: tests/rwfile.tap 708 - TIFF palette compress=Zip
PASS: tests/rwfile.tap 709 - TIFF palette  compress=Zip (stdio)
PASS: tests/rwfile.tap 710 - TIFF truecolor compress=Zip
PASS: tests/rwfile.tap 711 - TIFF truecolor  compress=Zip (stdio)
PASS: tests/rwfile.tap 712 - TIFF truecolor_1x266 compress=Zip
PASS: tests/rwfile.tap 713 - TIFF truecolor_1x266  compress=Zip (stdio)
PASS: tests/rwfile.tap 714 - TIFF bilevel compress=LZMA
PASS: tests/rwfile.tap 715 - TIFF bilevel  compress=LZMA (stdio)
PASS: tests/rwfile.tap 716 - TIFF gray compress=LZMA
PASS: tests/rwfile.tap 717 - TIFF gray  compress=LZMA (stdio)
PASS: tests/rwfile.tap 718 - TIFF palette compress=LZMA
PASS: tests/rwfile.tap 719 - TIFF palette  compress=LZMA (stdio)
PASS: tests/rwfile.tap 720 - TIFF truecolor compress=LZMA
PASS: tests/rwfile.tap 721 - TIFF truecolor  compress=LZMA (stdio)
PASS: tests/rwfile.tap 722 - TIFF truecolor_1x266 compress=LZMA
PASS: tests/rwfile.tap 723 - TIFF truecolor_1x266  compress=LZMA (stdio)
PASS: tests/rwfile.tap 724 - TIFF bilevel compress=WebP
PASS: tests/rwfile.tap 725 - TIFF bilevel  compress=WebP (stdio)
PASS: tests/rwfile.tap 726 - TIFF gray compress=WebP
PASS: tests/rwfile.tap 727 - TIFF gray  compress=WebP (stdio)
PASS: tests/rwfile.tap 728 - TIFF palette compress=WebP
PASS: tests/rwfile.tap 729 - TIFF palette  compress=WebP (stdio)
PASS: tests/rwfile.tap 730 - TIFF truecolor compress=WebP
PASS: tests/rwfile.tap 731 - TIFF truecolor  compress=WebP (stdio)
PASS: tests/rwfile.tap 732 - TIFF truecolor_1x266 compress=WebP
PASS: tests/rwfile.tap 733 - TIFF truecolor_1x266  compress=WebP (stdio)
PASS: tests/rwfile.tap 734 - TIFF bilevel compress=ZSTD
PASS: tests/rwfile.tap 735 - TIFF bilevel  compress=ZSTD (stdio)
PASS: tests/rwfile.tap 736 - TIFF gray compress=ZSTD
PASS: tests/rwfile.tap 737 - TIFF gray  compress=ZSTD (stdio)
PASS: tests/rwfile.tap 738 - TIFF palette compress=ZSTD
PASS: tests/rwfile.tap 739 - TIFF palette  compress=ZSTD (stdio)
PASS: tests/rwfile.tap 740 - TIFF truecolor compress=ZSTD
PASS: tests/rwfile.tap 741 - TIFF truecolor  compress=ZSTD (stdio)
PASS: tests/rwfile.tap 742 - TIFF truecolor_1x266 compress=ZSTD
PASS: tests/rwfile.tap 743 - TIFF truecolor_1x266  compress=ZSTD (stdio)
PASS: tests/rwfile.tap 744 - VDA bilevel
PASS: tests/rwfile.tap 745 - VDA bilevel (stdio)
PASS: tests/rwfile.tap 746 - VDA gray
PASS: tests/rwfile.tap 747 - VDA gray (stdio)
PASS: tests/rwfile.tap 748 - VDA palette
PASS: tests/rwfile.tap 749 - VDA palette (stdio)
PASS: tests/rwfile.tap 750 - VDA truecolor
PASS: tests/rwfile.tap 751 - VDA truecolor (stdio)
PASS: tests/rwfile.tap 752 - VDA truecolor_1x266
PASS: tests/rwfile.tap 753 - VDA truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 754 - VICAR bilevel
PASS: tests/rwfile.tap 755 - VICAR bilevel (stdio)
PASS: tests/rwfile.tap 756 - VICAR gray
PASS: tests/rwfile.tap 757 - VICAR gray (stdio)
PASS: tests/rwfile.tap 758 - VICAR palette
PASS: tests/rwfile.tap 759 - VICAR palette (stdio)
PASS: tests/rwfile.tap 760 - VICAR truecolor
PASS: tests/rwfile.tap 761 - VICAR truecolor (stdio)
PASS: tests/rwfile.tap 762 - VICAR truecolor_1x266
PASS: tests/rwfile.tap 763 - VICAR truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 764 - VIFF bilevel
PASS: tests/rwfile.tap 765 - VIFF bilevel (stdio)
PASS: tests/rwfile.tap 766 - VIFF gray
PASS: tests/rwfile.tap 767 - VIFF gray (stdio)
PASS: tests/rwfile.tap 768 - VIFF palette
PASS: tests/rwfile.tap 769 - VIFF palette (stdio)
PASS: tests/rwfile.tap 770 - VIFF truecolor
PASS: tests/rwfile.tap 771 - VIFF truecolor (stdio)
PASS: tests/rwfile.tap 772 - VIFF truecolor_1x266
PASS: tests/rwfile.tap 773 - VIFF truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 774 - VST bilevel
PASS: tests/rwfile.tap 775 - VST bilevel (stdio)
PASS: tests/rwfile.tap 776 - VST gray
PASS: tests/rwfile.tap 777 - VST gray (stdio)
PASS: tests/rwfile.tap 778 - VST palette
PASS: tests/rwfile.tap 779 - VST palette (stdio)
PASS: tests/rwfile.tap 780 - VST truecolor
PASS: tests/rwfile.tap 781 - VST truecolor (stdio)
PASS: tests/rwfile.tap 782 - VST truecolor_1x266
PASS: tests/rwfile.tap 783 - VST truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 784 - WBMP bilevel
PASS: tests/rwfile.tap 785 - WBMP bilevel (stdio)
PASS: tests/rwfile.tap 786 - WBMP gray
PASS: tests/rwfile.tap 787 - WBMP gray (stdio)
PASS: tests/rwfile.tap 788 - WBMP palette
PASS: tests/rwfile.tap 789 - WBMP palette (stdio)
PASS: tests/rwfile.tap 790 - WBMP truecolor
PASS: tests/rwfile.tap 791 - WBMP truecolor (stdio)
PASS: tests/rwfile.tap 792 - WBMP truecolor_1x266
PASS: tests/rwfile.tap 793 - WBMP truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 794 - WEBP bilevel
PASS: tests/rwfile.tap 795 - WEBP bilevel (stdio)
PASS: tests/rwfile.tap 796 - WEBP gray
PASS: tests/rwfile.tap 797 - WEBP gray (stdio)
PASS: tests/rwfile.tap 798 - WEBP palette
PASS: tests/rwfile.tap 799 - WEBP palette (stdio)
PASS: tests/rwfile.tap 800 - WEBP truecolor
PASS: tests/rwfile.tap 801 - WEBP truecolor (stdio)
PASS: tests/rwfile.tap 802 - WEBP truecolor_1x266
PASS: tests/rwfile.tap 803 - WEBP truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 804 - WEBP bilevel (lossless)
PASS: tests/rwfile.tap 805 - WEBP gray (lossless)
PASS: tests/rwfile.tap 806 - WEBP palette (lossless)
PASS: tests/rwfile.tap 807 - WEBP truecolor (lossless)
PASS: tests/rwfile.tap 808 - WEBP truecolor_1x266 (lossless)
PASS: tests/rwfile.tap 809 - WPG bilevel
PASS: tests/rwfile.tap 810 - WPG bilevel (stdio)
PASS: tests/rwfile.tap 811 - WPG gray
PASS: tests/rwfile.tap 812 - WPG gray (stdio)
PASS: tests/rwfile.tap 813 - WPG palette
PASS: tests/rwfile.tap 814 - WPG palette (stdio)
PASS: tests/rwfile.tap 815 - WPG truecolor
PASS: tests/rwfile.tap 816 - WPG truecolor (stdio)
PASS: tests/rwfile.tap 817 - WPG truecolor_1x266
PASS: tests/rwfile.tap 818 - WPG truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 819 - XBM bilevel
PASS: tests/rwfile.tap 820 - XBM bilevel (stdio)
PASS: tests/rwfile.tap 821 - XBM gray
PASS: tests/rwfile.tap 822 - XBM gray (stdio)
PASS: tests/rwfile.tap 823 - XBM palette
PASS: tests/rwfile.tap 824 - XBM palette (stdio)
PASS: tests/rwfile.tap 825 - XBM truecolor
PASS: tests/rwfile.tap 826 - XBM truecolor (stdio)
PASS: tests/rwfile.tap 827 - XBM truecolor_1x266
PASS: tests/rwfile.tap 828 - XBM truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 829 - XPM bilevel
PASS: tests/rwfile.tap 830 - XPM bilevel (stdio)
PASS: tests/rwfile.tap 831 - XPM gray
PASS: tests/rwfile.tap 832 - XPM gray (stdio)
PASS: tests/rwfile.tap 833 - XPM palette
PASS: tests/rwfile.tap 834 - XPM palette (stdio)
PASS: tests/rwfile.tap 835 - XPM truecolor
PASS: tests/rwfile.tap 836 - XPM truecolor (stdio)
PASS: tests/rwfile.tap 837 - XPM truecolor_1x266
PASS: tests/rwfile.tap 838 - XPM truecolor_1x266 (stdio)
PASS: tests/rwfile.tap 839 - XWD bilevel
PASS: tests/rwfile.tap 840 - XWD bilevel (stdio)
PASS: tests/rwfile.tap 841 - XWD gray
PASS: tests/rwfile.tap 842 - XWD gray (stdio)
PASS: tests/rwfile.tap 843 - XWD palette
PASS: tests/rwfile.tap 844 - XWD palette (stdio)
PASS: tests/rwfile.tap 845 - XWD truecolor
PASS: tests/rwfile.tap 846 - XWD truecolor (stdio)
PASS: tests/rwfile.tap 847 - XWD truecolor_1x266
PASS: tests/rwfile.tap 848 - XWD truecolor_1x266 (stdio)
PASS: tests/rwfile_sized.tap 1 - CMYK truecolor_70x46 interlace=none
PASS: tests/rwfile_sized.tap 2 - CMYK truecolor_70x46 interlace=line
PASS: tests/rwfile_sized.tap 3 - CMYK truecolor_70x46 interlace=plane
PASS: tests/rwfile_sized.tap 4 - GRAY truecolor_70x46
PASS: tests/rwfile_sized.tap 5 - GRAYA truecolor_70x46
PASS: tests/rwfile_sized.tap 6 - R (red) truecolor_70x46
PASS: tests/rwfile_sized.tap 7 - G (green) truecolor_70x46
PASS: tests/rwfile_sized.tap 8 - B (blue) truecolor_70x46
PASS: tests/rwfile_sized.tap 9 - C (cyan) truecolor_70x46
PASS: tests/rwfile_sized.tap 10 - M (magenta) truecolor_70x46
PASS: tests/rwfile_sized.tap 11 - Y (yellow) truecolor_70x46
PASS: tests/rwfile_sized.tap 12 - K (black) truecolor_70x46
PASS: tests/rwfile_sized.tap 13 - MONO truecolor_70x46
PASS: tests/rwfile_sized.tap 14 - PAL truecolor_70x46
PASS: tests/rwfile_sized.tap 15 - RGB truecolor_70x46 interlace=none
PASS: tests/rwfile_sized.tap 16 - RGB truecolor_70x46 interlace=line
PASS: tests/rwfile_sized.tap 17 - RGB truecolor_70x46 interlace=plane
PASS: tests/rwfile_sized.tap 18 - RGBA truecolor_70x46 interlace=none
PASS: tests/rwfile_sized.tap 19 - RGBA truecolor_70x46 interlace=line
PASS: tests/rwfile_sized.tap 20 - RGBA truecolor_70x46 interlace=plane
PASS: tests/rwfile_sized.tap 21 - UYVY truecolor_70x46
PASS: tests/rwfile_sized.tap 22 - YUV truecolor_70x46
PASS: tests/rwfile_miff.tap 1 - MIFF none bilevel
PASS: tests/rwfile_miff.tap 2 - MIFF none bilevel
PASS: tests/rwfile_miff.tap 3 - MIFF none bilevel
PASS: tests/rwfile_miff.tap 4 - MIFF none gray
PASS: tests/rwfile_miff.tap 5 - MIFF none gray
PASS: tests/rwfile_miff.tap 6 - MIFF none gray
PASS: tests/rwfile_miff.tap 7 - MIFF none palette
PASS: tests/rwfile_miff.tap 8 - MIFF none palette
PASS: tests/rwfile_miff.tap 9 - MIFF none palette
PASS: tests/rwfile_miff.tap 10 - MIFF none truecolor
PASS: tests/rwfile_miff.tap 11 - MIFF none truecolor
PASS: tests/rwfile_miff.tap 12 - MIFF none truecolor
PASS: tests/rwfile_miff.tap 13 - MIFF bzip bilevel
PASS: tests/rwfile_miff.tap 14 - MIFF bzip bilevel
PASS: tests/rwfile_miff.tap 15 - MIFF bzip bilevel
PASS: tests/rwfile_miff.tap 16 - MIFF bzip gray
PASS: tests/rwfile_miff.tap 17 - MIFF bzip gray
PASS: tests/rwfile_miff.tap 18 - MIFF bzip gray
PASS: tests/rwfile_miff.tap 19 - MIFF bzip palette
PASS: tests/rwfile_miff.tap 20 - MIFF bzip palette
PASS: tests/rwfile_miff.tap 21 - MIFF bzip palette
PASS: tests/rwfile_miff.tap 22 - MIFF bzip truecolor
PASS: tests/rwfile_miff.tap 23 - MIFF bzip truecolor
PASS: tests/rwfile_miff.tap 24 - MIFF bzip truecolor
PASS: tests/rwfile_miff.tap 25 - MIFF zip bilevel
PASS: tests/rwfile_miff.tap 26 - MIFF zip bilevel
PASS: tests/rwfile_miff.tap 27 - MIFF zip bilevel
PASS: tests/rwfile_miff.tap 28 - MIFF zip gray
PASS: tests/rwfile_miff.tap 29 - MIFF zip gray
PASS: tests/rwfile_miff.tap 30 - MIFF zip gray
PASS: tests/rwfile_miff.tap 31 - MIFF zip palette
PASS: tests/rwfile_miff.tap 32 - MIFF zip palette
PASS: tests/rwfile_miff.tap 33 - MIFF zip palette
PASS: tests/rwfile_miff.tap 34 - MIFF zip truecolor
PASS: tests/rwfile_miff.tap 35 - MIFF zip truecolor
PASS: tests/rwfile_miff.tap 36 - MIFF zip truecolor
PASS: tests/rwfile_miff.tap 37 - MIFF rle bilevel
PASS: tests/rwfile_miff.tap 38 - MIFF rle bilevel
PASS: tests/rwfile_miff.tap 39 - MIFF rle bilevel
PASS: tests/rwfile_miff.tap 40 - MIFF rle gray
PASS: tests/rwfile_miff.tap 41 - MIFF rle gray
PASS: tests/rwfile_miff.tap 42 - MIFF rle gray
PASS: tests/rwfile_miff.tap 43 - MIFF rle palette
PASS: tests/rwfile_miff.tap 44 - MIFF rle palette
PASS: tests/rwfile_miff.tap 45 - MIFF rle palette
PASS: tests/rwfile_miff.tap 46 - MIFF rle truecolor
PASS: tests/rwfile_miff.tap 47 - MIFF rle truecolor
PASS: tests/rwfile_miff.tap 48 - MIFF rle truecolor
PASS: tests/rwfile_pdf.tap 1 - PDF bilevel none
PASS: tests/rwfile_pdf.tap 2 - PDF gray none
PASS: tests/rwfile_pdf.tap 3 - PDF palette none
PASS: tests/rwfile_pdf.tap 4 - PDF truecolor none
PASS: tests/rwfile_pdf.tap 5 - PDF bilevel fax
PASS: tests/rwfile_pdf.tap 6 - PDF gray fax
PASS: tests/rwfile_pdf.tap 7 - PDF palette fax
PASS: tests/rwfile_pdf.tap 8 - PDF truecolor fax
PASS: tests/rwfile_pdf.tap 9 - PDF bilevel jpeg
PASS: tests/rwfile_pdf.tap 10 - PDF gray jpeg
PASS: tests/rwfile_pdf.tap 11 - PDF palette jpeg
PASS: tests/rwfile_pdf.tap 12 - PDF truecolor jpeg
PASS: tests/rwfile_pdf.tap 13 - PDF bilevel lzw
PASS: tests/rwfile_pdf.tap 14 - PDF gray lzw
PASS: tests/rwfile_pdf.tap 15 - PDF palette lzw
PASS: tests/rwfile_pdf.tap 16 - PDF truecolor lzw
PASS: tests/rwfile_pdf.tap 17 - PDF bilevel rle
PASS: tests/rwfile_pdf.tap 18 - PDF gray rle
PASS: tests/rwfile_pdf.tap 19 - PDF palette rle
PASS: tests/rwfile_pdf.tap 20 - PDF truecolor rle
PASS: tests/rwfile_pdf.tap 21 - PDF bilevel zip
PASS: tests/rwfile_pdf.tap 22 - PDF gray zip
PASS: tests/rwfile_pdf.tap 23 - PDF palette zip
PASS: tests/rwfile_pdf.tap 24 - PDF truecolor zip
PASS: tests/rwfile_deep.tap 1 - CIN truecolor10
PASS: tests/rwfile_deep.tap 2 - CIN truecolor12
PASS: tests/rwfile_deep.tap 3 - CIN truecolor16
PASS: tests/rwfile_deep.tap 4 - DPX truecolor10
PASS: tests/rwfile_deep.tap 5 - DPX truecolor12
PASS: tests/rwfile_deep.tap 6 - DPX truecolor16
PASS: tests/rwfile_deep.tap 7 - FITS truecolor10
PASS: tests/rwfile_deep.tap 8 - FITS truecolor12
PASS: tests/rwfile_deep.tap 9 - FITS truecolor16
FAIL: tests/rwfile_deep.tap 10 - JP2 truecolor10
FAIL: tests/rwfile_deep.tap 11 - JP2 truecolor12
FAIL: tests/rwfile_deep.tap 12 - JP2 truecolor16
SKIP: tests/rwfile_deep.tap 13 - JXL truecolor10 # SKIP requires JXL support
SKIP: tests/rwfile_deep.tap 14 - JXL truecolor10 (stdio) # SKIP requires JXL support
SKIP: tests/rwfile_deep.tap 15 - JXL truecolor12 # SKIP requires JXL support
SKIP: tests/rwfile_deep.tap 16 - JXL truecolor12 (stdio) # SKIP requires JXL support
SKIP: tests/rwfile_deep.tap 17 - JXL truecolor16 # SKIP requires JXL support
SKIP: tests/rwfile_deep.tap 18 - JXL truecolor16 (stdio) # SKIP requires JXL support
PASS: tests/rwfile_deep.tap 19 - MAT truecolor10
PASS: tests/rwfile_deep.tap 20 - MAT truecolor12
PASS: tests/rwfile_deep.tap 21 - MAT truecolor16
PASS: tests/rwfile_deep.tap 22 - MIFF truecolor10
PASS: tests/rwfile_deep.tap 23 - MIFF truecolor12
PASS: tests/rwfile_deep.tap 24 - MIFF truecolor16
PASS: tests/rwfile_deep.tap 25 - MNG truecolor10
PASS: tests/rwfile_deep.tap 26 - MNG truecolor12
PASS: tests/rwfile_deep.tap 27 - MNG truecolor16
PASS: tests/rwfile_deep.tap 28 - PNG truecolor10
PASS: tests/rwfile_deep.tap 29 - PNG truecolor12
PASS: tests/rwfile_deep.tap 30 - PNG truecolor16
PASS: tests/rwfile_deep.tap 31 - PPM truecolor10
PASS: tests/rwfile_deep.tap 32 - PPM truecolor12
PASS: tests/rwfile_deep.tap 33 - PPM truecolor16
PASS: tests/rwfile_deep.tap 34 - PTIF truecolor10
PASS: tests/rwfile_deep.tap 35 - PTIF truecolor12
PASS: tests/rwfile_deep.tap 36 - PTIF truecolor16
PASS: tests/rwfile_deep.tap 37 - SGI truecolor10
PASS: tests/rwfile_deep.tap 38 - SGI truecolor12
PASS: tests/rwfile_deep.tap 39 - SGI truecolor16
PASS: tests/rwfile_deep.tap 40 - TIFF truecolor10
PASS: tests/rwfile_deep.tap 41 - TIFF truecolor12
PASS: tests/rwfile_deep.tap 42 - TIFF truecolor16
PASS: tests/rwfile_deep.tap 43 - TGA truecolor10
PASS: tests/rwfile_deep.tap 44 - TGA truecolor12
PASS: tests/rwfile_deep.tap 45 - TGA truecolor16
PASS: tests/rwfile_deep.tap 46 - TXT truecolor10
PASS: tests/rwfile_deep.tap 47 - TXT truecolor12
PASS: tests/rwfile_deep.tap 48 - TXT truecolor16
PASS: Magick++/tests/tests.tap 1 - appendImages
PASS: Magick++/tests/tests.tap 2 - attributes
PASS: Magick++/tests/tests.tap 3 - averageImages
PASS: Magick++/tests/tests.tap 4 - coalesceImages
PASS: Magick++/tests/tests.tap 5 - coderInfo
PASS: Magick++/tests/tests.tap 6 - color
PASS: Magick++/tests/tests.tap 7 - colorHistogram
PASS: Magick++/tests/tests.tap 8 - exceptions
PASS: Magick++/tests/tests.tap 9 - montageImages
PASS: Magick++/tests/tests.tap 10 - morphImages
PASS: Magick++/tests/tests.tap 11 - readWriteBlob
PASS: Magick++/tests/tests.tap 12 - readWriteImages
PASS: Magick++/demo/demos.tap 1 - analyze
PASS: Magick++/demo/demos.tap 2 - button
PASS: Magick++/demo/demos.tap 3 - demo
PASS: Magick++/demo/demos.tap 4 - flip
PASS: Magick++/demo/demos.tap 5 - gravity
PASS: Magick++/demo/demos.tap 6 - piddle
PASS: Magick++/demo/demos.tap 7 - shapes
PASS: Magick++/demo/demos.tap 8 - zoom bessel
PASS: Magick++/demo/demos.tap 9 - zoom blackman
PASS: Magick++/demo/demos.tap 10 - zoom box
PASS: Magick++/demo/demos.tap 11 - zoom catrom
PASS: Magick++/demo/demos.tap 12 - zoom cubic
PASS: Magick++/demo/demos.tap 13 - zoom gaussian
PASS: Magick++/demo/demos.tap 14 - zoom hamming
PASS: Magick++/demo/demos.tap 15 - zoom hanning
PASS: Magick++/demo/demos.tap 16 - zoom hermite
PASS: Magick++/demo/demos.tap 17 - zoom lanczos
PASS: Magick++/demo/demos.tap 18 - zoom mitchell
PASS: Magick++/demo/demos.tap 19 - zoom point
PASS: Magick++/demo/demos.tap 20 - zoom quadratic
PASS: Magick++/demo/demos.tap 21 - zoom sample
PASS: Magick++/demo/demos.tap 22 - zoom scale
PASS: Magick++/demo/demos.tap 23 - zoom sinc
PASS: Magick++/demo/demos.tap 24 - zoom triangle
PASS: Magick++/demo/demos.tap 25 - zoom bessel (Copy)
PASS: Magick++/demo/demos.tap 26 - zoom blackman (Copy)
PASS: Magick++/demo/demos.tap 27 - zoom box (Copy)
PASS: Magick++/demo/demos.tap 28 - zoom catrom (Copy)
PASS: Magick++/demo/demos.tap 29 - zoom cubic (Copy)
PASS: Magick++/demo/demos.tap 30 - zoom gaussian (Copy)
PASS: Magick++/demo/demos.tap 31 - zoom hamming (Copy)
PASS: Magick++/demo/demos.tap 32 - zoom hanning (Copy)
PASS: Magick++/demo/demos.tap 33 - zoom hermite (Copy)
PASS: Magick++/demo/demos.tap 34 - zoom lanczos (Copy)
PASS: Magick++/demo/demos.tap 35 - zoom mitchell (Copy)
PASS: Magick++/demo/demos.tap 36 - zoom point (Copy)
PASS: Magick++/demo/demos.tap 37 - zoom quadratic (Copy)
PASS: Magick++/demo/demos.tap 38 - zoom sample (Copy)
PASS: Magick++/demo/demos.tap 39 - zoom scale (Copy)
PASS: Magick++/demo/demos.tap 40 - zoom sinc (Copy)
PASS: Magick++/demo/demos.tap 41 - zoom triangle (Copy)
PASS: Magick++/demo/demos.tap 42 - zoom bessel (Width)
PASS: Magick++/demo/demos.tap 43 - zoom blackman (Width)
PASS: Magick++/demo/demos.tap 44 - zoom box (Width)
PASS: Magick++/demo/demos.tap 45 - zoom catrom (Width)
PASS: Magick++/demo/demos.tap 46 - zoom cubic (Width)
PASS: Magick++/demo/demos.tap 47 - zoom gaussian (Width)
PASS: Magick++/demo/demos.tap 48 - zoom hamming (Width)
PASS: Magick++/demo/demos.tap 49 - zoom hanning (Width)
PASS: Magick++/demo/demos.tap 50 - zoom hermite (Width)
PASS: Magick++/demo/demos.tap 51 - zoom lanczos (Width)
PASS: Magick++/demo/demos.tap 52 - zoom mitchell (Width)
PASS: Magick++/demo/demos.tap 53 - zoom point (Width)
PASS: Magick++/demo/demos.tap 54 - zoom quadratic (Width)
PASS: Magick++/demo/demos.tap 55 - zoom sample (Width)
PASS: Magick++/demo/demos.tap 56 - zoom scale (Width)
PASS: Magick++/demo/demos.tap 57 - zoom sinc (Width)
PASS: Magick++/demo/demos.tap 58 - zoom triangle (Width)
PASS: Magick++/demo/demos.tap 59 - zoom bessel (Height)
PASS: Magick++/demo/demos.tap 60 - zoom blackman (Height)
PASS: Magick++/demo/demos.tap 61 - zoom box (Height)
PASS: Magick++/demo/demos.tap 62 - zoom catrom (Height)
PASS: Magick++/demo/demos.tap 63 - zoom cubic (Height)
PASS: Magick++/demo/demos.tap 64 - zoom gaussian (Height)
PASS: Magick++/demo/demos.tap 65 - zoom hamming (Height)
PASS: Magick++/demo/demos.tap 66 - zoom hanning (Height)
PASS: Magick++/demo/demos.tap 67 - zoom hermite (Height)
PASS: Magick++/demo/demos.tap 68 - zoom lanczos (Height)
PASS: Magick++/demo/demos.tap 69 - zoom mitchell (Height)
PASS: Magick++/demo/demos.tap 70 - zoom point (Height)
PASS: Magick++/demo/demos.tap 71 - zoom quadratic (Height)
PASS: Magick++/demo/demos.tap 72 - zoom sample (Height)
PASS: Magick++/demo/demos.tap 73 - zoom scale (Height)
PASS: Magick++/demo/demos.tap 74 - zoom sinc (Height)
PASS: Magick++/demo/demos.tap 75 - zoom triangle (Height)
PASS: wand/wandtests.tap 1 - wand vector drawing
PASS: wand/wandtests.tap 2 - wand api
PASS: utilities/tests/convert.tap 1 - -noop
PASS: utilities/tests/convert.tap 2 - -affine 1,0,0.785,1,0,0 -transform
PASS: utilities/tests/convert.tap 3 - -asc-cdl 0.9,0.01,0.45:0.9,0.01,0.45:0.9,0.01,0.45:0.01
PASS: utilities/tests/convert.tap 4 - -auto-orient
PASS: utilities/tests/convert.tap 5 - -black-threshold 20%
PASS: utilities/tests/convert.tap 6 - -blur 0x0.5
PASS: utilities/tests/convert.tap 7 - -blur 0x1.0
PASS: utilities/tests/convert.tap 8 - -blur 0x2.0
PASS: utilities/tests/convert.tap 9 - -bordercolor red -border 6x6
PASS: utilities/tests/convert.tap 10 - -channel Red
PASS: utilities/tests/convert.tap 11 - -channel Green
PASS: utilities/tests/convert.tap 12 - -channel Blue
PASS: utilities/tests/convert.tap 13 - -matte -channel Opacity
PASS: utilities/tests/convert.tap 14 - -colorspace CMYK -channel Cyan
PASS: utilities/tests/convert.tap 15 - -colorspace CMYK -channel Magenta
PASS: utilities/tests/convert.tap 16 - -colorspace CMYK -channel Yellow
PASS: utilities/tests/convert.tap 17 - -colorspace CMYK -channel Black
PASS: utilities/tests/convert.tap 18 - -matte -colorspace CMYK -channel Opacity
PASS: utilities/tests/convert.tap 19 - -charcoal 0x1
PASS: utilities/tests/convert.tap 20 - -chop 800x600+200+300
PASS: utilities/tests/convert.tap 21 - -colors 16
PASS: utilities/tests/convert.tap 22 - -colorspace CMYK -colorspace RGB
PASS: utilities/tests/convert.tap 23 - -colorspace GRAY -colorspace RGB
PASS: utilities/tests/convert.tap 24 - -colorspace HSL -colorspace RGB
PASS: utilities/tests/convert.tap 25 - -colorspace HWB -colorspace RGB
PASS: utilities/tests/convert.tap 26 - -colorspace OHTA -colorspace RGB
PASS: utilities/tests/convert.tap 27 - -colorspace RGB -colorspace RGB
PASS: utilities/tests/convert.tap 28 - -colorspace Rec601Luma -colorspace RGB
PASS: utilities/tests/convert.tap 29 - -colorspace Rec709Luma -colorspace RGB
PASS: utilities/tests/convert.tap 30 - -colorspace Rec601YCbCr -colorspace RGB
PASS: utilities/tests/convert.tap 31 - -colorspace Rec709YCbCr -colorspace RGB
PASS: utilities/tests/convert.tap 32 - -colorspace YCbCr -colorspace RGB
PASS: utilities/tests/convert.tap 33 - -colorspace YIQ -colorspace RGB
PASS: utilities/tests/convert.tap 34 - -colorspace YPbPr -colorspace RGB
PASS: utilities/tests/convert.tap 35 - -colorspace YUV -colorspace RGB
PASS: utilities/tests/convert.tap 36 - -contrast -contrast -contrast
PASS: utilities/tests/convert.tap 37 - +contrast +contrast +contrast
PASS: utilities/tests/convert.tap 38 - -convolve 1,1,1,1,4,1,1,1,1
PASS: utilities/tests/convert.tap 39 - -colorize 30%/20%/50%
PASS: utilities/tests/convert.tap 40 - -crop 600x700+100+100
PASS: utilities/tests/convert.tap 41 - -cycle 200
PASS: utilities/tests/convert.tap 42 - -depth 7
PASS: utilities/tests/convert.tap 43 - -depth 16
PASS: utilities/tests/convert.tap 44 - -depth 32
PASS: utilities/tests/convert.tap 45 - -despeckle
PASS: utilities/tests/convert.tap 46 - -fill green -stroke gold -draw 'point 800,500'
PASS: utilities/tests/convert.tap 47 - -fill green -stroke gold -draw 'line 800,500 1100,800'
PASS: utilities/tests/convert.tap 48 - -fill none -stroke gold -draw 'circle 800,500 1100,800'
PASS: utilities/tests/convert.tap 49 - -fill green -stroke gold -draw 'circle 800,500 1100,800'
PASS: utilities/tests/convert.tap 50 - -fill none -stroke gold -draw 'rectangle 400,200 1100,800'
PASS: utilities/tests/convert.tap 51 - -fill blue -stroke gold -draw 'rectangle 400,200 1100,800'
PASS: utilities/tests/convert.tap 52 - -fill none -stroke gold -draw 'roundRectangle 400,200 1100,800 20,20'
PASS: utilities/tests/convert.tap 53 - -fill blue -stroke gold -draw 'roundRectangle 400,200 1100,800 20,20'
PASS: utilities/tests/convert.tap 54 - -fill none -stroke gold -draw 'polygon 400,200 1100,800 100,300'
PASS: utilities/tests/convert.tap 55 - -fill blue -stroke gold -draw 'polygon 400,200 1100,800 100,300'
PASS: utilities/tests/convert.tap 56 - -fill none -stroke gold -draw 'Bezier 400,200 1100,800 100,300'
PASS: utilities/tests/convert.tap 57 - -fill blue -stroke gold -draw 'Bezier 400,200 1100,800 100,300'
PASS: utilities/tests/convert.tap 58 - -draw 'image Over 120,150 0,0 $(SOURCE_DIR)/utilities/tests/sunrise.miff'
PASS: utilities/tests/convert.tap 59 - -draw 'image In 120,150 0,0 $(SOURCE_DIR)/utilities/tests/sunrise.miff'
PASS: utilities/tests/convert.tap 60 - -draw 'image Out 120,150 0,0 $(SOURCE_DIR)/utilities/tests/sunrise.miff'
PASS: utilities/tests/convert.tap 61 - -draw 'image Atop 120,150 0,0 $(SOURCE_DIR)/utilities/tests/sunrise.miff'
PASS: utilities/tests/convert.tap 62 - -draw 'image Xor 120,150 0,0 $(SOURCE_DIR)/utilities/tests/sunrise.miff'
PASS: utilities/tests/convert.tap 63 - -draw 'image Plus 120,150 0,0 $(SOURCE_DIR)/utilities/tests/sunrise.miff'
PASS: utilities/tests/convert.tap 64 - -draw 'image Minus 120,150 0,0 $(SOURCE_DIR)/utilities/tests/sunrise.miff'
PASS: utilities/tests/convert.tap 65 - -draw 'image Over 120,150 0,0 $(SOURCE_DIR)/utilities/tests/sunrise.miff'
PASS: utilities/tests/convert.tap 66 - -draw 'image Add 120,150 0,0 $(SOURCE_DIR)/utilities/tests/sunrise.miff'
PASS: utilities/tests/convert.tap 67 - -draw 'image Subtract 120,150 0,0 $(SOURCE_DIR)/utilities/tests/sunrise.miff'
PASS: utilities/tests/convert.tap 68 - -draw 'image Difference 120,150 0,0 $(SOURCE_DIR)/utilities/tests/sunrise.miff'
PASS: utilities/tests/convert.tap 69 - -draw 'image Divide 120,150 0,0 $(SOURCE_DIR)/utilities/tests/sunrise.miff'
PASS: utilities/tests/convert.tap 70 - -draw 'image Multiply 120,150 0,0 $(SOURCE_DIR)/utilities/tests/sunrise.miff'
PASS: utilities/tests/convert.tap 71 - -draw 'image Bumpmap 120,150 0,0 $(SOURCE_DIR)/utilities/tests/sunrise.miff'
PASS: utilities/tests/convert.tap 72 - -draw 'image Copy 120,150 0,0 $(SOURCE_DIR)/utilities/tests/sunrise.miff'
PASS: utilities/tests/convert.tap 73 - -draw 'image CopyRed 120,150 0,0 $(SOURCE_DIR)/utilities/tests/sunrise.miff'
PASS: utilities/tests/convert.tap 74 - -draw 'image CopyGreen 120,150 0,0 $(SOURCE_DIR)/utilities/tests/sunrise.miff'
PASS: utilities/tests/convert.tap 75 - -draw 'image CopyBlue 120,150 0,0 $(SOURCE_DIR)/utilities/tests/sunrise.miff'
PASS: utilities/tests/convert.tap 76 - -draw 'image CopyOpacity 120,150 0,0 $(SOURCE_DIR)/utilities/tests/sunrise.miff'
PASS: utilities/tests/convert.tap 77 - -edge 0x1
PASS: utilities/tests/convert.tap 78 - -emboss 0x1
PASS: utilities/tests/convert.tap 79 - -enhance
PASS: utilities/tests/convert.tap 80 - -equalize
PASS: utilities/tests/convert.tap 81 - -extent 1200x1200-100-100
PASS: utilities/tests/convert.tap 82 - -flip
PASS: utilities/tests/convert.tap 83 - -flop
PASS: utilities/tests/convert.tap 84 - -frame 15x15+3+3
PASS: utilities/tests/convert.tap 85 - -gamma 1.6
PASS: utilities/tests/convert.tap 86 - -gaussian 0x0.5
PASS: utilities/tests/convert.tap 87 - -gaussian 0x1.0
PASS: utilities/tests/convert.tap 88 - -gaussian 0x2.0
PASS: utilities/tests/convert.tap 89 - -hald-clut identity:8
PASS: utilities/tests/convert.tap 90 - -hald-clut identity:10
PASS: utilities/tests/convert.tap 91 - -implode 0.5
PASS: utilities/tests/convert.tap 92 - -implode -1
PASS: utilities/tests/convert.tap 93 - -lat 10x10-5%
PASS: utilities/tests/convert.tap 94 - -level 10%,1.2,90%
PASS: utilities/tests/convert.tap 95 - -magnify
PASS: utilities/tests/convert.tap 96 - -map netscape:
PASS: utilities/tests/convert.tap 97 - -median 1
PASS: utilities/tests/convert.tap 98 - -median 2
PASS: utilities/tests/convert.tap 99 - -minify
PASS: utilities/tests/convert.tap 100 - -modulate 110/100/95
PASS: utilities/tests/convert.tap 101 - -monochrome
PASS: utilities/tests/convert.tap 102 - -motion-blur 0x3+30
PASS: utilities/tests/convert.tap 103 - -negate
PASS: utilities/tests/convert.tap 104 - +noise Uniform
PASS: utilities/tests/convert.tap 105 - +noise Gaussian
PASS: utilities/tests/convert.tap 106 - +noise Multiplicative
PASS: utilities/tests/convert.tap 107 - +noise Impulse
PASS: utilities/tests/convert.tap 108 - +noise Laplacian
PASS: utilities/tests/convert.tap 109 - +noise Poisson
PASS: utilities/tests/convert.tap 110 - +noise Random
PASS: utilities/tests/convert.tap 111 - -noise 1
PASS: utilities/tests/convert.tap 112 - -noise 2
PASS: utilities/tests/convert.tap 113 - -normalize
PASS: utilities/tests/convert.tap 114 - -fill blue -fuzz 35% -opaque red
PASS: utilities/tests/convert.tap 115 - -operator all Add 2%
PASS: utilities/tests/convert.tap 116 - -operator all And 233
PASS: utilities/tests/convert.tap 117 - -operator all Assign 50%
PASS: utilities/tests/convert.tap 118 - -operator all Depth 6
PASS: utilities/tests/convert.tap 119 - -operator all Divide 2
PASS: utilities/tests/convert.tap 120 - -operator all Gamma 0.7
PASS: utilities/tests/convert.tap 121 - -operator all Negate 1.0
PASS: utilities/tests/convert.tap 122 - -operator all LShift 2
PASS: utilities/tests/convert.tap 123 - -operator all Multiply 0.5
PASS: utilities/tests/convert.tap 124 - -operator all Or 233
PASS: utilities/tests/convert.tap 125 - -operator all RShift 2
PASS: utilities/tests/convert.tap 126 - -operator all Subtract 10%
PASS: utilities/tests/convert.tap 127 - -operator red Threshold 50%
PASS: utilities/tests/convert.tap 128 - -operator gray Threshold 50%
PASS: utilities/tests/convert.tap 129 - -operator all Threshold-White 80%
PASS: utilities/tests/convert.tap 130 - -operator all Threshold-Black 10%
PASS: utilities/tests/convert.tap 131 - -operator all Xor 233
PASS: utilities/tests/convert.tap 132 - -operator all Noise-Gaussian 30%
PASS: utilities/tests/convert.tap 133 - -operator all Noise-Impulse 30%
PASS: utilities/tests/convert.tap 134 - -operator all Noise-Laplacian 30%
PASS: utilities/tests/convert.tap 135 - -operator all Noise-Multiplicative 30%
PASS: utilities/tests/convert.tap 136 - -operator all Noise-Poisson 30%
PASS: utilities/tests/convert.tap 137 - -operator all Noise-Uniform 30%
PASS: utilities/tests/convert.tap 138 - -ordered-dither all 2x2
PASS: utilities/tests/convert.tap 139 - -ordered-dither all 3x3
PASS: utilities/tests/convert.tap 140 - -ordered-dither intensity 3x3
PASS: utilities/tests/convert.tap 141 - -ordered-dither all 4x4
PASS: utilities/tests/convert.tap 142 - -paint 0x1
PASS: utilities/tests/convert.tap 143 - -process Analyze= -format '%[BrightnessMean],%[BrightnessStddev],%[SaturationMean],%[SaturationStddev]'
PASS: utilities/tests/convert.tap 144 - -raise 10x10
PASS: utilities/tests/convert.tap 145 - -random-threshold all 20x80
PASS: utilities/tests/convert.tap 146 - -recolor '1,0,0,0,1,0,0,0,1'
PASS: utilities/tests/convert.tap 147 - -recolor '0,0,1,0,1,0,1,0,0'
PASS: utilities/tests/convert.tap 148 - -recolor '0.9,0,0,0,0.9,0,0,0,1.2'
PASS: utilities/tests/convert.tap 149 - -recolor '.22,.72,.07,.22,.72,.07,.22,.72,.07'
PASS: utilities/tests/convert.tap 150 - -density 75x75 -resample 50x50
PASS: utilities/tests/convert.tap 151 - -region 640x480+400+500 -blur 0x6
PASS: utilities/tests/convert.tap 152 - -resize 10%
PASS: utilities/tests/convert.tap 153 - -resize 50%
PASS: utilities/tests/convert.tap 154 - -resize 150%
PASS: utilities/tests/convert.tap 155 - -roll +20+10
PASS: utilities/tests/convert.tap 156 - -rotate 0
PASS: utilities/tests/convert.tap 157 - -rotate 15
PASS: utilities/tests/convert.tap 158 - -rotate 45
PASS: utilities/tests/convert.tap 159 - -rotate 90
PASS: utilities/tests/convert.tap 160 - -rotate 180
PASS: utilities/tests/convert.tap 161 - -rotate 270
PASS: utilities/tests/convert.tap 162 - -sample 5%
PASS: utilities/tests/convert.tap 163 - -sample 50%
PASS: utilities/tests/convert.tap 164 - -sample 150%
PASS: utilities/tests/convert.tap 165 - -scale 5%
PASS: utilities/tests/convert.tap 166 - -scale 50%
PASS: utilities/tests/convert.tap 167 - -scale 150%
PASS: utilities/tests/convert.tap 168 - -shade 30x30
PASS: utilities/tests/convert.tap 169 - -sharpen 0x0.5
PASS: utilities/tests/convert.tap 170 - -sharpen 0x1.0
PASS: utilities/tests/convert.tap 171 - -sharpen 0x2.0
PASS: utilities/tests/convert.tap 172 - -shave 10x10
PASS: utilities/tests/convert.tap 173 - -shear 25x20
PASS: utilities/tests/convert.tap 174 - -solarize 50%
PASS: utilities/tests/convert.tap 175 - -spread 1
PASS: utilities/tests/convert.tap 176 - -spread 3
PASS: utilities/tests/convert.tap 177 - -swirl 90
PASS: utilities/tests/convert.tap 178 - -threshold 35%
PASS: utilities/tests/convert.tap 179 - -fuzz 35% -transparent red
PASS: utilities/tests/convert.tap 180 - -trim
PASS: utilities/tests/convert.tap 181 - -fuzz 5% -trim
PASS: utilities/tests/convert.tap 182 - -unsharp 0x0.5+20+1
PASS: utilities/tests/convert.tap 183 - -unsharp 0x1.0+20+1
PASS: utilities/tests/convert.tap 184 - -wave 25x150
PASS: utilities/tests/convert.tap 185 - -white-threshold 80%
PASS: utilities/tests/effects.tap 1 - AddNoise
PASS: utilities/tests/effects.tap 2 - Affine
PASS: utilities/tests/effects.tap 3 - Annotate
PASS: utilities/tests/effects.tap 4 - Black-Threshold
PASS: utilities/tests/effects.tap 5 - Blur
PASS: utilities/tests/effects.tap 6 - Border
PASS: utilities/tests/effects.tap 7 - Channel
PASS: utilities/tests/effects.tap 8 - Charcoal
PASS: utilities/tests/effects.tap 9 - Composite
PASS: utilities/tests/effects.tap 10 - Contrast
PASS: utilities/tests/effects.tap 11 - Convolve
PASS: utilities/tests/effects.tap 12 - Crop
PASS: utilities/tests/effects.tap 13 - Despeckle
PASS: utilities/tests/effects.tap 14 - Draw
PASS: utilities/tests/effects.tap 15 - Edge
PASS: utilities/tests/effects.tap 16 - Emboss
PASS: utilities/tests/effects.tap 17 - Equalize
PASS: utilities/tests/effects.tap 18 - Explode
PASS: utilities/tests/effects.tap 19 - Flip
PASS: utilities/tests/effects.tap 20 - Flop
PASS: utilities/tests/effects.tap 21 - Frame
PASS: utilities/tests/effects.tap 22 - Gamma
PASS: utilities/tests/effects.tap 23 - GaussianBlur
PASS: utilities/tests/effects.tap 24 - Gradient
PASS: utilities/tests/effects.tap 25 - Grayscale
PASS: utilities/tests/effects.tap 26 - Implode
PASS: utilities/tests/effects.tap 27 - Level
PASS: utilities/tests/effects.tap 28 - Mask
PASS: utilities/tests/effects.tap 29 - MedianFilter
PASS: utilities/tests/effects.tap 30 - Modulate
PASS: utilities/tests/effects.tap 31 - Monochrome
PASS: utilities/tests/effects.tap 32 - Negate
PASS: utilities/tests/effects.tap 33 - Normalize
PASS: utilities/tests/effects.tap 34 - Oilpaint
PASS: utilities/tests/effects.tap 35 - Ordered2x2
PASS: utilities/tests/effects.tap 36 - Ordered3x3
PASS: utilities/tests/effects.tap 37 - Ordered4x4
PASS: utilities/tests/effects.tap 38 - Plasma
PASS: utilities/tests/effects.tap 39 - Quantize
PASS: utilities/tests/effects.tap 40 - Raise
PASS: utilities/tests/effects.tap 41 - Random 10%
PASS: utilities/tests/effects.tap 42 - Recolor
PASS: utilities/tests/effects.tap 43 - ReduceNoise
PASS: utilities/tests/effects.tap 44 - Resize
PASS: utilities/tests/effects.tap 45 - Roll
PASS: utilities/tests/effects.tap 46 - Rotate 45
PASS: utilities/tests/effects.tap 47 - Scale
PASS: utilities/tests/effects.tap 48 - Segment
PASS: utilities/tests/effects.tap 49 - Shade
PASS: utilities/tests/effects.tap 50 - Sharpen
PASS: utilities/tests/effects.tap 51 - Shave
PASS: utilities/tests/effects.tap 52 - Shear
PASS: utilities/tests/effects.tap 53 - Solarize
PASS: utilities/tests/effects.tap 54 - Spread
PASS: utilities/tests/effects.tap 55 - Swirl
PASS: utilities/tests/effects.tap 56 - Threshold
PASS: utilities/tests/effects.tap 57 - UnsharpMask
PASS: utilities/tests/effects.tap 58 - Wave
PASS: utilities/tests/effects.tap 59 - White-Threshold
PASS: utilities/tests/pipe.tap 1 - Convert piped to identify (implicit MIFF)
PASS: utilities/tests/pipe.tap 2 - Convert piped to identify (explicit MIFF)
PASS: utilities/tests/pipe.tap 3 - Convert piped to identify (explicit MIFF to explicit PNM)
PASS: utilities/tests/pipe.tap 4 - Convert piped to identify (explicit PNM)
PASS: utilities/tests/pipe.tap 5 - Convert implicit MIFF stdin to null:
PASS: utilities/tests/pipe.tap 6 - Convert explicit MIFF stdin to null:
PASS: utilities/tests/pipe.tap 7 - Convert MIFF piped to identify -format
PASS: utilities/tests/pipe.tap 8 - Convert PNM piped to identify -format
PASS: utilities/tests/hald-clut.tap 1 - Hald CLUT identity (level=2)
PASS: utilities/tests/hald-clut.tap 2 - Hald CLUT verify (level=2)
PASS: utilities/tests/hald-clut.tap 3 - Hald CLUT identity (level=7)
PASS: utilities/tests/hald-clut.tap 4 - Hald CLUT verify (level=7)
PASS: utilities/tests/hald-clut.tap 5 - Hald CLUT identity (level=8)
PASS: utilities/tests/hald-clut.tap 6 - Hald CLUT verify (level=8)
PASS: utilities/tests/hald-clut.tap 7 - Hald CLUT identity (level=10)
PASS: utilities/tests/hald-clut.tap 8 - Hald CLUT verify (level=10)
PASS: utilities/tests/hald-clut.tap 9 - Hald CLUT identity (level=12)
PASS: utilities/tests/hald-clut.tap 10 - Hald CLUT verify (level=12)
PASS: utilities/tests/hald-clut.tap 11 - Hald CLUT emulate negate
PASS: utilities/tests/hald-clut.tap 12 - Hald CLUT verify
PASS: utilities/tests/help.tap 1 - gm help
PASS: utilities/tests/help.tap 2 - gm -version
PASS: utilities/tests/help.tap 3 - gm help batch
PASS: utilities/tests/help.tap 4 - gm batch -help
PASS: utilities/tests/help.tap 5 - gm help benchmark
PASS: utilities/tests/help.tap 6 - gm benchmark -help
PASS: utilities/tests/help.tap 7 - gm help compare
PASS: utilities/tests/help.tap 8 - gm compare -help
PASS: utilities/tests/help.tap 9 - gm help composite
PASS: utilities/tests/help.tap 10 - gm composite -help
PASS: utilities/tests/help.tap 11 - gm help conjure
PASS: utilities/tests/help.tap 12 - gm conjure -help
PASS: utilities/tests/help.tap 13 - gm help convert
PASS: utilities/tests/help.tap 14 - gm convert -help
PASS: utilities/tests/help.tap 15 - gm help help
PASS: utilities/tests/help.tap 16 - gm help -help
PASS: utilities/tests/help.tap 17 - gm help identify
PASS: utilities/tests/help.tap 18 - gm identify -help
PASS: utilities/tests/help.tap 19 - gm help mogrify
PASS: utilities/tests/help.tap 20 - gm mogrify -help
PASS: utilities/tests/help.tap 21 - gm help montage
PASS: utilities/tests/help.tap 22 - gm montage -help
PASS: utilities/tests/help.tap 23 - gm help time
PASS: utilities/tests/help.tap 24 - gm time -help
PASS: utilities/tests/help.tap 25 - gm help version
PASS: utilities/tests/help.tap 26 - gm version -help
PASS: utilities/tests/help.tap 27 - gm help animate
PASS: utilities/tests/help.tap 28 - gm animate -help
PASS: utilities/tests/help.tap 29 - gm help display
PASS: utilities/tests/help.tap 30 - gm display -help
PASS: utilities/tests/help.tap 31 - gm help import
PASS: utilities/tests/help.tap 32 - gm import -help
PASS: utilities/tests/icc-transform.tap 1 - Extract ICC profile
PASS: utilities/tests/icc-transform.tap 2 - Apply ICC profile and then reverse it
PASS: utilities/tests/icc-transform.tap 3 - Verify results
PASS: utilities/tests/identify.tap 1 - identify -verbose
PASS: utilities/tests/list.tap 1 - gm convert -list color
PASS: utilities/tests/list.tap 2 - gm mogrify -list color
PASS: utilities/tests/list.tap 3 - gm convert -list delegate
PASS: utilities/tests/list.tap 4 - gm mogrify -list delegate
PASS: utilities/tests/list.tap 5 - gm convert -list format
PASS: utilities/tests/list.tap 6 - gm mogrify -list format
PASS: utilities/tests/list.tap 7 - gm convert -list magic
PASS: utilities/tests/list.tap 8 - gm mogrify -list magic
PASS: utilities/tests/list.tap 9 - gm convert -list modulemap
PASS: utilities/tests/list.tap 10 - gm mogrify -list modulemap
PASS: utilities/tests/list.tap 11 - gm convert -list resource
PASS: utilities/tests/list.tap 12 - gm mogrify -list resource
PASS: utilities/tests/list.tap 13 - gm convert -list type
PASS: utilities/tests/list.tap 14 - gm mogrify -list type
SKIP: utilities/tests/list.tap 15 - gm convert -list module # SKIP requires MODULES support
SKIP: utilities/tests/list.tap 16 - gm mogrify -list module # SKIP requires MODULES support
PASS: utilities/tests/montage.tap 1 - Montage
PASS: utilities/tests/montage.tap 2 - Prepare logo
PASS: utilities/tests/montage.tap 3 - Composite logo
PASS: utilities/tests/msl_composite.tap 1 - Conjure
PASS: utilities/tests/msl_composite.tap 2 - Verify Result
PASS: utilities/tests/preview.tap 1 - AddNoise
PASS: utilities/tests/preview.tap 2 - Blur
PASS: utilities/tests/preview.tap 3 - Brightness
PASS: utilities/tests/preview.tap 4 - CharcoalDrawing
PASS: utilities/tests/preview.tap 5 - Despeckle
PASS: utilities/tests/preview.tap 6 - Dull
PASS: utilities/tests/preview.tap 7 - EdgeDetect
PASS: utilities/tests/preview.tap 8 - Gamma
PASS: utilities/tests/preview.tap 9 - Grayscale
PASS: utilities/tests/preview.tap 10 - Hue
PASS: utilities/tests/preview.tap 11 - Implode
PASS: utilities/tests/preview.tap 12 - OilPaint
PASS: utilities/tests/preview.tap 13 - Quantize
PASS: utilities/tests/preview.tap 14 - Raise
PASS: utilities/tests/preview.tap 15 - ReduceNoise
PASS: utilities/tests/preview.tap 16 - Roll
PASS: utilities/tests/preview.tap 17 - Rotate
PASS: utilities/tests/preview.tap 18 - Saturation
PASS: utilities/tests/preview.tap 19 - Segment
PASS: utilities/tests/preview.tap 20 - Shade
PASS: utilities/tests/preview.tap 21 - Sharpen
PASS: utilities/tests/preview.tap 22 - Shear
PASS: utilities/tests/preview.tap 23 - Solarize
PASS: utilities/tests/preview.tap 24 - Spiff
PASS: utilities/tests/preview.tap 25 - Spread
PASS: utilities/tests/preview.tap 26 - Swirl
PASS: utilities/tests/preview.tap 27 - Threshold
PASS: utilities/tests/preview.tap 28 - Wave
PASS: utilities/tests/resize.tap 1 - Convert piped to identify (implicit MIFF)
============================================================================
Testsuite summary for GraphicsMagick 1.3.43
============================================================================
# TOTAL: 1722
# PASS:  1665
# SKIP:  46
# XFAIL: 0
# FAIL:  11
# XPASS: 0
# ERROR: 0
============================================================================
============================================================================