Type test kernel.

This commit is contained in:
Charles Betros 2017-10-15 11:34:49 -05:00
parent fbdb7c1b9e
commit a3c412bd41
2 changed files with 4 additions and 3 deletions

View file

@ -1,8 +1,7 @@
using System;
using Cosmos.Build.Common;
using System;
using System.Reflection;
using Cosmos.Build.Common;
namespace Cosmos.TestRunner.Core
{
public static class DefaultEngineConfiguration
@ -42,6 +41,7 @@ namespace Cosmos.TestRunner.Core
engine.AddKernel(xType.GetTypeInfo().Assembly.Location);
}
//engine.AddKernel(typeof(Cosmos.Compiler.Tests.TypeSystem.Kernel).Assembly.Location);
//engine.AddKernel(typeof(VGACompilerCrash.Kernel).Assembly.Location);
//engine.AddKernel(typeof(Cosmos.Compiler.Tests.Bcl.Kernel).Assembly.Location);
//engine.AddKernel(typeof(Cosmos.Compiler.Tests.SingleEchoTest.Kernel).Assembly.Location);

View file

@ -16,6 +16,7 @@ namespace Cosmos.TestRunner.Core
public static IEnumerable<Type> GetStableKernelTypes()
{
//yield return typeof(BoxingTests.Kernel);
yield return typeof(Cosmos.Compiler.Tests.TypeSystem.Kernel);
yield return typeof(Cosmos.Compiler.Tests.Bcl.Kernel);
//yield return typeof(Cosmos.Compiler.Tests.Encryption.Kernel);
yield return typeof(Cosmos.Compiler.Tests.Exceptions.Kernel);