49 lines
1.0 KiB
Plaintext
49 lines
1.0 KiB
Plaintext
:
|
|
#!/bin/sh
|
|
#
|
|
# @(#)runtests.mvs 1.2 97/01/03 Connectathon 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
|
|
|
|
ARGS="-m"
|
|
|
|
echo "Starting BASIC tests: test directory $NFSTESTDIR (arg: $ARGS)"
|
|
|
|
echo ""
|
|
# levels files dirs fname dname
|
|
test1 $ARGS 1 2 0 mvsn mvsd
|
|
echo ""
|
|
test2 $ARGS 1 2 0 mvsn mvsd
|
|
echo ""
|
|
test3 $ARGS 1
|
|
# echo ""
|
|
# test4 $ARGS DON'T DO SETATTR TESTS
|
|
echo ""
|
|
test4a $ARGS 10 1 mvsn
|
|
echo ""
|
|
test5 $ARGS 1048576 10 bigfile
|
|
# echo ""
|
|
# test5a $ARGS
|
|
# echo ""
|
|
# test5b $ARGS
|
|
echo ""
|
|
test6 -i $ARGS 200 1 mvsn
|
|
# echo ""
|
|
# test7 $ARGS DON'T TEST LINK OPERTAIONS
|
|
echo ""
|
|
test7a $ARGS 10 1 mvsn newn
|
|
# echo ""
|
|
# test7b $ARGS DON'T TEST LINK OPERATIONS
|
|
# echo ""
|
|
# test8 $ARGS DON'T TEST SYMLINK/READLINK OPERATIONS
|
|
echo ""
|
|
test9 $ARGS 1
|
|
echo ""
|
|
|
|
echo "Congratulations, you passed the basic tests for MVS/NFS!"
|