Browse Source

Run debugger unit tests as 32-bit process.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@5056 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Daniel Grunwald 16 years ago
parent
commit
0136a81aab
  1. 2
      src/AddIns/Misc/Debugger/Debugger.Tests/Project/Debugger.Tests.csproj
  2. 2
      src/AddIns/Misc/Debugger/Debugger.Tests/Project/Src/DebuggerTestsBase.cs

2
src/AddIns/Misc/Debugger/Debugger.Tests/Project/Debugger.Tests.csproj

@ -11,7 +11,7 @@
<AllowUnsafeBlocks>True</AllowUnsafeBlocks> <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow> <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
<NoStdLib>False</NoStdLib> <NoStdLib>False</NoStdLib>
<PlatformTarget>AnyCPU</PlatformTarget> <PlatformTarget>x86</PlatformTarget>
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors> <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<DebugType>Full</DebugType> <DebugType>Full</DebugType>

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

@ -344,7 +344,7 @@ namespace Debugger.Tests
compParams.IncludeDebugInformation = true; compParams.IncludeDebugInformation = true;
compParams.ReferencedAssemblies.Add("System.dll"); compParams.ReferencedAssemblies.Add("System.dll");
compParams.OutputAssembly = exeFilename; compParams.OutputAssembly = exeFilename;
compParams.CompilerOptions = "/unsafe"; compParams.CompilerOptions = "/unsafe /platform:x86";
compParams.ReferencedAssemblies.Add(typeof(TestFixtureAttribute).Assembly.Location); compParams.ReferencedAssemblies.Add(typeof(TestFixtureAttribute).Assembly.Location);
CSharpCodeProvider compiler = new CSharpCodeProvider(); CSharpCodeProvider compiler = new CSharpCodeProvider();

Loading…
Cancel
Save