From 517b373ded8ef2c93afabcf968c8e366a3d9fd52 Mon Sep 17 00:00:00 2001 From: Matthijs ter Woord Date: Thu, 23 Jul 2015 16:53:40 -0400 Subject: [PATCH] . --- .../DefaultEngineConfiguration.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Tests/Cosmos.TestRunner.Core/DefaultEngineConfiguration.cs b/Tests/Cosmos.TestRunner.Core/DefaultEngineConfiguration.cs index 61182f45c..7f222784b 100644 --- a/Tests/Cosmos.TestRunner.Core/DefaultEngineConfiguration.cs +++ b/Tests/Cosmos.TestRunner.Core/DefaultEngineConfiguration.cs @@ -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;