diff options
author | intrigeri <intrigeri@boum.org> | 2010-06-29 15:53:51 +0200 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2010-06-29 15:53:51 +0200 |
commit | 1786b106a9c7f448136ff47d9b6dd26d48a5dd2e (patch) | |
tree | edfeed77be4a56ed06095bd67eb7cbc05a1a1eca /t/svn.t | |
parent | b225fdc44d4b3d2853db622d59aed7b59788aeec (diff) | |
parent | be60d261e6cbee094e4df74e1bb24c8ad3dc393d (diff) |
Merge remote branch 'upstream/master' into prv/po
Conflicts:
doc/plugins/po.mdwn
Diffstat (limited to 't/svn.t')
-rwxr-xr-x | t/svn.t | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -8,11 +8,14 @@ BEGIN { chomp $svn; my $svnadmin=`which svnadmin`; chomp $svnadmin; - if (! -x $svn || ! -x $svnadmin || ! mkdir($dir)) { + if (! -x $svn || ! -x $svnadmin) { eval q{ - use Test::More skip_all => "svn not available or could not make test dir" + use Test::More skip_all => "svn or svnadmin not available" } } + if (! mkdir($dir)) { + die $@; + } } use Test::More tests => 12; |