Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.tcf.debug')
-rw-r--r--plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/tests/TCFTestSuite.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/tests/TCFTestSuite.java b/plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/tests/TCFTestSuite.java
index a702964f1..64761c6fe 100644
--- a/plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/tests/TCFTestSuite.java
+++ b/plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/tests/TCFTestSuite.java
@@ -84,17 +84,17 @@ public class TCFTestSuite {
});
pending_tests.add(new Runnable() {
public void run() {
- listener.progress("Running Debugger Attach/Terminate Test...", ++count_done, count_total);
+ listener.progress("Running Path Map Test...", ++count_done, count_total);
for (IChannel channel : channels) {
- active_tests.put(new TestAttachTerminate(TCFTestSuite.this, run_controls.get(channel), channel), channel);
+ active_tests.put(new TestPathMap(TCFTestSuite.this, channel, path_map), channel);
}
}
});
pending_tests.add(new Runnable() {
public void run() {
- listener.progress("Running Path Map Test...", ++count_done, count_total);
+ listener.progress("Running Debugger Attach/Terminate Test...", ++count_done, count_total);
for (IChannel channel : channels) {
- active_tests.put(new TestPathMap(TCFTestSuite.this, channel, path_map), channel);
+ active_tests.put(new TestAttachTerminate(TCFTestSuite.this, run_controls.get(channel), channel), channel);
}
}
});

Back to the top