Skip to content

Commit

Permalink
Fix compilation error.
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter-Simpson committed Oct 15, 2024
1 parent d23f47c commit f0ae4cf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1017,9 +1017,9 @@ public virtual void InitialiseTest()
LogNewLine(); // Blank line

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

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

0 comments on commit f0ae4cf

Please sign in to comment.