nfs01 537 B

12345678910111213141516171819202122
  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. TST_TESTFUNC="do_test"
  11. . nfs_lib.sh
  12. do_test()
  13. {
  14. tst_res TINFO "starting 'nfs01_open_files $NFILES'"
  15. ROD nfs01_open_files $NFILES
  16. tst_res TPASS "test finished successfully"
  17. }
  18. tst_run