summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-03-07 17:41:00 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2009-03-08 01:08:58 -0800
commit3c1000b997850ba382d7ed29366b109a08deecff (patch)
tree30690cd57842ff0dd17102c2918fdc8ec26dd166
parent9edc91760159302fca098355ddfe2b2b16582d2e (diff)
downloadDotNetOpenAuth-3c1000b997850ba382d7ed29366b109a08deecff.zip
DotNetOpenAuth-3c1000b997850ba382d7ed29366b109a08deecff.tar.gz
DotNetOpenAuth-3c1000b997850ba382d7ed29366b109a08deecff.tar.bz2
Improved test logging.
-rw-r--r--src/DotNetOpenAuth.Test/CoordinatorBase.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.Test/CoordinatorBase.cs b/src/DotNetOpenAuth.Test/CoordinatorBase.cs
index 11172b7..d1bf27c 100644
--- a/src/DotNetOpenAuth.Test/CoordinatorBase.cs
+++ b/src/DotNetOpenAuth.Test/CoordinatorBase.cs
@@ -58,6 +58,8 @@ namespace DotNetOpenAuth.Test {
// If this main thread is aborted (test run aborted), go ahead and abort the other two threads.
party1Thread = new Thread(() => { safeWrapper(() => { this.party1Action(party1Object); }); });
party2Thread = new Thread(() => { safeWrapper(() => { this.party2Action(party2Object); }); });
+ party1Thread.Name = "P1";
+ party2Thread.Name = "P2";
try {
party1Thread.Start();
party2Thread.Start();