• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/sh
2# SPDX-License-Identifier: GPL-2.0-or-later
3# Copyright (c) 2015-2018 Oracle and/or its affiliates. All Rights Reserved.
4# Copyright (c) International Business Machines  Corp., 2001
5#
6#  PURPOSE: Stresses NFS by opening a large number of files on a nfs
7#           mounted filesystem.
8#
9# Ported by Robbie Williamson (robbiew@us.ibm.com)
10
11TST_TESTFUNC="do_test"
12
13. nfs_lib.sh
14
15do_test()
16{
17	tst_res TINFO "starting 'nfs01_open_files $NFILES'"
18	ROD nfs01_open_files $NFILES
19	tst_res TPASS "test finished successfully"
20}
21
22tst_run
23