Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-releng-dev] [eclipse-build]Build N20060304-0010 (Timestamp: 200603040010):Automated JUnit testing complete. Test failures/errors occurred.

platform-releng-dev-bounces@xxxxxxxxxxx wrote on 2006-03-04 05:59:02:

> Build N20060304-0010 (Timestamp: 200603040010):  Automated JUnit 
> testing is complete.  Test failures/errors occurred in the following: 
> 
> org.eclipse.jdt.core.tests.builder_linux.gtk.x86
> org.eclipse.jdt.core.tests.builder_macosx.carbon.ppc
> org.eclipse.jdt.core.tests.builder_win32.win32.x86
The test suite has been renamed without changing the name in the test.xml 
file.
This is fixed and released in HEAD. Next build should be ok.

> org.eclipse.releng.tests_linux.gtk.x86
> org.eclipse.releng.tests_macosx.carbon.ppc
> org.eclipse.releng.tests_win32.win32.x86
Patch attached. 

Or use the second patch that also fixes other warnings (unnecessary 
semi-colon, unused imports).


Olivier
### Eclipse Workspace Patch 1.0
#P org.eclipse.swt
Index: Eclipse SWT/win32/org/eclipse/swt/widgets/ToolTip.java
===================================================================
RCS file: /cvsroot/eclipse/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolTip.java,v
retrieving revision 1.5
diff -u -r1.5 ToolTip.java
--- Eclipse SWT/win32/org/eclipse/swt/widgets/ToolTip.java	3 Mar 2006 21:16:07 -0000	1.5
+++ Eclipse SWT/win32/org/eclipse/swt/widgets/ToolTip.java	4 Mar 2006 18:52:01 -0000
@@ -66,9 +66,9 @@
  *    <li>ERROR_INVALID_SUBCLASS - if this class is not an allowed subclass</li>
  * </ul>
  *
- * @see SWT#ERROR
- * @see SWT#INFORMATION
- * @see SWT#WARNING
+ * @see SWT#ICON_ERROR
+ * @see SWT#ICON_INFORMATION
+ * @see SWT#ICON_WARNING
  * @see Widget#checkSubclass
  * @see Widget#getStyle
  */
### Eclipse Workspace Patch 1.0
#P org.eclipse.swt
Index: Eclipse SWT/win32/org/eclipse/swt/widgets/ExpandBar.java
===================================================================
RCS file: /cvsroot/eclipse/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ExpandBar.java,v
retrieving revision 1.8
diff -u -r1.8 ExpandBar.java
--- Eclipse SWT/win32/org/eclipse/swt/widgets/ExpandBar.java	28 Feb 2006 23:30:09 -0000	1.8
+++ Eclipse SWT/win32/org/eclipse/swt/widgets/ExpandBar.java	4 Mar 2006 18:54:46 -0000
@@ -396,7 +396,7 @@
 	info.cbSize = SCROLLINFO.sizeof;
 	info.fMask = OS.SIF_RANGE | OS.SIF_PAGE | OS.SIF_POS;
 	info.nMin = 0;
-	info.nMax = maxHeight;;
+	info.nMax = maxHeight;
 	info.nPage = height;
 	info.nPos = Math.min (yCurrentScroll, info.nMax);
 	if (info.nPage != 0) info.nPage++;
Index: Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java
===================================================================
RCS file: /cvsroot/eclipse/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java,v
retrieving revision 1.306
diff -u -r1.306 Table.java
--- Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java	2 Mar 2006 20:39:08 -0000	1.306
+++ Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java	4 Mar 2006 18:54:48 -0000
@@ -1490,7 +1490,7 @@
 		TOOLINFO lpti = new TOOLINFO ();
 		lpti.cbSize = TOOLINFO.sizeof;
 		lpti.uId = column.id;
-		lpti.hwnd = OS.SendMessage (handle, OS.LVM_GETHEADER, 0, 0);;
+		lpti.hwnd = OS.SendMessage (handle, OS.LVM_GETHEADER, 0, 0);
 		OS.SendMessage (headerToolTipHandle, OS.TTM_DELTOOL, 0, lpti);
 	}
 }
Index: Eclipse SWT/win32/org/eclipse/swt/widgets/TrayItem.java
===================================================================
RCS file: /cvsroot/eclipse/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TrayItem.java,v
retrieving revision 1.23
diff -u -r1.23 TrayItem.java
--- Eclipse SWT/win32/org/eclipse/swt/widgets/TrayItem.java	3 Mar 2006 22:42:16 -0000	1.23
+++ Eclipse SWT/win32/org/eclipse/swt/widgets/TrayItem.java	4 Mar 2006 18:54:49 -0000
@@ -262,7 +262,7 @@
 						if (isDisposed()) return 0;
 					}
 				}
-			};
+			}
 			break;
 	}
 	display.wakeThread ();
Index: Eclipse SWT/win32/org/eclipse/swt/widgets/ToolTip.java
===================================================================
RCS file: /cvsroot/eclipse/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolTip.java,v
retrieving revision 1.5
diff -u -r1.5 ToolTip.java
--- Eclipse SWT/win32/org/eclipse/swt/widgets/ToolTip.java	3 Mar 2006 21:16:07 -0000	1.5
+++ Eclipse SWT/win32/org/eclipse/swt/widgets/ToolTip.java	4 Mar 2006 18:54:49 -0000
@@ -66,9 +66,9 @@
  *    <li>ERROR_INVALID_SUBCLASS - if this class is not an allowed subclass</li>
  * </ul>
  *
- * @see SWT#ERROR
- * @see SWT#INFORMATION
- * @see SWT#WARNING
+ * @see SWT#ICON_ERROR
+ * @see SWT#ICON_INFORMATION
+ * @see SWT#ICON_WARNING
  * @see Widget#checkSubclass
  * @see Widget#getStyle
  */
Index: Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/StyledTextDragAndDropEffect.java
===================================================================
RCS file: /cvsroot/eclipse/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/StyledTextDragAndDropEffect.java,v
retrieving revision 1.4
diff -u -r1.4 StyledTextDragAndDropEffect.java
--- Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/StyledTextDragAndDropEffect.java	2 Mar 2006 18:23:16 -0000	1.4
+++ Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/StyledTextDragAndDropEffect.java	4 Mar 2006 18:54:46 -0000
@@ -13,7 +13,6 @@
 
 import org.eclipse.swt.custom.*;
 import org.eclipse.swt.graphics.*;
-import org.eclipse.swt.widgets.*;
 import org.eclipse.swt.internal.win32.*;
 
 class StyledTextDragAndDropEffect extends DragAndDropEffect {

Back to the top