Cosmos/Tests/Kernels/Cosmos.Kernel.Tests.DiskManager/Kernel.cs

50 lines
1.2 KiB
C#

using System;
using Cosmos.System.FileSystem;
using Cosmos.System.FileSystem.VFS;
using Cosmos.TestRunner;
using Sys = Cosmos.System;
namespace Cosmos.Kernel.Tests.DiskManager
{
/// <summary>
/// The kernel implementation.
/// </summary>
/// <seealso cref="Cosmos.System.Kernel" />
public class Kernel : Sys.Kernel
{
private VFSBase mVFS;
/// <summary>
/// Pre-run events
/// </summary>
protected override void BeforeRun()
{
Console.WriteLine("Cosmos booted successfully, now start testing");
mVFS = new CosmosVFS();
VFSManager.RegisterVFS(mVFS);
}
/// <summary>
/// Main kernel loop
/// </summary>
protected override void Run()
{
try
{
mDebugger.Send("Run");
DiskManagerTest.Execute(mDebugger);
TestController.Completed();
}
catch (Exception e)
{
Console.WriteLine("Exception occurred");
Console.WriteLine(e.ToString());
mDebugger.Send("Exception occurred: " + e.ToString());
TestController.Failed();
}
}
}
}