Commit 1e875980 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

kernel32/tests: Add ARM and ARM64 arch strings.

parent 0d68edf0
...@@ -59,6 +59,10 @@ static const char* strw(LPCWSTR x) ...@@ -59,6 +59,10 @@ static const char* strw(LPCWSTR x)
#define ARCH "x86" #define ARCH "x86"
#elif defined __x86_64__ #elif defined __x86_64__
#define ARCH "amd64" #define ARCH "amd64"
#elif defined __arm__
#define ARCH "arm"
#elif defined __aarch64__
#define ARCH "arm64"
#else #else
#define ARCH "none" #define ARCH "none"
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment