Browse Source

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
shortcuts
Daniel Grunwald 16 years ago
parent
commit
4c0620e367
  1. 2
      src/AddIns/Misc/Debugger/Debugger.Tests/Project/Src/DebuggerTestsBase.cs

2
src/AddIns/Misc/Debugger/Debugger.Tests/Project/Src/DebuggerTestsBase.cs

@ -322,7 +322,7 @@ namespace Debugger.Tests @@ -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);

Loading…
Cancel
Save