mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
23 lines
698 B
C#
23 lines
698 B
C#
using System;
|
||
|
||
namespace Cosmos.TestRunner.Core
|
||
{
|
||
public static class DefaultEngineConfiguration
|
||
{
|
||
public static void Apply(Engine engine)
|
||
{
|
||
if (engine == null)
|
||
{
|
||
throw new ArgumentNullException("engine");
|
||
}
|
||
|
||
engine.AllowedSecondsInKernel = 30;
|
||
|
||
engine.AddKernel(typeof(Cosmos.Compiler.Tests.SimpleWriteLine.Kernel.Kernel).Assembly.Location);
|
||
//engine.AddKernel(typeof(SimpleStructsAndArraysTest.Kernel).Assembly.Location);
|
||
//engine.AddKernel(typeof(VGACompilerCrash.Kernel).Assembly.Location);
|
||
|
||
// known bugs, therefor disabled for now:
|
||
}
|
||
}
|
||
}
|