From aabe5124c4d24cd55d0fbaa699a4a597dcbdef37 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 15 Jan 2014 11:12:13 -0800 Subject: [PATCH] core: don't test fork(1) on Windows --- test/unit/vagrant/batch_action_test.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/unit/vagrant/batch_action_test.rb b/test/unit/vagrant/batch_action_test.rb index 86254e8b8..0bc940d26 100644 --- a/test/unit/vagrant/batch_action_test.rb +++ b/test/unit/vagrant/batch_action_test.rb @@ -34,7 +34,9 @@ describe Vagrant::BatchAction do called_actions.include?([machine2, "destroy", nil]).should be end - it "should handle forks gracefully" do + it "should handle forks gracefully", :skip_windows do + # Doesn't need to be tested on Windows since Windows doesn't + # support fork(1) machine.stub(:action) do |action, opts| pid = fork if !pid