We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d23f47c commit f0ae4cfCopy full SHA for f0ae4cf
1 file changed
ConformU/Conform/DeviceTesterBaseClass/DeviceTesterBaseClass.cs
@@ -1017,9 +1017,9 @@ public virtual void InitialiseTest()
1017
LogNewLine(); // Blank line
1018
1019
// Set the architecture and bitness
1020
- string architecture = RuntimeInformation.ProcessArchitecture == Architecture.Arm64 ? "ARM" : "Intel";
+ string architecture = RuntimeInformation.ProcessArchitecture == Architecture.Arm64 ? "ARM" : "Intel/AMD";
1021
string osBitness = Environment.Is64BitOperatingSystem ? "64" : "32";
1022
- string processBitness = Environment.Is64BitProcess ? "64" : "32"+OperatingSystem.pl;
+ string processBitness = Environment.Is64BitProcess ? "64" : "32";
1023
1024
// Set the OS name depending on whether or not it is Windows
1025
string osName;
0 commit comments