summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/perl/perl/t/op/mkdir.t
blob: 0290ed4e5bbc397aee2c2ea7e404a92ddf3d3429 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!./perl

# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/mkdir.t,v 1.1.1.1 1993/08/23 21:30:04 nate Exp $

print "1..7\n";

`rm -rf blurfl`;

print (mkdir('blurfl',0777) ? "ok 1\n" : "not ok 1\n");
print (mkdir('blurfl',0777) ? "not ok 2\n" : "ok 2\n");
print ($! =~ /exist/ ? "ok 3\n" : "not 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 ($! =~ /such|exist/ ? "ok 7\n" : "not ok 7\n");
OpenPOWER on IntegriCloud