3416500aef
The summary of changes is as follows.. Generic changes:: - Added configure support [2]. - Check for lchmod filesystem support with create_file(..); for testcases that require lchmod, skip the testcase -- otherwise use chmod directly [1]. - Added Travis CI integration [2]. - Added utimensat testcases [1]. Linux support:: - Fixed Linux support to pass on later supported versions of Fedora/Ubuntu [2]. - Conditionally enable posix_fallocate(2) support [2]. OSX support:: - Fixed compilation on OSX [2]. - Added partial OSX support (the test run isn't fully green yet) [2]. MFC after: 2 months Obtained from: https://github.com/pjd/pjdfstest/tree/0.1 Relnotes: yes Submitted by: asomers [1], ngie [2] Tested with: UFS, ZFS
37 lines
700 B
Bash
37 lines
700 B
Bash
#! /bin/sh
|
|
# vim: filetype=sh noexpandtab ts=8 sw=8
|
|
# $FreeBSD$
|
|
|
|
desc="utimensat can set mtime < atime or vice versa"
|
|
|
|
dir=`dirname $0`
|
|
. ${dir}/../misc.sh
|
|
|
|
require "utimensat"
|
|
|
|
echo "1..10"
|
|
|
|
n0=`namegen`
|
|
n1=`namegen`
|
|
DATE1=100000000 #Sat Mar 3 02:46:40 MST 1973
|
|
DATE2=200000000 #Mon May 3 13:33:20 MDT 1976
|
|
|
|
expect 0 mkdir ${n1} 0755
|
|
cdir=`pwd`
|
|
cd ${n1}
|
|
|
|
|
|
create_file regular ${n0}
|
|
expect 0 open . O_RDONLY : utimensat 0 ${n0} $DATE1 0 $DATE2 0 0
|
|
expect $DATE1 lstat ${n0} atime
|
|
expect $DATE2 lstat ${n0} mtime
|
|
|
|
expect 0 open . O_RDONLY : utimensat 0 ${n0} $DATE2 0 $DATE1 0 0
|
|
expect $DATE2 lstat ${n0} atime
|
|
expect $DATE1 lstat ${n0} mtime
|
|
|
|
expect 0 unlink ${n0}
|
|
|
|
cd ${cdir}
|
|
expect 0 rmdir ${n1}
|