#!/bin/sh
#
#       @(#)runtests	1.2 89/01/08 NFS Rev 2 testsuite
#
. ../startup.sh

#  see ../startup.sh for usage info
# 'ARGS=-f' for basic funtionality tests (one pass of each test)
# 'ARGS=  ' for longer tests without timing (1-3 minutes per test)
# 'ARGS=-t' for longer tests with timing

echo "Starting BASIC tests: test directory $NFSTESTDIR (arg: $ARGS)"

# File and Directory tree creation test
echo ""
test1 $ARGS
# File and Directory tree removal test
echo ""
test2 $ARGS
# Lookup across mount point
echo ""
test3 $ARGS
# Setattr, getattr and lookup tests
echo ""
test4 $ARGS
# Getattr and lookup tests
# echo ""
# test4a $ARGS
# Write and read tests
echo ""
test5 $ARGS
# Test 5a and 5b separate out the read and write tests into simpler components.
# echo ""
# test5a $ARGS
# echo ""
# test5b $ARGS
# Read Directory test
echo ""
test6 $ARGS
# Rename and Link Test
echo ""
test7 $ARGS
# Rename Test
# echo ""
# test7a $ARGS
# Link Test
# echo ""
# test7b $ARGS
# Symlink and readlink test
echo ""
test8 $ARGS
# Getfs test
echo ""
test9 $ARGS
echo ""

echo "Congratulations, you passed the basic tests!"
