From dcb2122e853ab4b82e0baf44f7110f16c7c74dc3 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sat, 18 Mar 2006 03:00:22 +0000 Subject: My mount testsuite. Not automatically run at the moment, need to figure out how to (optionally) supply User Mode Linux to runtests. --- testsuite/umlwrapper.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 testsuite/umlwrapper.sh (limited to 'testsuite/umlwrapper.sh') diff --git a/testsuite/umlwrapper.sh b/testsuite/umlwrapper.sh new file mode 100755 index 000000000..e55e4dbd3 --- /dev/null +++ b/testsuite/umlwrapper.sh @@ -0,0 +1,20 @@ +#!/bin/sh + +# Wrapper for User Mode Linux emulation environment + +RUNFILE="$(pwd)/${1}.testroot" +if [ -z "$RUNFILE" ] || [ ! -x "$RUNFILE" ] +then + echo "Can't run '$RUNFILE'" + exit 1 +fi + +shift + +if [ -z $(which linux) ] +then + echo "No User Mode Linux." + exit 1; +fi + +linux rootfstype=hostfs rw init="$RUNFILE" TESTDIR=`pwd` PATH="$PATH" $* quiet -- cgit v1.2.3