From 572daa0616b1212cea770839ef42e463059a24f4 Mon Sep 17 00:00:00 2001 From: Rebizu Date: Sun, 6 Dec 2015 14:25:32 +0100 Subject: [PATCH 1/2] chg: .net 3.5 sp1 check was commented out. and it did not do at is was supposed to. fixes #219 --- source/Cosmos.Build.Builder/CosmosTask.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/Cosmos.Build.Builder/CosmosTask.cs b/source/Cosmos.Build.Builder/CosmosTask.cs index 6d32537c7..3dfd87a88 100644 --- a/source/Cosmos.Build.Builder/CosmosTask.cs +++ b/source/Cosmos.Build.Builder/CosmosTask.cs @@ -112,7 +112,7 @@ namespace Cosmos.Build.Builder { //CheckForInno(); CheckPrereqs(); //Working if (mBuildState != BuildState.PrerequisiteMissing) - Echo("failed"); + Echo("all checks suceeded"); //Cleanup(); //Working //CompileCosmos(); //Working @@ -192,6 +192,7 @@ namespace Cosmos.Build.Builder { } if (!xInstalled) { NotFound(".NET 3.5 SP1"); + mBuildState = BuildState.PrerequisiteMissing; } } @@ -293,7 +294,8 @@ namespace Cosmos.Build.Builder { throw new NotImplementedException(); } - //works also without, only close of VMWare is not working! CheckNet35Sp1(); // Required by VMWareLib + //works also without, only close of VMWare is not working! + CheckNet35Sp1(); // Required by VMWareLib and other stuff CheckNet403(); CheckForInno(); bool vmWareInstalled = true; From a88c2fd690ebea09473245aa3ba6e4364b8f79b8 Mon Sep 17 00:00:00 2001 From: Luka Andjelkovic Date: Sun, 6 Dec 2015 18:31:05 +0100 Subject: [PATCH 2/2] Update TestRunner.md --- Docs/Tests/TestRunner.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Docs/Tests/TestRunner.md b/Docs/Tests/TestRunner.md index ce43df561..40a6b5d17 100644 --- a/Docs/Tests/TestRunner.md +++ b/Docs/Tests/TestRunner.md @@ -1,12 +1,12 @@ # TestRunner ## Description -TestRunner is used to run Kernel Tests using the tests at a specified location and can run each kernal in multiple targets to ensure full compatibility and stability accross these targets. +TestRunner is used to run Kernel Tests using the tests at a specified location and can run each kernel in multiple targets to ensure full compatibility and stability accross these targets. TestRunner generates a result file upon completion to detail the results of the tests. ## Configuration -Editing the configuration for TestRunner can be done by editing [DefaultEngingeConfiguration](https://github.com/CosmosOS/Cosmos/blob/master/Tests/Cosmos.TestRunner.Core/DefaultEngineConfiguration.cs#L6) in ..\Tests\TestRunner\TestRunner.Core +Editing the configuration for TestRunner can be done by editing [DefaultEngineConfiguration](https://github.com/CosmosOS/Cosmos/blob/master/Tests/Cosmos.TestRunner.Core/DefaultEngineConfiguration.cs#L6) in ..\Tests\TestRunner\TestRunner.Core ## Project Location The TestRunner Projects are located in ..\Tests\TestRunner