From 09683f0bb984393cb7143c1e06d6e07b881bed18 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Fri, 8 Feb 2013 15:15:01 -0500 Subject: [PATCH] Unit Tests - Added confirmation to prevent hang on various platforms. --- test/uuid.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/uuid.t b/test/uuid.t index 026834568..1d97ad94f 100755 --- a/test/uuid.t +++ b/test/uuid.t @@ -33,7 +33,8 @@ use Test::More tests => 26; # Create the rc file. if (open my $fh, '>', 'uuid.rc') { - print $fh "data.location=.\n"; + print $fh "data.location=.\n", + "confirmation=off\n"; close $fh; ok (-r 'uuid.rc', 'Created uuid.rc'); }