Home | History | Annotate | Download | only in grp-operation
      1 #!/bin/sh
      2 # Copyright (c) International Business Machines  Corp., 2006
      3 # Copyright (c) 2017 Petr Vorel <pvorel (at] suse.cz>
      4 #
      5 # This program is free software; you can redistribute it and/or
      6 # modify it under the terms of the GNU General Public License as
      7 # published by the Free Software Foundation; either version 2 of
      8 # the License, or (at your option) any later version.
      9 #
     10 # This program is distributed in the hope that it would be useful,
     11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
     12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     13 # GNU General Public License for more details.
     14 #
     15 # You should have received a copy of the GNU General Public License
     16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
     17 #
     18 # Setup: testcases/network/stress/README
     19 #
     20 # Author: Mitsuru Chinen <mitch (at] jp.ibm.com>
     21 
     22 . mcast-lib.sh
     23 
     24 tst_resm TINFO "joining $MCASTNUM_HEAVY IPv$ipver multicast groups on multiple sockets"
     25 
     26 do_setup()
     27 {
     28 	# Increase the maximum number of open file descriptors
     29 	if [ $(ulimit -n) -lt $MCASTNUM_HEAVY ]; then
     30 		ulimit -n $MCASTNUM_HEAVY || tst_brkm TCONF \
     31 			"Failed to set the maximum number of open file descriptors to $MCASTNUM_HEAVY"
     32 	fi
     33 
     34 	mcast_setup $MCASTNUM_HEAVY
     35 }
     36 
     37 do_setup
     38 do_multicast_test_multiple_join $MCASTNUM_HEAVY true
     39 tst_exit
     40