Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCurtis Windatt2014-09-11 18:30:25 +0000
committerCurtis Windatt2014-09-11 18:30:25 +0000
commite5e1d807cf59d4a4239b7c50c8a8ab814fe8d7e9 (patch)
treed12ec36719405b829a462ae28768a8560ce12e7a
parent94a206deb474da95bfa26d17d4c513e10e57ce0e (diff)
downloadeclipse.pde.build-e5e1d807cf59d4a4239b7c50c8a8ab814fe8d7e9.tar.gz
eclipse.pde.build-e5e1d807cf59d4a4239b7c50c8a8ab814fe8d7e9.tar.xz
eclipse.pde.build-e5e1d807cf59d4a4239b7c50c8a8ab814fe8d7e9.zip
Bug 443655 - 2 Junit failures due to removal of Mac 32 bit platform
-rw-r--r--org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/ProductTests.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/ProductTests.java b/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/ProductTests.java
index 914f6ea1..e4b4981c 100644
--- a/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/ProductTests.java
+++ b/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/ProductTests.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007, 2013 IBM Corporation and others. All rights reserved.
+ * Copyright (c) 2007, 2014 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
@@ -50,7 +50,7 @@ public class ProductTests extends PDETestCase {
Properties properties = BuildConfiguration.getBuilderProperties(buildFolder);
properties.put("product", "/rcp/rcp.product");
- properties.put("configs", "macosx,cocoa,x86");
+ properties.put("configs", "macosx,cocoa,x86_64");
if (!delta.equals(new File((String) properties.get("baseLocation"))))
properties.put("pluginPath", delta.getAbsolutePath());
URL resource = FileLocator.find(Platform.getBundle("org.eclipse.pde.build"), new Path("/scripts/productBuild/allElements.xml"), null);
@@ -69,7 +69,7 @@ public class ProductTests extends PDETestCase {
entries.add("eclipse/Eclipse.app/");
//bug 206788 names the archive .zip
- assertZipContents(buildFolder, "I.TestBuild/eclipse-macosx.cocoa.x86.zip", entries, false);
+ assertZipContents(buildFolder, "I.TestBuild/eclipse-macosx.cocoa.x86_64.zip", entries, false);
assertTrue(entries.contains("eclipse/Eclipse.app/"));
assertTrue(entries.size() == 1);
}

Back to the top