Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2007-07-31 17:05:09 +0000
committerThomas Watson2007-07-31 17:05:09 +0000
commitfef1ea39cb4b41607ce79a83a8e89f5492370f5b (patch)
tree583a3340cd36aa3a05d7795ce598f58da7911795 /bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/perf/AllTests.java
parent849fd8828ccb9e811a318a64d8aef59cb72692db (diff)
downloadrt.equinox.framework-fef1ea39cb4b41607ce79a83a8e89f5492370f5b.tar.gz
rt.equinox.framework-fef1ea39cb4b41607ce79a83a8e89f5492370f5b.tar.xz
rt.equinox.framework-fef1ea39cb4b41607ce79a83a8e89f5492370f5b.zip
Bug 181327 eclipse/osgi hangs using 50% CPU during some osgi operations
Diffstat (limited to 'bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/perf/AllTests.java')
-rw-r--r--bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/perf/AllTests.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/perf/AllTests.java b/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/perf/AllTests.java
index a526436aa..aae34c8b2 100644
--- a/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/perf/AllTests.java
+++ b/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/perf/AllTests.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2004 IBM Corporation and others.
+ * Copyright (c) 2004, 2007 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
@@ -26,6 +26,7 @@ public class AllTests extends TestSuite {
public static Test suite() {
TestSuite suite = new TestSuite(AllTests.class.getName());
suite.addTest(StatePerformanceTest.suite());
+ suite.addTest(StateUsesPerformanceTest.suite());
return suite;
}
}

Back to the top