Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDJ Houghton2011-01-21 16:42:57 +0000
committerDJ Houghton2011-01-21 16:42:57 +0000
commitee8f9a443daa6d20da72bc4d1d12e4d8e6d042e7 (patch)
tree1aa681f0481b7babafedd7a4b7e7128801b4d55f /bundles
parent9b36c7cd344ec91cd4abab0d7d2e4d74e92b5662 (diff)
downloadrt.equinox.p2-ee8f9a443daa6d20da72bc4d1d12e4d8e6d042e7.tar.gz
rt.equinox.p2-ee8f9a443daa6d20da72bc4d1d12e4d8e6d042e7.tar.xz
rt.equinox.p2-ee8f9a443daa6d20da72bc4d1d12e4d8e6d042e7.zip
Ensure platform exe has been extracted before continuing.
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/AbstractReconcilerTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/AbstractReconcilerTest.java b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/AbstractReconcilerTest.java
index 048509289..0297aa06f 100644
--- a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/AbstractReconcilerTest.java
+++ b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/AbstractReconcilerTest.java
@@ -82,7 +82,7 @@ public class AbstractReconcilerTest extends AbstractProvisioningTest {
untar("1.0", file);
}
File exe = new File(output, "eclipse/eclipse");
- assertTrue("Executable not found after initialization.", exe.exists());
+ assertTrue("Executable not found after extracting: " + file.getAbsolutePath() + " to: " + output, exe.exists());
initialized = true;
}

Back to the top