Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLakshmi Shanmugam2020-07-23 07:04:57 +0000
committerLakshmi Shanmugam2020-07-23 07:42:16 +0000
commit504f1fc675f68e03693097550591c1228b1c81fa (patch)
tree97de98afcac48fd7b92cdaae01528607e3ca7085
parentb95adfc813d504c9566038b7fc88fa09772d19cf (diff)
downloadeclipse.platform.swt-504f1fc675f68e03693097550591c1228b1c81fa.tar.gz
eclipse.platform.swt-504f1fc675f68e03693097550591c1228b1c81fa.tar.xz
eclipse.platform.swt-504f1fc675f68e03693097550591c1228b1c81fa.zip
Bug 565434 - Error launching Chromium style browser
Print library count after build. Update to 35. Change-Id: I439f5f17730c7b9087f96a82c2a5b1d92243cd6d
-rw-r--r--bundles/org.eclipse.swt/buildSWT.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/buildSWT.xml b/bundles/org.eclipse.swt/buildSWT.xml
index 7d41f2b369..d4c12ea185 100644
--- a/bundles/org.eclipse.swt/buildSWT.xml
+++ b/bundles/org.eclipse.swt/buildSWT.xml
@@ -79,19 +79,21 @@
<target name="check_fragment_libraries" depends="get_version">
<echo>Checking ${fragment}</echo>
<property name="checkdir" value="~/build/check_libraries"/>
- <property name="library_count" value="33"/>
+ <property name="library_count" value="35"/>
<property name="fragment" value=""/>
<fileset id="match" dir="${repo.bin}/bundles/${fragment}" includes="**/org.eclipse.swt.gtk.linux.ppc64le/**, **/org.eclipse.swt.gtk.linux.x86_64/**, **/org.eclipse.swt.win32.win32.x86_64/**, **/org.eclipse.swt.cocoa.macosx.*/**, **/org.eclipse.swt.browser.chromium.gtk.linux.x86_64/**, **/org.eclipse.swt.browser.chromium.win32.win32.x86_64/**, **/org.eclipse.swt.browser.chromium.cocoa.macosx.x86_64/**">
<filename regex="[0-9][0-9][0-9][0-9]"/>
<filename regex="${swt_version}"/>
<exclude name="**/.git/**"/>
</fileset>
+ <echo>Matched files ${toString:match}</echo>
<fileset id="not_match" dir="${repo.bin}/bundles/${fragment}" includes="**/org.eclipse.swt.gtk.linux.ppc64le/**, **/org.eclipse.swt.gtk.linux.x86_64/**, **/org.eclipse.swt.win32.win32.x86_64/**, **/org.eclipse.swt.cocoa.macosx.*/**, **/org.eclipse.swt.browser.chromium.gtk.linux.x86_64/chromium-*/**, **/org.eclipse.swt.browser.chromium.win32.win32.x86_64/chromium-*/**, **/org.eclipse.swt.browser.chromium.cocoa.macosx.x86_64/chromium-*/**">
<filename regex="[0-9][0-9][0-9][0-9]"/>
<filename regex="${swt_version}" negate="true"/>
<exclude name="**/.git/**"/>
<exclude name="**/chromium.properties"/>
</fileset>
+ <property name="match_text" refid="not_match"/>
<property name="not_match_text" refid="not_match"/>
<resourcecount refid="match" property="match_count"/>
<resourcecount refid="not_match" property="not_match_count"/>
@@ -104,7 +106,7 @@
</and>
</not>
</condition>
- <fail if="m_fail" message="Failed. Expecting ${library_count} and 0. Old libraries: ${not_match_text}"/>
+ <fail if="m_fail" message="Failed. Expecting ${library_count} and 0. New libraries: ${match_text}. Old libraries: ${not_match_text}"/>
<echo>Success</echo>
</target>

Back to the top