2
0
mirror of synced 2025-01-13 01:54:07 +00:00

33 lines
674 B
C#
Raw Normal View History

using ContinuousTests;
public class Program
{
public static void Main(string[] args)
{
2023-06-25 09:53:10 +02:00
Console.WriteLine("Codex Continous-Test-Runner.");
2023-06-28 16:19:37 +02:00
var runner = new ContinuousTestRunner(args, Cancellation.Cts.Token);
2023-06-28 16:19:37 +02:00
Console.CancelKeyPress += (sender, e) =>
{
Console.WriteLine("Stopping...");
e.Cancel = true;
Cancellation.Cts.Cancel();
2023-06-28 16:19:37 +02:00
};
runner.Run();
2023-06-28 16:19:37 +02:00
Console.WriteLine("Done.");
}
2023-09-21 10:33:09 +02:00
}
2023-09-21 10:33:09 +02:00
public static class Cancellation
{
static Cancellation()
{
2023-09-21 10:33:09 +02:00
Cts = new CancellationTokenSource();
}
2023-09-21 10:33:09 +02:00
public static CancellationTokenSource Cts { get; }
}