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

Done

Dani


                                                                           
             Olivier Thomann                                               
             <Olivier_Thomann@                                             
             ca.ibm.com>                                                To 
             Sent by:                  "Eclipse platform release           
             platform-releng-d         engineering list."                  
             ev-bounces@eclips         <platform-releng-dev@xxxxxxxxxxx>   
             e.org                                                      cc 
                                                                           
                                                                   Subject 
             22.05.2006 22:19          Re: [platform-releng-dev]           
                                       [eclipse-build]Build                
                                       N20060522-0010    (Timestamp:       
             Please respond to         200605220010):Automated       JUnit 
             "Eclipse platform         testing complete.       Test        
                  release              failures/errors occurred.           
                engineering                                                
                  list."                                                   
             <platform-releng-                                             
             dev@xxxxxxxxxxx>                                              
                                                                           
                                                                           




Here is the patch for releng failures.
Could someone with the commit rights in platform.doc.isv please commit it?

Olivier




eclipse-releng@xxxxxxxxxxx
Sent by: platform-releng-dev-bounces@xxxxxxxxxxx
2006-05-22 08:31
Please respond to
"Eclipse platform release engineering list."


To
platform-releng-dev@xxxxxxxxxxx
cc

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






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

org.eclipse.jdt.debug.tests_linux.gtk.x86_5.0
org.eclipse.releng.tests_linux.gtk.x86
org.eclipse.releng.tests_linux.gtk.x86_5.0
org.eclipse.releng.tests_win32.win32.x86

HTTP Download:


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

FTP Download:

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

                 or

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

(See attached file: patch_chkpii.txt)
_______________________________________________
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.platform.doc.isv
Index: guide/resAdv_efs_api.htm
===================================================================
RCS file: /cvsroot/eclipse/org.eclipse.platform.doc.isv/guide/resAdv_efs_api.htm,v
retrieving revision 1.4
diff -u -r1.4 resAdv_efs_api.htm
--- guide/resAdv_efs_api.htm	19 May 2006 21:11:07 -0000	1.4
+++ guide/resAdv_efs_api.htm	22 May 2006 20:10:08 -0000
@@ -64,7 +64,7 @@
 <pre>
 	IFileStore store = ...//some file store
 	IFileInfo info = store.fetchInfo();
-	if (info.exists() && info.isDirectory()) {
+	if (info.exists() &amp;&amp; info.isDirectory()) {
 		info.setAttribute(EFS.ATTRIBUTE_READ_ONLY, true);
 		store.putInfo(info, EFS.SET_ATTRIBUTES, null);
 	}

Back to the top