mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
28 lines
845 B
C#
28 lines
845 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Cosmos.TestRunner.Core;
|
|
|
|
namespace Cosmos.TestRunner.Console
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
var xEngine = new Engine();
|
|
|
|
xEngine.AddKernel(typeof(Cosmos.Compiler.Tests.SimpleWriteLine.Kernel.Kernel).Assembly.Location);
|
|
xEngine.AddKernel(typeof(SimpleStructsAndArraysTest.Kernel).Assembly.Location);
|
|
xEngine.AddKernel(typeof(VGACompilerCrash.Kernel).Assembly.Location);
|
|
|
|
|
|
// known bugs, therefor disabled for now:
|
|
|
|
xEngine.OutputHandler = new OutputHandlerXml(@"c:\data\CosmosTests.xml");
|
|
//xEngine.OutputHandler = new OutputHandlerConsole();
|
|
xEngine.Execute();
|
|
}
|
|
}
|
|
}
|