summary refs log tree commit diff
path: root/nixos/lib
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2018-02-11 21:38:35 +0100
committerFranz Pletz <fpletz@fnordicwalking.de>2018-02-11 23:40:54 +0100
commit54c7ca34c4fc1c0cd23ec337ca24e2986daef906 (patch)
tree7cf93d9531895284f501e15bdf18b9158a521992 /nixos/lib
parent74736f26c2578786eefce80f906b0858780e1d55 (diff)
downloadnixlib-54c7ca34c4fc1c0cd23ec337ca24e2986daef906.tar
nixlib-54c7ca34c4fc1c0cd23ec337ca24e2986daef906.tar.gz
nixlib-54c7ca34c4fc1c0cd23ec337ca24e2986daef906.tar.bz2
nixlib-54c7ca34c4fc1c0cd23ec337ca24e2986daef906.tar.lz
nixlib-54c7ca34c4fc1c0cd23ec337ca24e2986daef906.tar.xz
nixlib-54c7ca34c4fc1c0cd23ec337ca24e2986daef906.tar.zst
nixlib-54c7ca34c4fc1c0cd23ec337ca24e2986daef906.zip
nixos/testing: use the same qemu in the test driver
The qemu_test package is also used for running a NixOS qemu VM.
Diffstat (limited to 'nixos/lib')
-rw-r--r--nixos/lib/testing.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/lib/testing.nix b/nixos/lib/testing.nix
index cf213d906f58..ddab23cce393 100644
--- a/nixos/lib/testing.nix
+++ b/nixos/lib/testing.nix
@@ -29,7 +29,7 @@ rec {
         cp ${./test-driver/Logger.pm} $libDir/Logger.pm
 
         wrapProgram $out/bin/nixos-test-driver \
-          --prefix PATH : "${lib.makeBinPath [ qemu vde2 netpbm coreutils ]}" \
+          --prefix PATH : "${lib.makeBinPath [ qemu_test vde2 netpbm coreutils ]}" \
           --prefix PERL5LIB : "${with perlPackages; lib.makePerlPath [ TermReadLineGnu XMLWriter IOTty FileSlurp ]}:$out/lib/perl5/site_perl"
       '';
   };