Index: tests/pybin/settings.py
===================================================================
--- tests/pybin/settings.py	(revision 884f14097e02f66e09356b478c49b4c0cd96149a)
+++ tests/pybin/settings.py	(revision d82892a91ee391c4b1f081a7e5c8216c409a7a4d)
@@ -22,4 +22,5 @@
 		'x86-64'		: 'x64',
 		'x86_64'		: 'x64',
+		'aarch64'		: 'x64',
 		'x86'			: 'x86',
 		'i386'		: 'x86',
@@ -40,5 +41,5 @@
 			canonical_host = Architecture.make_canonical( config.HOSTARCH )
 		except KeyError:
-			print("Unkown host architecture %s" % config.HOSTARCH, file=sys.stderr)
+			print("Unknown host architecture %s" % config.HOSTARCH, file=sys.stderr)
 			sys.exit(1)
 
@@ -47,5 +48,5 @@
 				arch = Architecture.make_canonical( arch )
 			except KeyError:
-				print("Unkown architecture %s" % arch, file=sys.stderr)
+				print("Unknown architecture %s" % arch, file=sys.stderr)
 				sys.exit(1)
 
