Skip to content

Commit

Permalink
Increase default test runner timeout.
Browse files Browse the repository at this point in the history
  • Loading branch information
mterwoord committed Jun 14, 2016
1 parent 0cdc16c commit 9a557e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Users/Matthijs/DebugCompiler/MyEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ 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 = 300;
xEngine.AllowedSecondsInKernel = 600;

// 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);
Expand Down

0 comments on commit 9a557e6

Please sign in to comment.