From 3d4beaf952df5051721307d58151e6979c40cfa8 Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Thu, 10 Jan 2019 13:06:17 -0600 Subject: [PATCH] tests: create as many drives for virtualbox as libvirt This just ensures that virtualbox and libvirt are making the same amount of devices for tests. Signed-off-by: Andrew Schoen --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 339b577d3..0079cba5e 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -477,7 +477,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| '--add', 'scsi'] end - (0..1).each do |d| + (0..2).each do |d| vb.customize ['createhd', '--filename', "disk-#{i}-#{d}", '--size', '11000'] unless File.exist?("disk-#{i}-#{d}.vdi")