Skip to content

Commit f0ae4cf

Browse files
committed
Fix compilation error.
1 parent d23f47c commit f0ae4cf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ConformU/Conform/DeviceTesterBaseClass/DeviceTesterBaseClass.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1017,9 +1017,9 @@ public virtual void InitialiseTest()
10171017
LogNewLine(); // Blank line
10181018

10191019
// Set the architecture and bitness
1020-
string architecture = RuntimeInformation.ProcessArchitecture == Architecture.Arm64 ? "ARM" : "Intel";
1020+
string architecture = RuntimeInformation.ProcessArchitecture == Architecture.Arm64 ? "ARM" : "Intel/AMD";
10211021
string osBitness = Environment.Is64BitOperatingSystem ? "64" : "32";
1022-
string processBitness = Environment.Is64BitProcess ? "64" : "32"+OperatingSystem.pl;
1022+
string processBitness = Environment.Is64BitProcess ? "64" : "32";
10231023

10241024
// Set the OS name depending on whether or not it is Windows
10251025
string osName;

0 commit comments

Comments
 (0)