Ryujinx.Tests.Unicorn: Implement IDisposable (#3794)

Dispose unicorn when done
This commit is contained in:
merry 2022-10-24 00:51:54 +01:00 committed by GitHub
parent 9b06ee7736
commit eafadf10c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 48 additions and 4 deletions

View file

@ -80,6 +80,12 @@ namespace Ryujinx.Tests.Cpu
[TearDown]
public void Teardown()
{
if (_unicornAvailable)
{
_unicornEmu.Dispose();
_unicornEmu = null;
}
_memory.DecrementReferenceCount();
_context.Dispose();
_ram.Dispose();