diff options
author | Helmut Grohne <helmut@subdivi.de> | 2025-03-05 11:34:32 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2025-03-05 11:37:46 +0100 |
commit | 85de70ea61b4a544b2c1b42e0466e5d6494e7b80 (patch) | |
tree | 9af174740a6f8c7776fe45a440b44130305c4c55 | |
parent | d760fac413ddb077cc96d528c3ccb73a3ff22457 (diff) | |
download | debvm-85de70ea61b4a544b2c1b42e0466e5d6494e7b80.tar.gz |
debian/tests: tighten dependency on qemu-kvm
The native test really wants to run kvm (whether it uses kvm or tcg is
another question), but debvm only depends on qemu-kvm | qemu-system-any.
The latter alternative is of little use for the test and makes it fail.
-rw-r--r-- | debian/tests/control | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/tests/control b/debian/tests/control index 4f4bba3..36cef6d 100644 --- a/debian/tests/control +++ b/debian/tests/control @@ -1,11 +1,11 @@ Test-Command: setsid ./tests/create-and-run.sh $(dpkg --print-architecture) "" -Depends: debian-archive-keyring, debvm, expect, file, openssh-client, seabios [ppc64el] +Depends: debian-archive-keyring, debvm, expect, file, openssh-client, seabios [ppc64el], qemu-kvm Restrictions: allow-stderr, needs-internet, needs-root # Skip running on armel and armhf as the emulation is too slow there to actually work. Architecture: !armel !armhf Test-Command: unshare -U -m -p -f -r --mount-proc true || exit 77; ./tests/create-and-run.sh $(dpkg --print-architecture) "" -Depends: debian-archive-keyring, debvm, expect, file, openssh-client, seabios [ppc64el], uidmap +Depends: debian-archive-keyring, debvm, expect, file, openssh-client, seabios [ppc64el], uidmap, qemu-kvm Restrictions: allow-stderr, needs-internet, skippable # Skip running on armel and armhf as the emulation is too slow there to actually work. Architecture: !armel !armhf |