|
Home About Us A-Z Index Search * Contact Us Register Login Press ShopThe Open Brand -- Problem Reporting and Interpretations System |
Problem Report 1852 Details
Show help | Quick Search | Submit a Test Suite Support Request | Click here to view your privileges
This page provides all information on Problem Report 1852.
Report 1852 Actions
Problem Report Number 1852 Submitter's Classification Test Suite problem State Resolved Resolution Test Suite Deficiency (TSD) Problem Resolution ID TSD.X.0929 Raised 2002-06-20 08:00 Updated 2003-03-13 08:00 Published 2002-06-24 08:00 Product Standard Window System Application Interface V2 Certification Program The Open Brand certification program Test Suite VSW version 5.1.2 Test Identification Xlib9/XPutImage 33 Problem Summary TSD4W.00174 The test reports "Could not find differing bits_per_pixel" for visuals with depths between 25 and 31. Problem Text
It seems VSW does not know how to handle a depth 30 re bpp.
>>>>>> /usr/vsw5/vsw5/tset/Xlib9/ptimg/Test.c
static void t033(){
XImage *im1, *im2;
XVisualInfo *vp;
Window w;
char *data;
int supported = 0;
int nbits;
int i;
static int legal_bpps[] = {1, 4, 8, 16, 24, 32, 0};
#define ROUNDUP(nbytes, pad) ((((nbytes) + ((pad)-1)) / (pad)) * ((pad)>>3))
int pass = 0, fail = 0;
report_purpose(33);
report_assertion("Assertion XPutImage-33.(A)");
report_assertion("If drawables with depth < 32 are supported: When the image");
report_assertion("differs from the X server's format in bits-per-pixel, then");
report_assertion("the image will be converted to that format before drawing on");
report_assertion("the specified drawable.");
report_strategy("Call makeimg to create image in ZPixmap format using");
report_strategy("server's format in bits-per-pixel, scanline-pad, byte-order,");
report_strategy("and bit-order.");
report_strategy("Call makeimg to create another image in ZPixmap format.");
report_strategy("Set bits-per-pixel to be different from the server's format, but <= depth.");
report_strategy("Allocate memory for image data, discarding old data and clearing new.");
report_strategy("Write known pattern to both images, using min(normal b.p.p, abnormal b.p.p) bits.");
report_strategy("Create drawable.");
report_strategy("Call XPutImage with server-normal image.");
report_strategy("Compare server-normal image with drawable.");
report_strategy("Clear drawable to W_FG.");
report_strategy("Call XPutImage with non-server-normal image.");
report_strategy("Compare same image with drawable.");
report_strategy("Compare other image with drawable.");
report_strategy("Repeat for each visual.");
tpstartup();
setargs();
for (resetvinf(VI_WIN_PIX); nextvinf(&vp); ) {
if (vp->depth == 32)
continue;
supported++;
/* Call makeimg to create image in ZPixmap format using */
/* server's format in bits-per-pixel, scanline-pad, byte-order, */
/* and bit-order. */
trace("ZPixmap, standard");
im1 = makeimg(display, vp, ZPixmap);
for (i = 0; legal_bpps[i]; i++) {
if (legal_bpps[i] >= im1->depth &&
legal_bpps[i] != im1->bits_per_pixel)
break;
}
if (!legal_bpps[i]) {
report("Could not find differing bits_per_pixel");
FAIL;
continue;
}
>>>>>>>> /usr/vsw5/vsw5/src/lib/makeimg.c
/*
* Creates a general purpose image that can be used within the
* test suite. The image is cleared to W_BG.
*/
XImage *
makeimg(disp, vp, format)
Display *disp;
XVisualInfo *vp;
int format;
{
XImage *im;
unsigned int width = I_STDWIDTH;
unsigned int height = I_STDHEIGHT;
unsigned int depth = vp->depth;
unsigned int n;
switch (format)
{
case XYBitmap:
depth = 1;
break;
case XYPixmap:
break;
case ZPixmap:
break;
default:
delete("Unknown format in makeimg: %d", format);
return((XImage *) 0);
}
im = XCreateImage(disp, vp->visual, depth, format, 0, (char *) 0, width, height, BitmapPad(disp), 0);
/* this should be more than enough memory */
n = (format == ZPixmap ? 1 : depth) * im->bytes_per_line * im->height;
im->data = (char *) malloc(n);
if (im->data == (char *) 0) {
delete("Memory allocation failed in makeimg: %d bytes", n);
return((XImage *) 0);
}
/* register Image */
regid(disp, (union regtypes *)&im, REG_IMAGE);
/* set all pixel values to W_BG */
dsetimg(im, W_BG);
return(im);
}
The testing goes up to 32 bits only. One image is
created with depth x and bpp y as a reference.
Later on they want to create another image with the
depth >=x and different bpp y'. They want to see if a
conversion is possible on the second image against the
first one.
|Assertion XPutImage-33.(A)
|If drawables with depth < 32 are supported: When the image
|differs from the X server's format in bits-per-pixel, then
|the image will be converted to that format before drawing on
|the specified drawable.
|METH: Call makeimg to create image in ZPixmap format using
|METH: server's format in bits-per-pixel, scanline-pad, byte-order,
|METH: and bit-order.
|METH: Call makeimg to create another image in ZPixmap format.
|METH: Set bits-per-pixel to be different from the server's format, but <= depth.
|METH: Allocate memory for image data, discarding old data and clearing new.
|METH: Write known pattern to both images, using min(normal b.p.p, abnormal b.p.p) bits.
|METH: Create drawable.
|METH: Call XPutImage with server-normal image.
|METH: Compare server-normal image with drawable.
|METH: Clear drawable to W_FG.
|METH: Call XPutImage with non-server-normal image.
|METH: Compare same image with drawable.
|METH: Compare other image with drawable.
|METH: Repeat for each visual.
After tracing depths and bpps, we get:
legal_bpps[] = {1, 4, 8, 16, 24, 32, 0}
legal_bpps
Depth Real >=Depth && !=RealBpp Non-server-normal
bpp bpp bpp
----------------------------------------------------------
8 8 16,24,32 16
12 16 24,32 24
15 16 24,32 24
24 32 24 24
30 32 N/A N/A
There is a gotcha:
for (resetvinf(VI_WIN_PIX); nextvinf(&vp); ) {
if (vp->depth == 32)
continue;
The test just ignores what happens with depth 32. Why?
Because it won't be an available legal_bpps that satisfies
>=Depth && !=RealBpp (not under X).
To me the same case is happening to depth=30. Perhaps
the OpenGroup did not think such a case would exist ...Test Output
520|406 33 00012968 1 1|VSW5TESTSUITE PURPOSE 33
520|406 33 00012968 1 2|Assertion XPutImage-33.(A)
520|406 33 00012968 1 3|If drawables with depth < 32 are supported: When the image
520|406 33 00012968 1 4|differs from the X server's format in bits-per-pixel, then
520|406 33 00012968 1 5|the image will be converted to that format before drawing on
520|406 33 00012968 1 6|the specified drawable.
520|406 33 00012968 1 7|METH: Call makeimg to create image in ZPixmap format using
520|406 33 00012968 1 8|METH: server's format in bits-per-pixel, scanline-pad, byte-order,
520|406 33 00012968 1 9|METH: and bit-order.
520|406 33 00012968 1 10|METH: Call makeimg to create another image in ZPixmap format.
520|406 33 00012968 1 11|METH: Set bits-per-pixel to be different from the server's format, but <= depth.
520|406 33 00012968 1 12|METH: Allocate memory for image data, discarding old data and clearing new.
520|406 33 00012968 1 13|METH: Write known pattern to both images, using min(normal b.p.p, abnormal b.p.p) bits.
520|406 33 00012968 1 14|METH: Create drawable.
520|406 33 00012968 1 15|METH: Call XPutImage with server-normal image.
520|406 33 00012968 1 16|METH: Compare server-normal image with drawable.
520|406 33 00012968 1 17|METH: Clear drawable to W_FG.
520|406 33 00012968 1 18|METH: Call XPutImage with non-server-normal image.
520|406 33 00012968 1 19|METH: Compare same image with drawable.
520|406 33 00012968 1 20|METH: Compare other image with drawable.
520|406 33 00012968 1 21|METH: Repeat for each visual.
520|406 33 00012968 1 22|REPORT: Could not find differing bits_per_pixel
520|406 33 00012968 1 23|REPORT: Could not find differing bits_per_pixel
520|406 33 00012968 1 24|REPORT: Could not find differing bits_per_pixel
520|406 33 00012968 1 25|REPORT: Could not find differing bits_per_pixel
520|406 33 00012968 1 26|REPORT: Could not find differing bits_per_pixel
520|406 33 00012968 1 27|REPORT: Could not find differing bits_per_pixel
520|406 33 00012968 1 28|REPORT: Could not find differing bits_per_pixel
520|406 33 00012968 1 29|REPORT: Could not find differing bits_per_pixel
220|406 33 1 23:32:06|FAIL
Adding an extract from the VSW5 journal in debug mode.
200|0 33 17:52:05|TP Start
1|VSW5TESTSUITE PURPOSE 33
2|Assertion XPutImage-33.(A)
3|If drawables with depth < 32 are supported: When the image
4|differs from the X server's format in bits-per-pixel, then
5|the image will be converted to that format before drawing on
6|the specified drawable.
7|METH: Call makeimg to create image in ZPixmap format using
8|METH: server's format in bits-per-pixel, scanline-pad, byte-order,
9|METH: and bit-order.
10|METH: Call makeimg to create another image in ZPixmap format.
11|METH: Set bits-per-pixel to be different from the server's format, but <= depth.
12|METH: Allocate memory for image data, discarding old data and clearing new.
13|METH: Write known pattern to both images, using min(normal b.p.p, abnormal b.p.p) bits.
14|METH: Create drawable.
15|METH: Call XPutImage with server-normal image.
16|METH: Compare server-normal image with drawable.
17|METH: Clear drawable to W_FG.
18|METH: Call XPutImage with non-server-normal image.
19|METH: Compare same image with drawable.
20|METH: Compare other image with drawable.
21|METH: Repeat for each visual.
...
390|TRACE: --- Running test with visual class TrueColor, depth 12
391|TRACE: ZPixmap, standard
392|DEBUG: Save id 0x0, type 0
393|DEBUG: Save id 0x0, type 0
394|TRACE: ZPixmap. Non-server normal: depth=12, bits_per_pixel=24
395|CHECK: XPutImage-33 93, line 3163
396|TRACE: patterning im1 with ffff
397|TRACE: patterning im2 with ffff
398|DEBUG: Save id 0x0, type 4
399|DEBUG: Save id 0x0, type 1
400|DEBUG: Save id 0x0, type 3
401|DEBUG: Save id 0x0, type 3
402|CHECK: XPutImage-33 94, line 3196
403|DEBUG: Save id 0x0, type 3
404|CHECK: XPutImage-33 95, line 3217
405|CHECK: XPutImage-33 96, line 3224
406|TRACE: --- Running test with visual class TrueColor, depth 12
407|TRACE: ZPixmap, standard
408|DEBUG: Save id 0x0, type 0
409|DEBUG: Save id 0x0, type 0
410|TRACE: ZPixmap. Non-server normal: depth=12, bits_per_pixel=24
411|CHECK: XPutImage-33 97, line 3163
412|TRACE: patterning im1 with ffff
413|TRACE: patterning im2 with ffff
414|DEBUG: Save id 0x0, type 4
415|DEBUG: Save id 0x0, type 1
416|DEBUG: Save id 0x0, type 3
417|DEBUG: Save id 0x0, type 3
418|CHECK: XPutImage-33 98, line 3196
419|DEBUG: Save id 0x0, type 3
420|CHECK: XPutImage-33 99, line 3217
421|CHECK: XPutImage-33 100, line 3224
422|TRACE: --- Running test with visual class TrueColor, depth 12
423|TRACE: ZPixmap, standard
424|DEBUG: Save id 0x0, type 0
425|DEBUG: Save id 0x0, type 0
426|TRACE: ZPixmap. Non-server normal: depth=12, bits_per_pixel=24
427|CHECK: XPutImage-33 101, line 3163
428|TRACE: patterning im1 with ffff
429|TRACE: patterning im2 with ffff
430|DEBUG: Save id 0x0, type 4
431|DEBUG: Save id 0x0, type 1
432|DEBUG: Save id 0x0, type 3
433|DEBUG: Save id 0x0, type 3
434|CHECK: XPutImage-33 102, line 3196
435|DEBUG: Save id 0x0, type 3
436|CHECK: XPutImage-33 103, line 3217
437|CHECK: XPutImage-33 104, line 3224
438|TRACE: --- Running test with visual class TrueColor, depth 15
439|TRACE: ZPixmap, standard
440|DEBUG: Save id 0x0, type 0
441|DEBUG: Save id 0x0, type 0
442|TRACE: ZPixmap. Non-server normal: depth=15, bits_per_pixel=24
443|CHECK: XPutImage-33 105, line 3163
444|TRACE: patterning im1 with ffff
445|TRACE: patterning im2 with ffff
446|DEBUG: Save id 0x0, type 4
447|DEBUG: Save id 0x0, type 1
448|DEBUG: Save id 0x0, type 3
449|DEBUG: Save id 0x0, type 3
450|CHECK: XPutImage-33 106, line 3196
451|DEBUG: Save id 0x0, type 3
452|CHECK: XPutImage-33 107, line 3217
453|CHECK: XPutImage-33 108, line 3224
454|TRACE: --- Running test with visual class TrueColor, depth 15
455|TRACE: ZPixmap, standard
456|DEBUG: Save id 0x0, type 0
457|DEBUG: Save id 0x0, type 0
458|TRACE: ZPixmap. Non-server normal: depth=15, bits_per_pixel=24
459|CHECK: XPutImage-33 109, line 3163
460|TRACE: patterning im1 with ffff
461|TRACE: patterning im2 with ffff
462|DEBUG: Save id 0x0, type 4
463|DEBUG: Save id 0x0, type 1
464|DEBUG: Save id 0x0, type 3
465|DEBUG: Save id 0x0, type 3
466|CHECK: XPutImage-33 110, line 3196
467|DEBUG: Save id 0x0, type 3
468|CHECK: XPutImage-33 111, line 3217
469|CHECK: XPutImage-33 112, line 3224
470|TRACE: --- Running test with visual class TrueColor, depth 15
471|TRACE: ZPixmap, standard
472|DEBUG: Save id 0x0, type 0
473|DEBUG: Save id 0x0, type 0
474|TRACE: ZPixmap. Non-server normal: depth=15, bits_per_pixel=24
475|CHECK: XPutImage-33 113, line 3163
476|TRACE: patterning im1 with ffff
477|TRACE: patterning im2 with ffff
478|DEBUG: Save id 0x0, type 4
479|DEBUG: Save id 0x0, type 1
480|DEBUG: Save id 0x0, type 3
481|DEBUG: Save id 0x0, type 3
482|CHECK: XPutImage-33 114, line 3196
483|DEBUG: Save id 0x0, type 3
484|CHECK: XPutImage-33 115, line 3217
485|CHECK: XPutImage-33 116, line 3224
486|TRACE: --- Running test with visual class TrueColor, depth 15
487|TRACE: ZPixmap, standard
488|DEBUG: Save id 0x0, type 0
489|DEBUG: Save id 0x0, type 0
490|TRACE: ZPixmap. Non-server normal: depth=15, bits_per_pixel=24
491|CHECK: XPutImage-33 117, line 3163
492|TRACE: patterning im1 with ffff
493|TRACE: patterning im2 with ffff
494|DEBUG: Save id 0x0, type 4
495|DEBUG: Save id 0x0, type 1
496|DEBUG: Save id 0x0, type 3
497|DEBUG: Save id 0x0, type 3
498|CHECK: XPutImage-33 118, line 3196
499|DEBUG: Save id 0x0, type 3
500|CHECK: XPutImage-33 119, line 3217
501|CHECK: XPutImage-33 120, line 3224
502|TRACE: --- Running test with visual class TrueColor, depth 24
503|TRACE: ZPixmap, standard
504|DEBUG: Save id 0x0, type 0
505|DEBUG: Save id 0x0, type 0
506|TRACE: ZPixmap. Non-server normal: depth=24, bits_per_pixel=24
507|CHECK: XPutImage-33 121, line 3163
508|TRACE: patterning im1 with ffffff
509|TRACE: patterning im2 with ffffff
510|DEBUG: Save id 0x0, type 4
511|DEBUG: Save id 0x0, type 1
512|DEBUG: Save id 0x0, type 3
513|DEBUG: Save id 0x0, type 3
514|CHECK: XPutImage-33 122, line 3196
515|DEBUG: Save id 0x0, type 3
516|CHECK: XPutImage-33 123, line 3217
517|CHECK: XPutImage-33 124, line 3224
518|TRACE: --- Running test with visual class TrueColor, depth 24
519|TRACE: ZPixmap, standard
520|DEBUG: Save id 0x0, type 0
521|DEBUG: Save id 0x0, type 0
522|TRACE: ZPixmap. Non-server normal: depth=24, bits_per_pixel=24
523|CHECK: XPutImage-33 125, line 3163
524|TRACE: patterning im1 with ffffff
525|TRACE: patterning im2 with ffffff
526|DEBUG: Save id 0x0, type 4
527|DEBUG: Save id 0x0, type 1
528|DEBUG: Save id 0x0, type 3
529|DEBUG: Save id 0x0, type 3
530|CHECK: XPutImage-33 126, line 3196
531|DEBUG: Save id 0x0, type 3
532|CHECK: XPutImage-33 127, line 3217
533|CHECK: XPutImage-33 128, line 3224
534|TRACE: --- Running test with visual class TrueColor, depth 24
535|TRACE: ZPixmap, standard
536|DEBUG: Save id 0x0, type 0
537|DEBUG: Save id 0x0, type 0
538|TRACE: ZPixmap. Non-server normal: depth=24, bits_per_pixel=24
539|CHECK: XPutImage-33 129, line 3163
540|TRACE: patterning im1 with ffffff
541|TRACE: patterning im2 with ffffff
542|DEBUG: Save id 0x0, type 4
543|DEBUG: Save id 0x0, type 1
544|DEBUG: Save id 0x0, type 3
545|DEBUG: Save id 0x0, type 3
546|CHECK: XPutImage-33 130, line 3196
547|DEBUG: Save id 0x0, type 3
548|CHECK: XPutImage-33 131, line 3217
549|CHECK: XPutImage-33 132, line 3224
550|TRACE: --- Running test with visual class TrueColor, depth 24
551|TRACE: ZPixmap, standard
552|DEBUG: Save id 0x0, type 0
553|DEBUG: Save id 0x0, type 0
554|TRACE: ZPixmap. Non-server normal: depth=24, bits_per_pixel=24
555|CHECK: XPutImage-33 133, line 3163
556|TRACE: patterning im1 with ffffff
557|TRACE: patterning im2 with ffffff
558|DEBUG: Save id 0x0, type 4
559|DEBUG: Save id 0x0, type 1
560|DEBUG: Save id 0x0, type 3
561|DEBUG: Save id 0x0, type 3
562|CHECK: XPutImage-33 134, line 3196
563|DEBUG: Save id 0x0, type 3
564|CHECK: XPutImage-33 135, line 3217
565|CHECK: XPutImage-33 136, line 3224
566|TRACE: --- Running test with visual class TrueColor, depth 30
567|TRACE: ZPixmap, standard
568|DEBUG: Save id 0x0, type 0
569|REPORT: Could not find differing bits_per_pixel
570|TRACE: --- Running test with visual class TrueColor, depth 30
571|TRACE: ZPixmap, standard
572|DEBUG: Save id 0x0, type 0
573|REPORT: Could not find differing bits_per_pixel
574|TRACE: --- Running test with visual class TrueColor, depth 30
575|TRACE: ZPixmap, standard
576|DEBUG: Save id 0x0, type 0
577|REPORT: Could not find differing bits_per_pixel
578|TRACE: --- Running test with visual class TrueColor, depth 30
579|TRACE: ZPixmap, standard
580|DEBUG: Save id 0x0, type 0
581|REPORT: Could not find differing bits_per_pixel
582|TRACE: --- Running test with visual class TrueColor, depth 30
583|TRACE: ZPixmap, standard
584|DEBUG: Save id 0x0, type 0
585|REPORT: Could not find differing bits_per_pixel
586|TRACE: --- Running test with visual class TrueColor, depth 30
587|TRACE: ZPixmap, standard
588|DEBUG: Save id 0x0, type 0
589|REPORT: Could not find differing bits_per_pixel
590|TRACE: --- Running test with visual class TrueColor, depth 30
591|TRACE: ZPixmap, standard
592|DEBUG: Save id 0x0, type 0
593|REPORT: Could not find differing bits_per_pixel
594|TRACE: --- Running test with pixmap depth 1
595|TRACE: ZPixmap, standard
596|DEBUG: Save id 0x0, type 0
597|DEBUG: Save id 0x0, type 0
598|TRACE: ZPixmap. Non-server normal: depth=1, bits_per_pixel=4
599|CHECK: XPutImage-33 137, line 3163
600|TRACE: patterning im1 with 1
601|TRACE: patterning im2 with 1
602|DEBUG: Save id 0x0, type 3
603|DEBUG: Save id 0x0, type 2
604|DEBUG: Save id 0x0, type 3
605|DEBUG: Save id 0x0, type 3
606|CHECK: XPutImage-33 138, line 3196
607|DEBUG: Save id 0x0, type 3
608|CHECK: XPutImage-33 139, line 3217
609|CHECK: XPutImage-33 140, line 3224
610|TRACE: --- Running test with pixmap depth 8
611|TRACE: ZPixmap, standard
612|DEBUG: Save id 0x0, type 0
613|DEBUG: Save id 0x0, type 0
614|TRACE: ZPixmap. Non-server normal: depth=8, bits_per_pixel=16
615|CHECK: XPutImage-33 141, line 3163
616|TRACE: patterning im1 with ff
617|TRACE: patterning im2 with ff
618|DEBUG: Save id 0x0, type 3
619|DEBUG: Save id 0x0, type 2
620|DEBUG: Save id 0x0, type 3
621|DEBUG: Save id 0x0, type 3
622|CHECK: XPutImage-33 142, line 3196
623|DEBUG: Save id 0x0, type 3
624|CHECK: XPutImage-33 143, line 3217
625|CHECK: XPutImage-33 144, line 3224
626|TRACE: --- Running test with pixmap depth 12
627|TRACE: ZPixmap, standard
628|DEBUG: Save id 0x0, type 0
629|DEBUG: Save id 0x0, type 0
630|TRACE: ZPixmap. Non-server normal: depth=12, bits_per_pixel=24
631|CHECK: XPutImage-33 145, line 3163
632|TRACE: patterning im1 with ffff
633|TRACE: patterning im2 with ffff
634|DEBUG: Save id 0x0, type 3
635|DEBUG: Save id 0x0, type 2
636|DEBUG: Save id 0x0, type 3
637|DEBUG: Save id 0x0, type 3
638|CHECK: XPutImage-33 146, line 3196
639|DEBUG: Save id 0x0, type 3
640|CHECK: XPutImage-33 147, line 3217
641|CHECK: XPutImage-33 148, line 3224
642|TRACE: --- Running test with pixmap depth 15
643|TRACE: ZPixmap, standard
644|DEBUG: Save id 0x0, type 0
645|DEBUG: Save id 0x0, type 0
646|TRACE: ZPixmap. Non-server normal: depth=15, bits_per_pixel=24
647|CHECK: XPutImage-33 149, line 3163
648|TRACE: patterning im1 with ffff
649|TRACE: patterning im2 with ffff
650|DEBUG: Save id 0x0, type 3
651|DEBUG: Save id 0x0, type 2
652|DEBUG: Save id 0x0, type 3
653|DEBUG: Save id 0x0, type 3
654|CHECK: XPutImage-33 150, line 3196
655|DEBUG: Save id 0x0, type 3
656|CHECK: XPutImage-33 151, line 3217
657|CHECK: XPutImage-33 152, line 3224
658|TRACE: --- Running test with pixmap depth 24
659|TRACE: ZPixmap, standard
660|DEBUG: Save id 0x0, type 0
661|DEBUG: Save id 0x0, type 0
662|TRACE: ZPixmap. Non-server normal: depth=24, bits_per_pixel=24
663|CHECK: XPutImage-33 153, line 3163
664|TRACE: patterning im1 with ffffff
665|TRACE: patterning im2 with ffffff
666|DEBUG: Save id 0x0, type 3
667|DEBUG: Save id 0x0, type 2
668|DEBUG: Save id 0x0, type 3
669|DEBUG: Save id 0x0, type 3
670|CHECK: XPutImage-33 154, line 3196
671|DEBUG: Save id 0x0, type 3
672|CHECK: XPutImage-33 155, line 3217
673|CHECK: XPutImage-33 156, line 3224
674|TRACE: --- Running test with pixmap depth 30
675|TRACE: ZPixmap, standard
676|DEBUG: Save id 0x0, type 0
677|REPORT: Could not find differing bits_per_pixel
678|CHECK: XPutImage-33 157, line 3233
679|DEBUG: Free id 0x0, type 0
680|DEBUG: Free id 0x0, type 3
...
957|DEBUG: Free id 0x0, type 4
958|DEBUG: Free id 0x0, type 0
959|DEBUG: Free id 0x0, type 0
FAIL
17:52:05|IC EndReview Information
Review Type TSMA Review Start Date null Completed null Status Complete Review Recommendation No Resolution Given Review Response
This is accepted as a fault in the test suite.
Review Type SA Review Start Date null Completed null Status Complete Review Resolution Test Suite Deficiency (TSD) Review Conclusion
This is an agreed Test Suite Deficiency.
Problem Reporting System Options:
- View Report 1852
- List All PRs
- Search Reports
- Email the System Administrator
- View the The Open Brand Interpretations Database User Manual
Contact the Certification Authority