diff options
-rw-r--r-- | generator/generator_actions.ml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generator/generator_actions.ml b/generator/generator_actions.ml index 0033e3ac..79ed8f49 100644 --- a/generator/generator_actions.ml +++ b/generator/generator_actions.ml @@ -3655,7 +3655,7 @@ To get the checksums for many files, use C<guestfs_checksums_out>." }; [["mkdir"; "/tar_in_gz"]; ["tar_in"; "../data/helloworld.tar.gz"; "/tar_in_gz"; "gzip"]; ["cat"; "/tar_in_gz/hello"]], "hello\n"); - InitScratchFS, Always, TestOutput ( + InitScratchFS, IfAvailable "xz", TestOutput ( [["mkdir"; "/tar_in_xz"]; ["tar_in"; "../data/helloworld.tar.xz"; "/tar_in_xz"; "xz"]; ["cat"; "/tar_in_xz/hello"]], "hello\n") @@ -4934,10 +4934,10 @@ the command C<mount -o loop file mountpoint>." }; InitEmpty, Always, TestRun ( [["part_disk"; "/dev/sda"; "mbr"]; ["mkswap"; "/dev/sda1"; "hello"; "NOARG"]]); - InitEmpty, Always, TestRun ( + InitEmpty, IfAvailable "linuxfsuuid", TestRun ( [["part_disk"; "/dev/sda"; "mbr"]; ["mkswap"; "/dev/sda1"; "NOARG"; uuid]]); - InitEmpty, Always, TestRun ( + InitEmpty, IfAvailable "linuxfsuuid", TestRun ( [["part_disk"; "/dev/sda"; "mbr"]; ["mkswap"; "/dev/sda1"; "hello"; uuid]]) ]); |