Skip to content

Commit

Permalink
Undo changes to default files
Browse files Browse the repository at this point in the history
  • Loading branch information
quajak committed Dec 30, 2023
1 parent 0d726b8 commit 7910b94
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
4 changes: 2 additions & 2 deletions Tests/Cosmos.TestRunner.Full/DefaultEngineConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public virtual IEnumerable<RunTargetEnum> RunTargets
}
}

public virtual bool RunWithGDB => true;
public virtual bool StartBochsDebugGUI => true;
public virtual bool RunWithGDB => false;
public virtual bool StartBochsDebugGUI => false;

public virtual bool DebugIL2CPU => false;
public virtual string KernelPkg => String.Empty;
Expand Down
40 changes: 20 additions & 20 deletions Tests/Cosmos.TestRunner.Full/TestKernelSets.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,29 +15,29 @@ public static IEnumerable<Type> GetKernelTypesToRun()
// Stable kernel types: the ones that are stable and will run in AppVeyor
public static IEnumerable<Type> GetStableKernelTypes()
{
//yield return typeof(BoxingTests.Kernel);
yield return typeof(BoxingTests.Kernel);
yield return typeof(Compiler.Tests.TypeSystem.Kernel);
//yield return typeof(Compiler.Tests.Bcl.Kernel);
//yield return typeof(Compiler.Tests.Bcl.System.Kernel);
////yield return typeof(Cosmos.Compiler.Tests.Encryption.Kernel);
//yield return typeof(Compiler.Tests.Exceptions.Kernel);
//yield return typeof(Compiler.Tests.MethodTests.Kernel);
//yield return typeof(Compiler.Tests.SingleEchoTest.Kernel);
//yield return typeof(Kernel.Tests.Fat.Kernel);
//yield return typeof(Kernel.Tests.IO.Kernel);
//yield return typeof(SimpleStructsAndArraysTest.Kernel);
//yield return typeof(Kernel.Tests.DiskManager.Kernel);
yield return typeof(Compiler.Tests.Bcl.Kernel);
yield return typeof(Compiler.Tests.Bcl.System.Kernel);
//yield return typeof(Cosmos.Compiler.Tests.Encryption.Kernel);
yield return typeof(Compiler.Tests.Exceptions.Kernel);
yield return typeof(Compiler.Tests.MethodTests.Kernel);
yield return typeof(Compiler.Tests.SingleEchoTest.Kernel);
yield return typeof(Kernel.Tests.Fat.Kernel);
yield return typeof(Kernel.Tests.IO.Kernel);
yield return typeof(SimpleStructsAndArraysTest.Kernel);
yield return typeof(Kernel.Tests.DiskManager.Kernel);

////yield return typeof(KernelGen3.Boot);
//yield return typeof(GraphicTest.Kernel);
//yield return typeof(KernelGen3.Boot);
yield return typeof(GraphicTest.Kernel);

//// Disable network tests due to our self hosted CI/CD limitations (VPS currently doesn't support VMWare with its CPU)
////yield return typeof(NetworkTest.Kernel);
//yield return typeof(AudioTests.Kernel);
//// Please see the notes on the kernel itself before enabling it
////yield return typeof(ConsoleTest.Kernel);
//yield return typeof(MemoryOperationsTest.Kernel);
//yield return typeof(ProcessorTests.Kernel);
// Disable network tests due to our self hosted CI/CD limitations (VPS currently doesn't support VMWare with its CPU)
//yield return typeof(NetworkTest.Kernel);
yield return typeof(AudioTests.Kernel);
// Please see the notes on the kernel itself before enabling it
//yield return typeof(ConsoleTest.Kernel);
yield return typeof(MemoryOperationsTest.Kernel);
yield return typeof(ProcessorTests.Kernel);
}
}
}

0 comments on commit 7910b94

Please sign in to comment.