Index: tests/pybin/settings.py
===================================================================
--- tests/pybin/settings.py	(revision 35a408b7afe5994cf2251ff7078ad4636f315997)
+++ tests/pybin/settings.py	(revision cc4218fdc8c0ca1549a8cbd4549cb4c57e892d2c)
@@ -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)
 
