From 4c0620e3678f4e642f1a08f9403e4d17e0ba5d24 Mon Sep 17 00:00:00 2001 From: Daniel Grunwald Date: Tue, 6 Oct 2009 18:44:24 +0000 Subject: [PATCH] Use different directory for debugger test cache. (reason the last two builds failed was that the debugger unit tests are caching the compiled test programs) git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@5058 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61 --- .../Debugger/Debugger.Tests/Project/Src/DebuggerTestsBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AddIns/Misc/Debugger/Debugger.Tests/Project/Src/DebuggerTestsBase.cs b/src/AddIns/Misc/Debugger/Debugger.Tests/Project/Src/DebuggerTestsBase.cs index 0d20415501..ea1a82ea30 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Tests/Project/Src/DebuggerTestsBase.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Tests/Project/Src/DebuggerTestsBase.cs @@ -322,7 +322,7 @@ namespace Debugger.Tests string path = Path.GetTempPath(); path = Path.Combine(path, "SharpDevelop"); - path = Path.Combine(path, "DebuggerTests"); + path = Path.Combine(path, "DebuggerTestsX86"); path = Path.Combine(path, testName + "." + md5); Directory.CreateDirectory(path);