#!/bin/sh
# Copyright (c) 2015 Oracle and/or its affiliates. All Rights Reserved.
# Copyright (c) International Business Machines  Corp., 2001
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of
# the License, or (at your option) any later version.
#
# This program is distributed in the hope that it would be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#  PURPOSE: Stresses NFS by opening a large number of files on a nfs
#           mounted filesystem.
#
# Ported by Robbie Williamson (robbiew@us.ibm.com)

TCID="nfs01"
TST_TOTAL=1
TST_CLEANUP="nfs_cleanup"

. nfs_lib.sh
. test_net.sh

do_test()
{
	tst_resm TINFO "starting 'nfs01_open_files $NFILES'"
	ROD nfs01_open_files $NFILES

	cd $LTPROOT
	ROD umount $TST_TMPDIR
	tst_resm TPASS "test finished successfully"
}

nfs_setup
do_test

tst_exit