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 N20060422-0010 (Timestamp: 200604220010):Automated JUnit testing complete. Test failures/errors occurred.


The CHKPII failure in "org.junit4/junit-4.0src.zip" happened because I had to rename this file
(PDE importer did not work with original archive name "junit-4.0-src.jar").

Could the releng team please exclude the new archive name from CHKPII testing?

Thanks,
Markus



Olivier Thomann <Olivier_Thomann@xxxxxxxxxx>
Sent by: platform-releng-dev-bounces@xxxxxxxxxxx

2006-04-22 19:52

Please respond to
"Eclipse platform release engineering list." <platform-releng-dev@xxxxxxxxxxx>

To
"Eclipse platform release engineering list." <platform-releng-dev@xxxxxxxxxxx>
cc
Subject
Re: [platform-releng-dev] [eclipse-build]Build        N20060422-0010        (Timestamp: 200604220010):Automated        JUnit testing complete.        Test failures/errors occurred.





Errors in releng are due to:
1) javadoc warnings:
/builds/N200604220010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.core.runtime/src/org/eclipse/core/runtime/Plugin.java:498:
warning - Tag @link: can't find find(Bundle, IPath, Map) in
org.eclipse.core.runtime.Plugin
/builds/N200604220010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.core.runtime/src/org/eclipse/core/runtime/Plugin.java:498:
warning - Tag @link: can't find find(Bundle, IPath, Map) in
org.eclipse.core.runtime.Plugin
/builds/N200604220010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.core.runtime/src/org/eclipse/core/runtime/Plugin.java:498:
warning - Tag @link: can't find find(Bundle, IPath, Map) in
org.eclipse.core.runtime.Plugin
/builds/N200604220010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.core.runtime/src/org/eclipse/core/runtime/Plugin.java:498:
warning - Tag @link: can't find find(Bundle, IPath, Map) in
org.eclipse.core.runtime.Plugin

Chkpii errors:
ECLIPSE\PLUGINS\ORG.ECLIPSE.JDT.SOURCE_3.2.0.N20060422-0010-6K_HJ6IEA_-HHWH\SRC\ORG.JUNIT4_1.0.0\JUNIT-4.0SRC_ZIP\
 BUILD.XML     XML-10      962   '<?xml' declaration must be defined in
line 1, column 1.  Line: 1
                           969   (W) XML tag attribute (windowtitle) may
contain translatable text which cannot be translated.  Line: 59
                           973   '<?xml' declaration must be the first
XML statement.  Line: 1

Chkpii errors can be fixed by adding this line at the beginning of the
build.xml file
<?xml version="1.0" encoding="UTF-8"?>

This patch is fixing the javadoc warnings and other warnings (missing <p>
in a schema file, empty block and unnecessary else statements).



Olivier




eclipse-releng@xxxxxxxxxxx
Sent by: platform-releng-dev-bounces@xxxxxxxxxxx
2006-04-22 07:46
Please respond to
"Eclipse platform release engineering list."


To
platform-releng-dev@xxxxxxxxxxx
cc

Subject
[platform-releng-dev] [eclipse-build]Build N20060422-0010 (Timestamp:
200604220010):Automated JUnit testing complete. Test failures/errors
occurred.






Build N20060422-0010 (Timestamp: 200604220010):  Automated JUnit testing
is complete.  Test failures/errors occurred in the following:

org.eclipse.ant.tests.ui_linux.gtk.x86
org.eclipse.jdt.debug.tests_linux.gtk.x86
org.eclipse.jdt.debug.tests_macosx.carbon.ppc
org.eclipse.releng.tests_linux.gtk.x86
org.eclipse.releng.tests_macosx.carbon.ppc
org.eclipse.releng.tests_win32.win32.x86
org.eclipse.team.tests.cvs_linux.gtk.x86
org.eclipse.team.tests.cvs_macosx.carbon.ppc
org.eclipse.team.tests.cvs_win32.win32.x86

HTTP Download:

               
http://download.eclipse.org/eclipse/downloads/drops/N20060422-0010

FTP Download:

                user: anonymous
                password: (e-mail address or leave blank)
                server:  download.eclipse.org
                cd to directory:  N20060422-0010

                or

                ftp://download.eclipse.org/N20060422-0010
_______________________________________________
platform-releng-dev mailing list
platform-releng-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/platform-releng-dev

_______________________________________________
platform-releng-dev mailing list
platform-releng-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/platform-releng-dev

### Eclipse Workspace Patch 1.0
#P org.eclipse.core.runtime
Index: schema/contentTypes.exsd
===================================================================
RCS file: /cvsroot/eclipse/org.eclipse.core.runtime/schema/contentTypes.exsd,v
retrieving revision 1.17
diff -u -r1.17 contentTypes.exsd
--- schema/contentTypes.exsd	21 Nov 2005 23:21:20 -0000	1.17
+++ schema/contentTypes.exsd	22 Apr 2006 17:44:15 -0000
@@ -297,6 +297,7 @@
 &lt;/pre&gt;
 &lt;/p&gt;
 Here is an example of a content type that defines properties:
+&lt;p&gt;
 &lt;pre&gt;
    &lt;extension point=&quot;org.eclipse.core.runtime.contentTypes&quot;&gt; 
       &lt;content-type id=&quot;MyContentType&quot;
Index: src/org/eclipse/core/internal/runtime/URLTool.java
===================================================================
RCS file: /cvsroot/eclipse/org.eclipse.core.runtime/src/org/eclipse/core/internal/runtime/URLTool.java,v
retrieving revision 1.15
diff -u -r1.15 URLTool.java
--- src/org/eclipse/core/internal/runtime/URLTool.java	4 Apr 2006 20:55:34 -0000	1.15
+++ src/org/eclipse/core/internal/runtime/URLTool.java	22 Apr 2006 17:44:15 -0000
@@ -137,16 +137,13 @@
 		if (lastSlashIndex == -1) {
 			if (isDirectory) {
 				return file.substring(0, len - 1);
-			} else {
-				return file;
-			}
-		} else {
-			if (isDirectory) {
-				return file.substring(lastSlashIndex + 1, len - 1);
-			} else {
-				return file.substring(lastSlashIndex + 1, len);
 			}
+			return file;
+		}
+		if (isDirectory) {
+			return file.substring(lastSlashIndex + 1, len - 1);
 		}
+		return file.substring(lastSlashIndex + 1, len);
 	}
 
 	/**
Index: src/org/eclipse/core/runtime/Plugin.java
===================================================================
RCS file: /cvsroot/eclipse/org.eclipse.core.runtime/src/org/eclipse/core/runtime/Plugin.java,v
retrieving revision 1.100
diff -u -r1.100 Plugin.java
--- src/org/eclipse/core/runtime/Plugin.java	21 Apr 2006 15:52:58 -0000	1.100
+++ src/org/eclipse/core/runtime/Plugin.java	22 Apr 2006 17:44:16 -0000
@@ -482,7 +482,7 @@
 	 * must be specified relative to this plug-in's installation location.
 	 * Optionally, the path specified may contain $arg$ path elements that can 
 	 * be used as substitution arguments.  If this option is used then the $arg$ 
-	 * path elements are processed in the same way as {@link #find(Bundle, IPath, Map)}.
+	 * path elements are processed in the same way as {@link FileLocator#find(Bundle, IPath, Map)}.
 	 * <p>
 	 * The caller must close the returned stream when done.
 	 * </p>
@@ -622,6 +622,7 @@
 	 * org.eclipse.core.runtime.compatibility plug-in.
 	 */
 	public void startup() throws CoreException {
+		// do nothing
 	}
 
 	/**

Back to the top