Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2013-11-06 19:38:12 +0000
committerEugene Tarassov2013-11-06 19:38:12 +0000
commitf0d256568f52582f5ac9e82ce245de0fe10a3b6d (patch)
tree70268cb1a24a2796abcc9ad433823dd97059ad97
parent48af2fa047ca87889ee18b4d3765b91873986134 (diff)
downloadorg.eclipse.tcf-f0d256568f52582f5ac9e82ce245de0fe10a3b6d.tar.gz
org.eclipse.tcf-f0d256568f52582f5ac9e82ce245de0fe10a3b6d.tar.xz
org.eclipse.tcf-f0d256568f52582f5ac9e82ce245de0fe10a3b6d.zip
TCF Tests: fixed: Attach/Detach test should run after Path Map test, because Attach/Detach can require Path Map to be set to resolve symbols
-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