summaryrefslogtreecommitdiff
path: root/t/op/filetest.t
blob: 13c5917adc070dd3f66ad70ac6444398a3a8471e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!./perl

# There are few filetest operators that are portable enough to test.
# See pod/perlport.pod for details.

BEGIN {
    chdir 't' if -d 't';
}

print "1..10\n";

print "not " unless -d 'op';
print "ok 1\n";

print "not " unless -f 'TEST';
print "ok 2\n";

print "not " if -f 'op';
print "ok 3\n";

print "not " if -d 'TEST';
print "ok 4\n";

print "not " unless -r 'TEST';
print "ok 5\n";

# make sure TEST is r-x
eval { chmod 0555, 'TEST' };
if ($@) {
  print "#[$@]\nok 6 # skipped\n";
}
else {
  print "not " if -w 'TEST';
  print "ok 6\n";
}

# Scripts are not -x everywhere.

print "not " unless -r 'op';
print "ok 7\n";

print "not " unless -w 'op';
print "ok 8\n";

print "not " unless -x 'op'; # Hohum.  Are directories -x everywhere?
print "ok 9\n";

print "not " unless "@{[grep -r, qw(foo io noo op zoo)]}" eq "io op";
print "ok 10\n";