summary refs log tree commit diff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/test.sh7
1 files changed, 1 insertions, 6 deletions
diff --git a/tools/test.sh b/tools/test.sh
index 3bf7e95..937974b 100755
--- a/tools/test.sh
+++ b/tools/test.sh
@@ -20,15 +20,10 @@ testcc() {
 init() {
 	case "$TARGET" in
 	arm64)
-		qemucmd=qemu-system-aarch64
-		if ! $qemucmd -version >/dev/null 2>&1
-		then
-			qemucmd=qemu-aarch64
-		fi
 		for p in aarch64-linux-musl aarch64-linux-gnu
 		do
 			cc="$p-gcc -no-pie"
-			qemu="$qemucmd -L /usr/$p"
+			qemu="qemu-aarch64 -L /usr/$p"
 			if
 				$cc -v >/dev/null 2>&1 &&
 				$qemu -version >/dev/null 2>&1 &&