mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 05:52:11 +00:00
Type test kernel.
This commit is contained in:
parent
fbdb7c1b9e
commit
a3c412bd41
2 changed files with 4 additions and 3 deletions
|
|
@ -1,8 +1,7 @@
|
||||||
using System;
|
using Cosmos.Build.Common;
|
||||||
|
using System;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
|
||||||
using Cosmos.Build.Common;
|
|
||||||
|
|
||||||
namespace Cosmos.TestRunner.Core
|
namespace Cosmos.TestRunner.Core
|
||||||
{
|
{
|
||||||
public static class DefaultEngineConfiguration
|
public static class DefaultEngineConfiguration
|
||||||
|
|
@ -42,6 +41,7 @@ namespace Cosmos.TestRunner.Core
|
||||||
engine.AddKernel(xType.GetTypeInfo().Assembly.Location);
|
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(VGACompilerCrash.Kernel).Assembly.Location);
|
||||||
//engine.AddKernel(typeof(Cosmos.Compiler.Tests.Bcl.Kernel).Assembly.Location);
|
//engine.AddKernel(typeof(Cosmos.Compiler.Tests.Bcl.Kernel).Assembly.Location);
|
||||||
//engine.AddKernel(typeof(Cosmos.Compiler.Tests.SingleEchoTest.Kernel).Assembly.Location);
|
//engine.AddKernel(typeof(Cosmos.Compiler.Tests.SingleEchoTest.Kernel).Assembly.Location);
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,7 @@ namespace Cosmos.TestRunner.Core
|
||||||
public static IEnumerable<Type> GetStableKernelTypes()
|
public static IEnumerable<Type> GetStableKernelTypes()
|
||||||
{
|
{
|
||||||
//yield return typeof(BoxingTests.Kernel);
|
//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.Bcl.Kernel);
|
||||||
//yield return typeof(Cosmos.Compiler.Tests.Encryption.Kernel);
|
//yield return typeof(Cosmos.Compiler.Tests.Encryption.Kernel);
|
||||||
yield return typeof(Cosmos.Compiler.Tests.Exceptions.Kernel);
|
yield return typeof(Cosmos.Compiler.Tests.Exceptions.Kernel);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue