This commit is contained in:
Matthijs ter Woord 2015-07-23 16:53:40 -04:00
parent 66d1597746
commit 517b373ded

View file

@ -1,5 +1,5 @@
using System;
using System.Linq;
using System;
using System.Linq;
namespace Cosmos.TestRunner.Core
{
@ -14,10 +14,10 @@ namespace Cosmos.TestRunner.Core
engine.AllowedSecondsInKernel = 120;
// If you want to exclude a testing platform, modify uncomment and modify the following line
engine.RunTargets.Remove(RunTargetEnum.VMware);
// If you want to test only specific platforms, add them to the list, like next line. By default, all platforms are ran.
engine.RunTargets.Add(RunTargetEnum.Bochs);
// if you're working on the compiler (or other lower parts), you can choose to run the compiler in process
// if you're working on the compiler (or other lower parts), you can choose to run the compiler in process.
// 1 thing to keep in mind though, is that this only works with 1 kernel at a time!
engine.RunIL2CPUInProcess = true;