feat: 9.5.9
This commit is contained in:
parent
cb1753732b
commit
35f43a7909
1084 changed files with 558985 additions and 0 deletions
28
lz4/tests/test_install.sh
Executable file
28
lz4/tests/test_install.sh
Executable file
|
|
@ -0,0 +1,28 @@
|
|||
#/usr/bin/env sh
|
||||
set -e
|
||||
|
||||
|
||||
make="make -C $lz4_root"
|
||||
unamestr=$(uname)
|
||||
if [ "$unamestr" = 'Linux' ]; then
|
||||
make="make -C $lz4_root"
|
||||
elif [ "$unamestr" = 'FreeBSD' -o "$unamestr" = 'OpenBSD' ]; then
|
||||
make="gmake -C $lz4_root"
|
||||
fi
|
||||
|
||||
for cmd in install uninstall; do
|
||||
for upper in DUMMY PREFIX EXEC_PREFIX LIBDIR INCLUDEDIR PKGCONFIGDIR BINDIR MANDIR MAN1DIR ; do
|
||||
lower=$(echo $upper | tr '[:upper:]' '[:lower:]')
|
||||
tmp_lower="$(pwd)/tmp-lower-$lower/"
|
||||
tmp_upper="$(pwd)/tmp-upper-$lower/"
|
||||
echo $make $cmd DESTDIR="$tmp_upper" $upper="test"
|
||||
$make $cmd DESTDIR="$tmp_upper" $upper="test" >/dev/null
|
||||
echo $make $cmd DESTDIR="$tmp_lower" $lower="test"
|
||||
$make $cmd DESTDIR="$tmp_lower" $lower="test" >/dev/null
|
||||
command diff -r "$tmp_lower" "$tmp_upper" && echo "SAME!" || false
|
||||
if [ "x$cmd" = "xuninstall" ]; then
|
||||
test -z "$(find "$tmp_lower" -type f)" && echo "EMPTY!" || false
|
||||
rm -rf "$tmp_upper" "$tmp_lower"
|
||||
fi
|
||||
done
|
||||
done
|
||||
Reference in a new issue