Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCurtis Windatt2012-11-16 21:38:28 +0000
committerJohn Arthorne2012-11-16 21:38:28 +0000
commitf50421fb6ed802528a26b87a158dbbd0e15d6468 (patch)
tree2dd352c53b3a6be197d5cbbbb74e7654c5a6417d
parent24d96c69c9b88c88ed72c97875af2daf4bfde274 (diff)
downloadeclipse.pde.build-f50421fb6ed802528a26b87a158dbbd0e15d6468.tar.gz
eclipse.pde.build-f50421fb6ed802528a26b87a158dbbd0e15d6468.tar.xz
eclipse.pde.build-f50421fb6ed802528a26b87a158dbbd0e15d6468.zip
org.eclipse.pde.build.internal.tests.p2.P2Tests.testP2SimpleProduct() test failure
-rw-r--r--org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/p2/P2Tests.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/p2/P2Tests.java b/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/p2/P2Tests.java
index 3a6b83fa..1c559fdd 100644
--- a/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/p2/P2Tests.java
+++ b/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/p2/P2Tests.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2008, 2010 IBM Corporation and others. All rights reserved.
+ * Copyright (c) 2008, 2012 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
@@ -62,7 +62,6 @@ public class P2Tests extends P2TestCase {
runProductBuild(buildFolder);
String p2Config = ws + '.' + os + '.' + arch;
- String launcherConfig = os.equals("macosx") ? ws + '.' + os : p2Config;
IMetadataRepository repository = loadMetadataRepository(repoLocation);
assertNotNull(repository);
@@ -94,7 +93,7 @@ public class P2Tests extends P2TestCase {
iu = getIU(repository, "toolingorg.eclipse.equinox.launcher");
assertTouchpoint(iu, "configure", "addProgramArg(programArg:-startup);addProgramArg(programArg:@artifact);");
ius.add(iu);
- iu = getIU(repository, "toolingorg.eclipse.equinox.launcher." + launcherConfig);
+ iu = getIU(repository, "toolingorg.eclipse.equinox.launcher." + p2Config);
assertTouchpoint(iu, "configure", "addProgramArg(programArg:--launcher.library);addProgramArg(programArg:@artifact);");
ius.add(iu);

Back to the top