From: Jarkko Hietaniemi Date: Fri, 22 Jun 2001 21:50:38 +0000 (+0000) Subject: Yet another error message. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2272a9a6ecad223a6d9b89c36469298f420c27d0;p=p5sagit%2Fp5-mst-13.2.git Yet another error message. p4raw-id: //depot/perl@10847 --- diff --git a/t/op/mkdir.t b/t/op/mkdir.t index c5a090c..37da9c3 100755 --- a/t/op/mkdir.t +++ b/t/op/mkdir.t @@ -20,6 +20,6 @@ print ($! =~ /cannot move|exist|denied/ ? "ok 3\n" : "# $!\nnot ok 3\n"); print (-d 'blurfl' ? "ok 4\n" : "not ok 4\n"); print (rmdir('blurfl') ? "ok 5\n" : "not ok 5\n"); print (rmdir('blurfl') ? "not ok 6\n" : "ok 6\n"); -print ($! =~ /cannot find|such|exist|not found/i ? "ok 7\n" : "# $!\nnot ok 7\n"); +print ($! =~ /cannot find|such|exist|not found|not a directory/i ? "ok 7\n" : "# $!\nnot ok 7\n"); print (mkdir('blurfl') ? "ok 8\n" : "not ok 8\n"); print (rmdir('blurfl') ? "ok 9\n" : "not ok 9\n");