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
53 lines
1.2 KiB
Bash
53 lines
1.2 KiB
Bash
#!/bin/sh
|
|
# vim: filetype=sh noexpandtab ts=8 sw=8
|
|
# $FreeBSD: head/tools/regression/pjdfstest/tests/truncate/00.t 211352 2010-08-15 21:24:17Z pjd $
|
|
|
|
desc="truncate descrease/increase file size"
|
|
|
|
dir=`dirname $0`
|
|
. ${dir}/../misc.sh
|
|
|
|
echo "1..21"
|
|
|
|
n0=`namegen`
|
|
n1=`namegen`
|
|
|
|
expect 0 mkdir ${n1} 0755
|
|
cdir=`pwd`
|
|
cd ${n1}
|
|
|
|
expect 0 create ${n0} 0644
|
|
expect 0 truncate ${n0} 1234567
|
|
expect 1234567 lstat ${n0} size
|
|
expect 0 truncate ${n0} 567
|
|
expect 567 lstat ${n0} size
|
|
expect 0 unlink ${n0}
|
|
|
|
dd if=/dev/random of=${n0} bs=12345 count=1 >/dev/null 2>&1
|
|
expect 0 truncate ${n0} 23456
|
|
expect 23456 lstat ${n0} size
|
|
expect 0 truncate ${n0} 1
|
|
expect 1 lstat ${n0} size
|
|
expect 0 unlink ${n0}
|
|
|
|
# successful truncate(2) updates ctime.
|
|
expect 0 create ${n0} 0644
|
|
ctime1=`${fstest} stat ${n0} ctime`
|
|
sleep 1
|
|
expect 0 truncate ${n0} 123
|
|
ctime2=`${fstest} stat ${n0} ctime`
|
|
test_check $ctime1 -lt $ctime2
|
|
expect 0 unlink ${n0}
|
|
|
|
# unsuccessful truncate(2) does not update ctime.
|
|
expect 0 create ${n0} 0644
|
|
ctime1=`${fstest} stat ${n0} ctime`
|
|
sleep 1
|
|
expect EACCES -u 65534 truncate ${n0} 123
|
|
ctime2=`${fstest} stat ${n0} ctime`
|
|
test_check $ctime1 -eq $ctime2
|
|
expect 0 unlink ${n0}
|
|
|
|
cd ${cdir}
|
|
expect 0 rmdir ${n1}
|