From 481bedb44ca51c013d7562ae4cbc330ca96222d0 Mon Sep 17 00:00:00 2001 From: Stephan Maka Date: Thu, 18 Apr 2019 15:55:02 +0200 Subject: [PATCH] windows tests: fix qemu path --- artiq/windows/qemu.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/windows/qemu.nix b/artiq/windows/qemu.nix index 4cd3986..5601160 100644 --- a/artiq/windows/qemu.nix +++ b/artiq/windows/qemu.nix @@ -23,7 +23,7 @@ let "-device" "e1000,netdev=n1" ]; argStr = builtins.concatStringsSep " " (args ++ extraArgs); - in "qemu-system-x86_64 ${argStr}"; + in "${qemu_kvm}/bin/qemu-system-x86_64 ${argStr}"; sshOpts = "-o StrictHostKeyChecking=accept-new -o UserKnownHostsFile=/tmp/known_hosts"; ssh = cmd: ''