Mark checksum and Lua test classes as single-threaded

This commit is contained in:
YoshiRulz 2024-06-01 09:45:47 +10:00
parent 657531a328
commit d2ea93d5e2
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
3 changed files with 3 additions and 0 deletions

View File

@ -10,6 +10,7 @@ using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace BizHawk.Tests.Client.Common.Lua
{
#if !SKIP_PLATFORM_TESTS
[DoNotParallelize]
[TestClass]
#endif
public class LuaTests

View File

@ -4,6 +4,7 @@ using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace BizHawk.Tests.Common.checksums
{
[DoNotParallelize] // I only noticed problems w/ SHA1, but better safe than sorry --yoshi
[TestClass]
public sealed class CRC32Tests
{

View File

@ -7,6 +7,7 @@ using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace BizHawk.Tests.Common.checksums
{
[DoNotParallelize]
[TestClass]
public sealed class SHA1Tests
{