|
Home About Us A-Z Index Search * Contact Us Register Login Press ShopThe Open Brand -- Problem Reporting and Interpretations System |
Problem Report 2203 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 2203.
Report 2203 Actions
Problem Report Number 2203 Submitter's Classification Test Suite problem State Resolved Resolution Test Suite Deficiency (TSD) Problem Resolution ID TSD.X.1122 Raised 1970-01-01 08:00 Updated 2003-03-13 08:00 Published 1998-03-05 08:00 Product Standard Motif Toolkit Certification Program The Open Brand certification program Test Suite VSM version 4.0.0 Test Identification widgets/XmScrolledList 2 Problem Summary TSD4M.00029 The test stopped after the X Server error message with no indication that there was an error other than the X Server error message that was printed to standard error. Test Purposes 3 and 4 were appare... Problem Text
The test stopped after the X Server error message with no indication
that there was an error other than the X Server error message that
was printed to standard error.
Test Purposes 3 and 4 were apparently NOT run due to the error above.
They came up as UNINIT when I ran "creport".
BELOW IS THE CALL STACK
-----------------------
----------------------------------------------------------------
FILE: $TET_ROOT/vsm4/src/mvslib/resources/mvsTstCtRscs.c
void mvsTestCreateResources(widget_class_info, parent_info)
{
.
for (j=0; j<num_enums; j++) {
/* These widgets require a special hierarchy to be in
existance when they are created. Since the instance
provides the mechanism for creating *only* the widget,
create the rest of the needed hierarchy here */
#ifdef MOTIF_20
if((widget_class_info == iXmCascadeButtonWidgetClass) ||
(widget_class_info == iXmCascadeButtonGadgetClass) ||
(widget_class_info == iXmPulldownMenuWidgetClass)) {
widget_info = mvsCreateHierarchy(widget_class_info,
parent_info,
(Arg *)args,1);
#else
if((widget_class_info == iXmCascadeButtonWidgetClass) ||
(widget_class_info == iXmCascadeButtonGadgetClass)) {
widget_info = mvsCreateHierarchy(widget_class_info,
parent_info,
(Arg *)args,1);
#endif /* MOTIF_20 */
}
else {
/****************************************************/
/* TRACE THIS CALL TO GET TO PROBLEM. */
/****************************************************/
widget_info = mvsCreateWidget(widget_class_info,
parent_info, UseCommonArgs,
(Arg *)args,1);
}
.
}
----------------------------------------------------------------
FILE: $TET_ROOT/vsm4/src/mvslib/widgets/mvsCreateWid.c
MvsWidgetInfoRecord *mvsCreateWidget(widget_class_info, parent_info, use_common,
args_in, nargs_in)
{
/****************************************************/
/* TRACE THIS CALL TO GET TO PROBLEM. */
/****************************************************/
return(mvsCreateManageWidget(widget_class_info, parent_info, use_common,
args_in, nargs_in, TRUE));
} /* End mvsCreateWidget() */
----------------------------------------------------------------
FILE: $TET_ROOT/vsm4/src/mvslib/widgets/mvsCreateWid.c
MvsWidgetInfoRecord *mvsCreateManageWidget(widget_class_info, parent_info,
use_common, args_in, nargs_in, manage)
{
.
if(created_widget != save_widget) {
new_info = mvsWidgetToWidgetInfo(save_widget);
if(new_info == (MvsWidgetInfoRecord *)NULL) {
switch(mvsGetClassCode(save_widget)) {
case mvsXmDialogShellWidgetClass:
convenience_class = iXmDialogShellWidgetClass;
break;
case mvsXmMenuShellWidgetClass:
convenience_class = iXmMenuShellWidgetClass;
break;
default:
convenience_class = iXmScrolledWindowWidgetClass;
break;
}
/****************************************************/
/* TRACE THIS CALL TO GET TO PROBLEM. */
/****************************************************/
new_info = mvsSetupNewWidgetInfo(parent_info,save_widget,
convenience_class);
}
}
.
}
----------------------------------------------------------------
FILE: $TET_ROOT/vsm4/src/mvslib/widgets/SetupWidInfo.c
MvsWidgetInfoRecord *mvsSetupNewWidgetInfo(parent_info,widget,class_info)
{
.
if (mvsGetVisualMode() == VISUAL_MODE_GENERATE_PIXMAPS) {
.
}
else {
for (j=0; j<num_res_colors; j++) {
#ifdef MOTIF_20
if ( (mvs_resources[res_color_ref[j]] != XmDEFAULT_SELECT_COLOR)
&& (mvs_resources[res_color_ref[j]] != XmREVERSED_GROUND_COLORS)) {
#endif /* MOTIF_20 */
/*************************************************/
/* THIS IS WHERE THE PROBLEM IS. */
/*************************************************/
if (!mvsAllocColor(mvs_resources[res_color_ref[j]])) {
msg_warning("mvsAllocColor() failed in mvsSetupNewWidgetInfo()0);
}
#ifdef MOTIF_20
}
#endif /* MOTIF_20 */
}
}
.
}
VALUES OBSERVED BEFORE X SERVER ERROR MESSAGE
---------------------------------------------
j = 0
ref_color_ref[0] = 2
mvs_resources[2] = 8
j = 1
ref_color_ref[1] = 4
mvs_resources[4] = 1
j = 2
ref_color_ref[2] = 7
mvs_resources[7] = 10
j = 3
ref_color_ref[3] = 12
mvs_resources[12] = 1
j = 4
ref_color_ref[4] = 14
mvs_resources[14] = 1
j = 5
ref_color_ref[5] = 32
mvs_resources[32] = 16777219 <---- SEEMS THIS CAUSED THE PROBLEMTest Output
REQUEST/PROBLEM DESCRIPTION:
520|1412 2 23164 1 1|VSM4TESTSUITE PURPOSE 2
520|1412 2 23164 1 2|The members of the resource set for the XmScrolledList
520|1412 2 23164 1 3|widget which are defined in the Motif Toolkit API
520|1412 2 23164 1 4|specification as having access mode 'C' shall be settable
520|1412 2 23164 1 5|at widget creation time.
520|1412 2 23164 1 6|TEST: Create with XmNautomaticSelection='False'
520|1412 2 23164 1 7|TEST: Create with XmNautomaticSelection='True'
520|1412 2 23164 1 8|TEST: Create with XmNbackground='1'
520|1412 2 23164 1 9|TEST: Create with XmNbackground='0'
520|1412 2 23164 1 10|TEST: Create with XmNbackground='18'
520|1412 2 23164 1 11|TEST: Create with XmNbackground='19'
520|1412 2 23164 1 12|TEST: Create with XmNbackground='25'
520|1412 2 23164 1 13|TEST: Create with XmNbackground='29'
520|1412 2 23164 1 14|TEST: Create with XmNbackgroundPixmap='16777219'
520|1412 2 23164 1 15|TEST: Create with XmNbackgroundPixmap='16777220'
520|1412 2 23164 1 16|TEST: Create with XmNbackgroundPixmap='16777221'
520|1412 2 23164 1 17|TEST: Create with XmNbackgroundPixmap='16777222'
520|1412 2 23164 1 18|TEST: Create with XmNbackgroundPixmap='16777223'
520|1412 2 23164 1 19|TEST: Create with XmNbackgroundPixmap='16777224'
520|1412 2 23164 1 20|TEST: Create with XmNbackgroundPixmap='16777225'
520|1412 2 23164 1 21|TEST: Create with XmNbackgroundPixmap='16777226'
520|1412 2 23164 1 22|TEST: Create with XmNbackgroundPixmap='16777227'
520|1412 2 23164 1 23|TEST: Create with XmNborderColor='33'
520|1412 2 23164 1 24|TEST: Create with XmNborderColor='34'
520|1412 2 23164 1 25|TEST: Create with XmNborderColor='35'
520|1412 2 23164 1 26|TEST: Create with XmNborderColor='36'
520|1412 2 23164 1 27|TEST: Create with XmNborderColor='37'
520|1412 2 23164 1 28|TEST: Create with XmNborderColor='38'
520|1412 2 23164 1 29|TEST: Create with XmNborderPixmap='16777219'
520|1412 2 23164 1 30|TEST: Create with XmNborderPixmap='16777220'
520|1412 2 23164 1 31|TEST: Create with XmNborderPixmap='16777221'
520|1412 2 23164 1 32|TEST: Create with XmNborderPixmap='16777222'
520|1412 2 23164 1 33|TEST: Create with XmNborderPixmap='16777223'
520|1412 2 23164 1 34|TEST: Create with XmNborderPixmap='16777224'
520|1412 2 23164 1 35|TEST: Create with XmNborderPixmap='16777225'
520|1412 2 23164 1 36|TEST: Create with XmNborderPixmap='16777226'
520|1412 2 23164 1 37|TEST: Create with XmNborderPixmap='16777227'
520|1412 2 23164 1 38|TEST: Create with XmNborderWidth='1'
520|1412 2 23164 1 39|TEST: Create with XmNborderWidth='2'
520|1412 2 23164 1 40|TEST: Create with XmNborderWidth='3'
520|1412 2 23164 1 41|TEST: Create with XmNborderWidth='10'
520|1412 2 23164 1 42|TEST: Create with XmNborderWidth='50'
520|1412 2 23164 1 43|TEST: Create with XmNbottomShadowColor='39'
520|1412 2 23164 1 44|TEST: Create with XmNbottomShadowColor='40'
520|1412 2 23164 1 45|TEST: Create with XmNbottomShadowColor='41'
520|1412 2 23164 1 46|TEST: Create with XmNbottomShadowColor='42'
520|1412 2 23164 1 47|TEST: Create with XmNbottomShadowColor='43'
520|1412 2 23164 1 48|TEST: Create with XmNbottomShadowColor='44'
520|1412 2 23164 1 49|TEST: Create with XmNbottomShadowPixmap='16777219'
520|1412 2 23164 1 50|TEST: Create with XmNbottomShadowPixmap='16777220'
520|1412 2 23164 1 51|TEST: Create with XmNbottomShadowPixmap='16777221'
520|1412 2 23164 1 52|TEST: Create with XmNbottomShadowPixmap='16777222'
520|1412 2 23164 1 53|TEST: Create with XmNbottomShadowPixmap='16777223'
520|1412 2 23164 1 54|TEST: Create with XmNbottomShadowPixmap='16777224'
520|1412 2 23164 1 55|TEST: Create with XmNbottomShadowPixmap='16777225'
520|1412 2 23164 1 56|TEST: Create with XmNbottomShadowPixmap='16777226'
520|1412 2 23164 1 57|TEST: Create with XmNbottomShadowPixmap='16777227'
520|1412 2 23164 1 58|TEST: Create with XmNforeground='44'
520|1412 2 23164 1 59|TEST: Create with XmNforeground='45'
520|1412 2 23164 1 60|TEST: Create with XmNforeground='46'
520|1412 2 23164 1 61|TEST: Create with XmNforeground='47'
520|1412 2 23164 1 62|TEST: Create with XmNforeground='48'
520|1412 2 23164 1 63|TEST: Create with XmNforeground='49'
520|1412 2 23164 1 64|TEST: Create with XmNhighlightColor='50'
520|1412 2 23164 1 65|TEST: Create with XmNhighlightColor='51'
520|1412 2 23164 1 66|TEST: Create with XmNhighlightColor='52'
520|1412 2 23164 1 67|TEST: Create with XmNhighlightColor='53'
520|1412 2 23164 1 68|TEST: Create with XmNhighlightColor='54'
520|1412 2 23164 1 69|TEST: Create with XmNhighlightColor='55'
520|1412 2 23164 1 70|TEST: Create with XmNhighlightOnEnter='True'
520|1412 2 23164 1 71|TEST: Create with XmNhighlightOnEnter='False'
520|1412 2 23164 1 72|TEST: Create with XmNhighlightPixmap='16777219'
520|1412 2 23164 1 73|TEST: Create with XmNhighlightPixmap='16777220'
520|1412 2 23164 1 74|TEST: Create with XmNhighlightPixmap='16777221'
520|1412 2 23164 1 75|TEST: Create with XmNhighlightPixmap='16777222'
520|1412 2 23164 1 76|TEST: Create with XmNhighlightPixmap='16777223'
520|1412 2 23164 1 77|TEST: Create with XmNhighlightPixmap='16777224'
520|1412 2 23164 1 78|TEST: Create with XmNhighlightPixmap='16777225'
520|1412 2 23164 1 79|TEST: Create with XmNhighlightPixmap='16777226'
520|1412 2 23164 1 80|TEST: Create with XmNhighlightPixmap='16777227'
520|1412 2 23164 1 81|TEST: Create with XmNhighlightThickness='1'
520|1412 2 23164 1 82|TEST: Create with XmNhighlightThickness='2'
520|1412 2 23164 1 83|TEST: Create with XmNhighlightThickness='3'
520|1412 2 23164 1 84|TEST: Create with XmNhighlightThickness='10'
520|1412 2 23164 1 85|TEST: Create with XmNhighlightThickness='50'
520|1412 2 23164 1 86|TEST: Create with XmNinitialResourcesPersistent='True'
520|1412 2 23164 1 87|TEST: Create with XmNinitialResourcesPersistent='False'
520|1412 2 23164 1 88|TEST: Create with XmNlistMarginHeight='1'
520|1412 2 23164 1 89|TEST: Create with XmNlistMarginHeight='2'
520|1412 2 23164 1 90|TEST: Create with XmNlistMarginHeight='3'
520|1412 2 23164 1 91|TEST: Create with XmNlistMarginHeight='10'
520|1412 2 23164 1 92|TEST: Create with XmNlistMarginHeight='50'
520|1412 2 23164 1 93|TEST: Create with XmNlistMarginWidth='1'
520|1412 2 23164 1 94|TEST: Create with XmNlistMarginWidth='2'
520|1412 2 23164 1 95|TEST: Create with XmNlistMarginWidth='3'
520|1412 2 23164 1 96|TEST: Create with XmNlistMarginWidth='10'
520|1412 2 23164 1 97|TEST: Create with XmNlistMarginWidth='50'
520|1412 2 23164 1 98|TEST: Create with XmNlistSizePolicy='1'
520|1412 2 23164 1 99|TEST: Create with XmNlistSizePolicy='0'
520|1412 2 23164 1 100|TEST: Create with XmNlistSizePolicy='2'
520|1412 2 23164 1 101|TEST: Create with XmNlistSpacing='1'
520|1412 2 23164 1 102|TEST: Create with XmNlistSpacing='2'
520|1412 2 23164 1 103|TEST: Create with XmNlistSpacing='3'
520|1412 2 23164 1 104|TEST: Create with XmNlistSpacing='10'
520|1412 2 23164 1 105|TEST: Create with XmNlistSpacing='50'
520|1412 2 23164 1 106|TEST: Create with XmNmappedWhenManaged='True'
520|1412 2 23164 1 107|TEST: Create with XmNmappedWhenManaged='False'
520|1412 2 23164 1 108|TEST: Create with XmNnavigationType='0'
520|1412 2 23164 1 109|TEST: Create with XmNnavigationType='1'
520|1412 2 23164 1 110|TEST: Create with XmNnavigationType='2'
520|1412 2 23164 1 111|TEST: Create with XmNnavigationType='3'
520|1412 2 23164 1 112|TEST: Create with XmNselectionPolicy='0'
520|1412 2 23164 1 113|TEST: Create with XmNselectionPolicy='1'
520|1412 2 23164 1 114|TEST: Create with XmNselectionPolicy='2'
520|1412 2 23164 1 115|TEST: Create with XmNselectionPolicy='3'
520|1412 2 23164 1 116|TEST: Create with XmNsensitive='True'
520|1412 2 23164 1 117|TEST: Create with XmNsensitive='False'
520|1412 2 23164 1 118|TEST: Create with XmNshadowThickness='1'
520|1412 2 23164 1 119|TEST: Create with XmNshadowThickness='2'
520|1412 2 23164 1 120|TEST: Create with XmNshadowThickness='3'
520|1412 2 23164 1 121|TEST: Create with XmNshadowThickness='10'
520|1412 2 23164 1 122|TEST: Create with XmNshadowThickness='50'
520|1412 2 23164 1 123|TEST: Create with XmNtopItemPosition='1'
520|1412 2 23164 1 124|TEST: Create with XmNtopItemPosition='3'
520|1412 2 23164 1 125|TEST: Create with XmNtopShadowColor='56'
520|1412 2 23164 1 126|TEST: Create with XmNtopShadowColor='57'
520|1412 2 23164 1 127|TEST: Create with XmNtopShadowColor='58'
520|1412 2 23164 1 128|TEST: Create with XmNtopShadowColor='59'
520|1412 2 23164 1 129|TEST: Create with XmNtopShadowColor='60'
520|1412 2 23164 1 130|TEST: Create with XmNtopShadowColor='61'
80|1412 1 21:19:43|TC End
X Error of failed request: BadValue (integer parameter out of range for operation)
Major opcode of failed request: 91 (X_QueryColors)
Value in failed request: 0x1000003
Serial number of failed request: 48473
Current serial number in output stream: 48473Review Information
Review Type TSMA Review Start Date null Completed null Status Complete Review Recommendation No Resolution Given Review Response
We agree with the applicant and recommend that a waiver be granted for test purposes
2, 3 and 4 based on a test suite deficiency.
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 2203
- List All PRs
- Search Reports
- Email the System Administrator
- View the The Open Brand Interpretations Database User Manual
Contact the Certification Authority