Default to /tmp/loadertest for lua test scripts

This commit is contained in:
Kyle Evans 2018-02-16 20:23:48 +00:00
parent 5f9d54f4da
commit ff8409871e
2 changed files with 3 additions and 2 deletions

View File

@ -2,6 +2,7 @@
# $FreeBSD$
# Quick script to build a suitable /boot dir somewhere in the tree for testing.
# dir may be passed in, will default to /tmp/loadertest if not specified
die() {
echo $*
@ -11,7 +12,7 @@ die() {
dir=$1
cd $(make -V SRCTOP)
[ -n "$dir" ] || die "No directory specified"
[ -n "$dir" ] || dir=/tmp/loadertest
set -e

View File

@ -12,7 +12,7 @@ obj=$(make -V .OBJDIR)
t=$obj/userboot/test/test
u=$obj/userboot/userboot/userboot.so
[ -n "$dir" ] || die "No directory specified"
[ -n "$dir" ] || dir=/tmp/loadertest
[ -d "$dir" ] || die "Directory $dir doesn't exist"
[ -f "$dir/boot/lua/loader.lua" ] || die "No boot/lua/loader.lua found"
[ -f "$dir/boot/kernel/kernel" ] || die "No kernel to load"