forked from pool/vagrant
Dan Čermák
d876f6f01d
switch back to %transfiletrigger & fix addressable have choice & add fix for boxes without a /etc/fstab OBS-URL: https://build.opensuse.org/request/show/833750 OBS-URL: https://build.opensuse.org/package/show/Virtualization:vagrant/vagrant?expand=0&rev=47
38 lines
1.3 KiB
Diff
38 lines
1.3 KiB
Diff
From 5dc6903fbc40884c5811a71ad43700f7357f7836 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Dan=20=C4=8Cerm=C3=A1k?= <dcermak@suse.com>
|
|
Date: Wed, 28 Aug 2019 13:39:58 +0200
|
|
Subject: [PATCH 09/10] Disable Subprocess unit test
|
|
|
|
This unit test is *very* flaky on OBS' workers and causes random build
|
|
failures. These are probably caused by worker being under high load and then
|
|
scheduling oddly.
|
|
---
|
|
test/unit/vagrant/util/subprocess_test.rb | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/test/unit/vagrant/util/subprocess_test.rb b/test/unit/vagrant/util/subprocess_test.rb
|
|
index 0ff5835c8..757d8ef8a 100644
|
|
--- a/test/unit/vagrant/util/subprocess_test.rb
|
|
+++ b/test/unit/vagrant/util/subprocess_test.rb
|
|
@@ -124,7 +124,7 @@ describe Vagrant::Util::Subprocess do
|
|
end
|
|
end
|
|
|
|
- it "should return true when subprocess is running" do
|
|
+ xit "should return true when subprocess is running" do
|
|
sleep_test_commands.each do |sp|
|
|
thread = Thread.new{ sp.execute }
|
|
sleep(0.3)
|
|
@@ -155,7 +155,7 @@ describe Vagrant::Util::Subprocess do
|
|
end
|
|
|
|
context "when subprocess is running" do
|
|
- it "should return true" do
|
|
+ xit "should return true" do
|
|
sleep_test_commands.each do |sp|
|
|
thread = Thread.new{ sp.execute }
|
|
sleep(0.1)
|
|
--
|
|
2.28.0
|
|
|