2008-07-03 17:37:46 +05:30
|
|
|
#!/bin/sh
|
|
|
|
# unit test for is_older_than code of baselayout (2008/06/19)
|
|
|
|
# Author: Matthias Schwarzott <zzam@gentoo.org>
|
|
|
|
|
2022-04-17 01:43:08 +05:30
|
|
|
if [ -z "${BUILD_ROOT}" ]; then
|
|
|
|
printf "%s\n" "BUILD_ROOT must be defined" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
PATH="${BUILD_ROOT}"/src/is_older_than:${PATH}
|
|
|
|
|
|
|
|
TMPDIR="${BUILD_ROOT}"/tmp-"$(basename "$0")"
|
2008-07-03 17:37:46 +05:30
|
|
|
|
2008-07-03 18:39:10 +05:30
|
|
|
# Please note that we added this unit test because the function
|
|
|
|
# should really be called is_newer_than as it's what it's really testing.
|
2022-04-15 21:23:24 +05:30
|
|
|
# Or more perversely, returning 0 on failure and 1 and success.
|
2008-07-03 18:39:10 +05:30
|
|
|
|
2008-07-03 17:37:46 +05:30
|
|
|
# bool is_older_than(reference, files/dirs to check)
|
|
|
|
#
|
|
|
|
# return 0 if any of the files/dirs are newer than
|
|
|
|
# the reference file
|
|
|
|
#
|
|
|
|
# EXAMPLE: if is_older_than a.out *.o ; then ...
|
2009-02-23 15:05:57 +05:30
|
|
|
ref_is_older_than()
|
|
|
|
{
|
2008-07-03 17:37:46 +05:30
|
|
|
local x= ref="$1"
|
|
|
|
shift
|
|
|
|
|
2008-07-03 17:50:32 +05:30
|
|
|
for x; do
|
2008-07-03 17:37:46 +05:30
|
|
|
[ "${x}" -nt "${ref}" ] && return 0
|
2009-02-23 15:05:57 +05:30
|
|
|
if [ -d "${x}" ]; then
|
|
|
|
ref_is_older_than "${ref}" "${x}"/* && return 0
|
|
|
|
fi
|
2008-07-03 17:37:46 +05:30
|
|
|
done
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2009-02-23 15:05:57 +05:30
|
|
|
do_test()
|
|
|
|
{
|
2008-07-03 17:37:46 +05:30
|
|
|
local r1= r2=
|
|
|
|
|
2008-07-03 18:03:42 +05:30
|
|
|
ref_is_older_than "$@"
|
2008-07-03 17:37:46 +05:30
|
|
|
r1=$?
|
2008-07-03 18:03:42 +05:30
|
|
|
is_older_than "$@"
|
2008-07-03 17:37:46 +05:30
|
|
|
r2=$?
|
|
|
|
|
2022-04-17 01:43:08 +05:30
|
|
|
[ -n "${VERBOSE}" ] &&
|
|
|
|
printf "reference = %s | OpenRC = %s\n" "$r1" "$r2"
|
2008-07-03 17:37:46 +05:30
|
|
|
[ $r1 = $r2 ]
|
|
|
|
}
|
|
|
|
|
2009-02-23 15:05:57 +05:30
|
|
|
echo_cmd()
|
|
|
|
{
|
2022-04-17 01:43:08 +05:30
|
|
|
[ -n "${VERBOSE}" ] && printf "%s\n" "$@"
|
2008-07-03 17:50:32 +05:30
|
|
|
"$@"
|
|
|
|
}
|
|
|
|
|
2009-02-23 15:05:57 +05:30
|
|
|
test_it()
|
|
|
|
{
|
|
|
|
do_test "${TMPDIR}"/ref "${TMPDIR}"/dir1 "${TMPDIR}"/dir2
|
2008-07-03 17:37:46 +05:30
|
|
|
}
|
|
|
|
|
2009-02-23 16:13:24 +05:30
|
|
|
run_test()
|
|
|
|
{
|
|
|
|
echo_cmd mkdir -p "${TMPDIR}"/dir1 "${TMPDIR}"/dir2
|
|
|
|
echo_cmd touch "${TMPDIR}"/dir1/f1 "${TMPDIR}"/dir1/f2 \
|
|
|
|
"${TMPDIR}"/dir1/f3 "${TMPDIR}"/dir2/f1 \
|
|
|
|
"${TMPDIR}"/dir2/f2 "${TMPDIR}"/dir2/f3
|
|
|
|
echo_cmd sleep 1
|
|
|
|
echo_cmd touch "${TMPDIR}"/ref
|
|
|
|
test_it || return 1
|
2008-07-03 17:37:46 +05:30
|
|
|
|
2009-02-23 16:13:24 +05:30
|
|
|
echo_cmd sleep 1
|
|
|
|
echo_cmd touch "${TMPDIR}"/dir1/f2
|
|
|
|
test_it || return 1
|
2008-07-03 17:37:46 +05:30
|
|
|
|
2009-02-23 16:13:24 +05:30
|
|
|
echo_cmd sleep 1
|
|
|
|
echo_cmd touch "${TMPDIR}"/ref
|
|
|
|
test_it || return 1
|
2008-07-03 17:37:46 +05:30
|
|
|
|
2009-02-23 16:13:24 +05:30
|
|
|
echo_cmd sleep 1
|
|
|
|
echo_cmd touch "${TMPDIR}"/dir2/f2
|
|
|
|
test_it || return 1
|
|
|
|
}
|
2008-07-03 17:37:46 +05:30
|
|
|
|
|
|
|
rm -rf "${TMPDIR}"
|
2009-02-23 16:13:24 +05:30
|
|
|
mkdir "${TMPDIR}"
|
|
|
|
run_test
|
|
|
|
retval=$?
|
|
|
|
rm -rf "${TMPDIR}"
|
|
|
|
exit ${retval}
|