diff options
author | Joey Hess <joey@kitenet.net> | 2010-06-25 00:30:12 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-06-25 00:30:12 -0400 |
commit | 1f6ea9a626d9983ce84343e6a73604d58aa1df09 (patch) | |
tree | a6e35f463b10fdb258fa56898bb54579185e1133 /t/mercurial.t | |
parent | d8d057c356e0244585aa0eac075b39958c6c3f37 (diff) | |
download | ikiwiki-1f6ea9a626d9983ce84343e6a73604d58aa1df09.tar ikiwiki-1f6ea9a626d9983ce84343e6a73604d58aa1df09.tar.gz |
clean up messages about unavailable vcs programs
Diffstat (limited to 't/mercurial.t')
-rwxr-xr-x | t/mercurial.t | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/t/mercurial.t b/t/mercurial.t index b64ea8e56..4918fc76e 100755 --- a/t/mercurial.t +++ b/t/mercurial.t @@ -6,11 +6,14 @@ BEGIN { $dir = "/tmp/ikiwiki-test-hg.$$"; my $hg=`which hg`; chomp $hg; - if (! -x $hg || ! mkdir($dir)) { + if (! -x $hg) { eval q{ - use Test::More skip_all => "hg not available or could not make test dir" + use Test::More skip_all => "hg not available" } } + if (! mkdir($dir)) { + die $@; + } } use Test::More tests => 11; |