Updated to remove throwing exception when test starts with 32 bit mode
This commit is contained in:
parent
5fadbcb329
commit
c983c0e642
|
|
@ -30,7 +30,7 @@ namespace AspNetCoreModule.Test.Framework
|
||||||
if (Environment.Is64BitOperatingSystem && !Environment.Is64BitProcess)
|
if (Environment.Is64BitOperatingSystem && !Environment.Is64BitProcess)
|
||||||
{
|
{
|
||||||
TestUtility.LogInformation("Error!!! Skipping to run InitializeTestMachine::InitializeTestMachine() because the test process is started on syswow mode");
|
TestUtility.LogInformation("Error!!! Skipping to run InitializeTestMachine::InitializeTestMachine() because the test process is started on syswow mode");
|
||||||
throw new NotSupportedException("Running this test progrom in syswow64 mode is not supported");
|
return;
|
||||||
}
|
}
|
||||||
_referenceCount++;
|
_referenceCount++;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue