Skip to content

Commit

Permalink
Fix BuildTests.testPluginFiles() to ignore org.eclipse.orbit (#1353)
Browse files Browse the repository at this point in the history
  • Loading branch information
merks committed Sep 14, 2023
1 parent f26448d commit 43e6283
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,9 @@ public void testPluginFiles() {
String installDir = Platform.getInstallLocation().getURL().getPath();
File pluginDir = new File(installDir, "plugins");
for (File aPlugin : pluginDir.listFiles()) {
if (!aPlugin.getName().contains("test") && aPlugin.getName().startsWith("org.eclipse")
&& !aPlugin.getName().contains("org.eclipse.jetty")
&& !aPlugin.getName().contains("org.eclipse.ecf")) {
String name = aPlugin.getName();
if (!name.contains("test") && name.startsWith("org.eclipse") && !name.contains("org.eclipse.jetty")
&& !name.contains("org.eclipse.ecf") && !name.startsWith("org.eclipse.orbit")) {
if (!testPluginFile(aPlugin)) {
result.add(aPlugin.getPath());
}
Expand Down

0 comments on commit 43e6283

Please sign in to comment.