Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCurtis Windatt2013-03-26 20:55:30 +0000
committerCurtis Windatt2013-03-26 20:55:30 +0000
commit64713ec8995f094c117062daf6267459bf5eefc4 (patch)
treef419fd492e6a51dca7ec538201bd2b855a1c7285
parentda63be8213cd8b26c57258c12f7bedfa6f8b3b68 (diff)
downloadeclipse.pde.build-64713ec8995f094c117062daf6267459bf5eefc4.tar.gz
eclipse.pde.build-64713ec8995f094c117062daf6267459bf5eefc4.tar.xz
eclipse.pde.build-64713ec8995f094c117062daf6267459bf5eefc4.zip
Bug 401572... Motif no longer available in equinox launcher
-rw-r--r--org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/p2/PublishingTests.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/p2/PublishingTests.java b/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/p2/PublishingTests.java
index 8226d5e4..f2ac6653 100644
--- a/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/p2/PublishingTests.java
+++ b/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/p2/PublishingTests.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2008, 2012 IBM Corporation and others. All rights reserved.
+ * Copyright (c) 2008, 2013 IBM Corporation and others. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 which accompanies this distribution,
* and is available at http://www.eclipse.org/legal/epl-v10.html
@@ -445,8 +445,6 @@ public class PublishingTests extends P2TestCase {
String fileName = originalExecutable.getName();
String version = fileName.substring(fileName.indexOf('_') + 1);
Set entries = new HashSet();
- entries.add("launcher");
- assertZipContents(buildFolder.getFolder("buildRepo/binary"), executable + "_root.motif.aix.ppc_" + version, entries);
// Linux zips contain launcher and about.html (libCairo no longer packaged in the delta pack (bug 354978))
// entries.add("libcairo-swt.so");
@@ -454,6 +452,7 @@ public class PublishingTests extends P2TestCase {
// entries.add("about_files/mpl-v11.txt");
// entries.add("about_files/pixman-licenses.txt");
// entries.add("about_files/");
+ entries.add("launcher");
entries.add("about.html");
assertZipContents(buildFolder.getFolder("buildRepo/binary"), executable + "_root.gtk.linux.x86_" + version, entries);
@@ -464,7 +463,7 @@ public class PublishingTests extends P2TestCase {
entries.add("Eclipse.app/Contents/MacOS/");
entries.add("Eclipse.app/Contents/MacOS/eclipse.ini");
entries.add("Eclipse.app/Contents/MacOS/launcher");
- assertZipContents(buildFolder.getFolder("buildRepo/binary"), executable + "_root.carbon.macosx.ppc_" + version, entries);
+ assertZipContents(buildFolder.getFolder("buildRepo/binary"), executable + "_root.cocoa.macosx.x86_" + version, entries);
// Windows zips just contain the launcher

Back to the top