Skip to content

Commit

Permalink
Attempt to fix appveyor build.
Browse files Browse the repository at this point in the history
  • Loading branch information
mterwoord committed Jun 13, 2016
1 parent 3702de9 commit 0cdc16c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Users/Matthijs/DebugCompiler/MyEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ public void Test([ValueSource(typeof(MySource), nameof(MySource.ProvideData))] T
var xEngine = new Engine();
// Sets the time before an error is registered. For example if set to 60 then if a kernel runs for more than 60 seconds then
// that kernel will be marked as a failiure and terminated
xEngine.AllowedSecondsInKernel = 30;
xEngine.AllowedSecondsInKernel = 300;

// If you want to test only specific platforms, add them to the list, like next line. By default, all platforms are run.
xEngine.RunTargets.Add(RunTargetEnum.Bochs);

// If you're working on the compiler (or other lower parts), you can choose to run the compiler in process
// one thing to keep in mind though, is that this only works with 1 kernel at a time!
xEngine.RunIL2CPUInProcess = true;
xEngine.RunIL2CPUInProcess = false;
xEngine.TraceAssembliesLevel = TraceAssemblies.User;

xEngine.EnableStackCorruptionChecks = true;
Expand Down

0 comments on commit 0cdc16c

Please sign in to comment.