|
Lines 1-5
Link Here
|
| 1 |
/******************************************************************************* |
1 |
/******************************************************************************* |
| 2 |
* Copyright (c) 2008, 2010 IBM Corporation and others. All rights reserved. |
2 |
* Copyright (c) 2008, 2012 IBM Corporation and others. All rights reserved. |
| 3 |
* This program and the accompanying materials are made available under the |
3 |
* This program and the accompanying materials are made available under the |
| 4 |
* terms of the Eclipse Public License v1.0 which accompanies this distribution, |
4 |
* terms of the Eclipse Public License v1.0 which accompanies this distribution, |
| 5 |
* and is available at http://www.eclipse.org/legal/epl-v10.html |
5 |
* and is available at http://www.eclipse.org/legal/epl-v10.html |
|
Lines 62-68
Link Here
|
| 62 |
runProductBuild(buildFolder); |
62 |
runProductBuild(buildFolder); |
| 63 |
|
63 |
|
| 64 |
String p2Config = ws + '.' + os + '.' + arch; |
64 |
String p2Config = ws + '.' + os + '.' + arch; |
| 65 |
String launcherConfig = os.equals("macosx") ? ws + '.' + os : p2Config; |
|
|
| 66 |
IMetadataRepository repository = loadMetadataRepository(repoLocation); |
65 |
IMetadataRepository repository = loadMetadataRepository(repoLocation); |
| 67 |
assertNotNull(repository); |
66 |
assertNotNull(repository); |
| 68 |
|
67 |
|
|
Lines 94-100
Link Here
|
| 94 |
iu = getIU(repository, "toolingorg.eclipse.equinox.launcher"); |
93 |
iu = getIU(repository, "toolingorg.eclipse.equinox.launcher"); |
| 95 |
assertTouchpoint(iu, "configure", "addProgramArg(programArg:-startup);addProgramArg(programArg:@artifact);"); |
94 |
assertTouchpoint(iu, "configure", "addProgramArg(programArg:-startup);addProgramArg(programArg:@artifact);"); |
| 96 |
ius.add(iu); |
95 |
ius.add(iu); |
| 97 |
iu = getIU(repository, "toolingorg.eclipse.equinox.launcher." + launcherConfig); |
96 |
iu = getIU(repository, "toolingorg.eclipse.equinox.launcher." + p2Config); |
| 98 |
assertTouchpoint(iu, "configure", "addProgramArg(programArg:--launcher.library);addProgramArg(programArg:@artifact);"); |
97 |
assertTouchpoint(iu, "configure", "addProgramArg(programArg:--launcher.library);addProgramArg(programArg:@artifact);"); |
| 99 |
ius.add(iu); |
98 |
ius.add(iu); |
| 100 |
|
99 |
|