No functional change. Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
23 lines
346 B
Bash
Executable file
23 lines
346 B
Bash
Executable file
#!/bin/sh -e
|
|
# Basic fairland test
|
|
|
|
if [ $# -ne 1 ]
|
|
then echo "Usage: $0 SRCDIR" >&2; exit 1
|
|
fi
|
|
|
|
srcdir="$1"
|
|
|
|
. "$srcdir"/tests/test-common.sh
|
|
|
|
create_sandbox
|
|
|
|
exec 3>sandbox/fairland.out
|
|
|
|
$files -f >&3
|
|
$fairland -s sandbox/newcap_script -R 1 10 30 >&3
|
|
|
|
exec 3>&-
|
|
|
|
$empdump -x >sandbox/final.xdump
|
|
|
|
cmp_out fairland.out final.xdump newcap_script
|