=?UTF-8?Q?Andr=C3=A9=20Hentschel=20?=: kernel32/tests: Add ARM and ARM64 arch strings.

Alexandre Julliard julliard at wine.codeweavers.com
Wed May 20 10:04:12 CDT 2015


Module: wine
Branch: master
Commit: 1e8759805e3c5dfe00a31bb5f13f1c1da28d2826
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=1e8759805e3c5dfe00a31bb5f13f1c1da28d2826

Author: André Hentschel <nerv at dawncrow.de>
Date:   Wed May 20 14:31:48 2015 +0200

kernel32/tests: Add ARM and ARM64 arch strings.

---

 dlls/kernel32/tests/actctx.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/dlls/kernel32/tests/actctx.c b/dlls/kernel32/tests/actctx.c
index 7512aed..fcce93b 100644
--- a/dlls/kernel32/tests/actctx.c
+++ b/dlls/kernel32/tests/actctx.c
@@ -59,6 +59,10 @@ static const char* strw(LPCWSTR x)
 #define ARCH "x86"
 #elif defined __x86_64__
 #define ARCH "amd64"
+#elif defined __arm__
+#define ARCH "arm"
+#elif defined __aarch64__
+#define ARCH "arm64"
 #else
 #define ARCH "none"
 #endif




More information about the wine-cvs mailing list