aboutsummaryrefslogtreecommitdiffstats
path: root/perl/test/utime.t
blob: 8ccefc671bbf0769bb612e6191aead5d5a2a7861 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl
use test::helper qw($_real $_point);
use Test::More;
plan tests => 3;
my (@stat);
chdir($_real);
system("echo frog >file");
chdir($_point);
ok(utime(1,2,"file"),"set utime");
@stat = stat("file");
is($stat[8],1,"atime");
is($stat[9],2,"mtime");
unlink("file");