Skip to content

Commit 34303b9

Browse files
committed
x
1 parent 6a2ccef commit 34303b9

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

flake.lock

Lines changed: 4 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/default.nix

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
11
{
22
pkgs,
3-
libvirt-src,
3+
libvirt-chv,
44
nixos-image,
55
chv-ovmf,
66
}:
77

88
{
9-
default = pkgs.callPackage ./libvirt-test.nix {
9+
default = import ./libvirt-test.nix {
1010
inherit
11-
libvirt-src
11+
pkgs
12+
libvirt-chv
1213
nixos-image
1314
chv-ovmf
1415
;
1516
testScriptFile = ./testscript.py;
1617
};
1718

18-
long_migration_with_load = pkgs.callPackage ./libvirt-test.nix {
19+
long_migration_with_load = import ./libvirt-test.nix {
1920
inherit
20-
libvirt-src
21+
pkgs
22+
libvirt-chv
2123
nixos-image
2224
chv-ovmf
2325
;

tests/libvirt-test.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44

55
{
66
pkgs,
7-
libvirt-src,
7+
libvirt-chv,
88
nixos-image,
99
chv-ovmf,
1010
testScriptFile,
1111
}:
1212
let
13-
common = import ./common.nix { inherit libvirt-src nixos-image chv-ovmf; };
13+
common = import ./common.nix { inherit libvirt-chv nixos-image chv-ovmf; };
1414

1515
tls =
1616
let

0 commit comments

Comments
 (0)