Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Overholt2011-03-29 14:00:01 +0000
committerAndrew Overholt2011-03-29 14:00:01 +0000
commite5d43d9a979dd7280a1b6255d9124d3b9fa72b51 (patch)
treefc9274d4b70a5712e032ea4716c683c32f2a4c8b /valgrind/org.eclipse.linuxtools.valgrind.memcheck.tests
parentd136b73082c2575c9ed0a46bb01eabfa0d7566b4 (diff)
downloadorg.eclipse.linuxtools-e5d43d9a979dd7280a1b6255d9124d3b9fa72b51.tar.gz
org.eclipse.linuxtools-e5d43d9a979dd7280a1b6255d9124d3b9fa72b51.tar.xz
org.eclipse.linuxtools-e5d43d9a979dd7280a1b6255d9124d3b9fa72b51.zip
Make memcheck tests run with only required bundles present
Diffstat (limited to 'valgrind/org.eclipse.linuxtools.valgrind.memcheck.tests')
-rw-r--r--valgrind/org.eclipse.linuxtools.valgrind.memcheck.tests/ChangeLog9
-rw-r--r--valgrind/org.eclipse.linuxtools.valgrind.memcheck.tests/META-INF/MANIFEST.MF4
2 files changed, 11 insertions, 2 deletions
diff --git a/valgrind/org.eclipse.linuxtools.valgrind.memcheck.tests/ChangeLog b/valgrind/org.eclipse.linuxtools.valgrind.memcheck.tests/ChangeLog
index 43615108c6..60bf2cf2ec 100644
--- a/valgrind/org.eclipse.linuxtools.valgrind.memcheck.tests/ChangeLog
+++ b/valgrind/org.eclipse.linuxtools.valgrind.memcheck.tests/ChangeLog
@@ -1,3 +1,10 @@
+2011-03-29 Andrew Overholt <overholt@redhat.com>
+
+ * META-INF/MANIFEST.MF: Add requirements on
+ org.eclipse.ui.ide.application and
+ org.eclipse.cdt.managedbuilder.gnu.ui to make tests pass with only
+ required bundles present.
+
2010-08-03 Elliott Baron <ebaron@fedoraproject.org>
* src/org/eclipse/linuxtools/internal/valgrind/memcheck/tests/LocationPreferenceTest.java: Add copyright header.
@@ -214,4 +221,4 @@
2009-01-05 Elliott Baron <ebaron@redhat.com>
- * META-INF/MANIFEST.MF: Changed version to 0.1.0. \ No newline at end of file
+ * META-INF/MANIFEST.MF: Changed version to 0.1.0.
diff --git a/valgrind/org.eclipse.linuxtools.valgrind.memcheck.tests/META-INF/MANIFEST.MF b/valgrind/org.eclipse.linuxtools.valgrind.memcheck.tests/META-INF/MANIFEST.MF
index cab0683bd3..e1731e129a 100644
--- a/valgrind/org.eclipse.linuxtools.valgrind.memcheck.tests/META-INF/MANIFEST.MF
+++ b/valgrind/org.eclipse.linuxtools.valgrind.memcheck.tests/META-INF/MANIFEST.MF
@@ -7,7 +7,9 @@ Bundle-Activator: org.eclipse.linuxtools.internal.valgrind.memcheck.tests.Memche
Bundle-Vendor: %Bundle-Vendor.0
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
- org.junit;bundle-version="4.7.0"
+ org.junit;bundle-version="4.7.0",
+ org.eclipse.ui.ide.application,
+ org.eclipse.cdt.managedbuilder.gnu.ui
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin

Back to the top