diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-20 17:50:38 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-20 17:50:38 +0000 |
commit | 5a211162cd360449f2dbfb7ca9231c025909353f (patch) | |
tree | cb1e381023629ae2b3d383210f275f479afdb348 /t/op/mkdir.t | |
parent | 649da0762311e9a19091946020dc56feadc1378c (diff) | |
download | perl-5a211162cd360449f2dbfb7ca9231c025909353f.tar.gz |
default mkdir() mode argument to 0777
p4raw-id: //depot/perl@5164
Diffstat (limited to 't/op/mkdir.t')
-rwxr-xr-x | t/op/mkdir.t | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/t/op/mkdir.t b/t/op/mkdir.t index e9460239b2..cf8e55d75e 100755 --- a/t/op/mkdir.t +++ b/t/op/mkdir.t @@ -1,18 +1,15 @@ #!./perl -# $RCSfile: mkdir.t,v $$Revision: 4.1 $$Date: 92/08/07 18:28:06 $ +print "1..9\n"; -print "1..7\n"; - -if ($^O eq 'VMS') { # May as well test the library too - unshift @INC, '../lib'; - require File::Path; - File::Path::rmtree('blurfl'); -} -else { - $^O eq 'MSWin32' ? `del /s /q blurfl 2>&1` : `rm -rf blurfl`; +BEGIN { + chdir 't' if -d 't'; + unshift @INC, '../lib'; } +use File::Path; +rmtree('blurfl'); + # tests 3 and 7 rather naughtily expect English error messages $ENV{'LC_ALL'} = 'C'; $ENV{LANGUAGE} = 'C'; # GNU locale extension @@ -24,3 +21,5 @@ 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 (mkdir('blurfl') ? "ok 8\n" : "not ok 8\n"); +print (rmdir('blurfl') ? "ok 9\n" : "not ok 9\n"); |