40a8ac8f62
- Remove tools/regression/pjdfstest - Add upgrade directions for contrib/pjdfstest - Add a note to UPDATING for the move (the reachover Makefiles are coming soon) Functional differences: - ftruncate testcases are added from upstream (github) Non-functional differences: - The copyright for the project has been updated to 2012 - pjd's contact information has been updated Discussed with: -testing, jmmv, pjd MFC after: 2 weeks Sponsored by: EMC / Isilon Storage Division
37 lines
966 B
Plaintext
37 lines
966 B
Plaintext
# $FreeBSD: head/tools/regression/pjdfstest/tests/conf 211354 2010-08-15 21:29:03Z pjd $
|
|
# pjdfstest configuration file
|
|
|
|
# Supported operating systems: FreeBSD, Darwin, SunOS, Linux
|
|
os=`uname`
|
|
|
|
case "${os}" in
|
|
FreeBSD|Darwin)
|
|
GREP=grep
|
|
#fs=`df -T . | tail -1 | awk '{print $2}'`
|
|
pattern="`df . | tail -1 | awk '{printf("%s on %s \n", $1, $6)}'`"
|
|
fs=`mount | ${GREP} -E "^${pattern}" | awk -F '[(,]' '{print toupper($2)}'`
|
|
;;
|
|
Solaris|SunOS)
|
|
GREP=ggrep
|
|
pattern=`df -Pk . | tail -1 | awk '{printf("%s on %s \n", $1, $6)}'`
|
|
fs=`mount -v | ${GREP} -E "^${pattern}" | awk '{print $5}' | \
|
|
tr -s '[:lower:]' '[:upper:]'`
|
|
;;
|
|
Linux)
|
|
GREP=grep
|
|
fs=`df -PT . | tail -1 | awk '{print toupper($2)}'`
|
|
;;
|
|
*)
|
|
echo "Unsupported operating system ${os}." >/dev/stderr
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
# If we cannot figure out file system type, define it here.
|
|
#fs="UFS"
|
|
|
|
if [ -z "${fs}" ]; then
|
|
echo "Cannot figure out file system type, define it by hand." >/dev/stderr
|
|
exit 1
|
|
fi
|