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.

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

### 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