Mark checksum and Lua test classes as single-threaded
This commit is contained in:
parent
657531a328
commit
d2ea93d5e2
|
@ -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
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -7,6 +7,7 @@ using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|||
|
||||
namespace BizHawk.Tests.Common.checksums
|
||||
{
|
||||
[DoNotParallelize]
|
||||
[TestClass]
|
||||
public sealed class SHA1Tests
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue