Home | History | Annotate | Download | only in uni-basic
      1 #!/bin/sh
      2 
      3 ################################################################################
      4 ##                                                                            ##
      5 ## Copyright (c) International Business Machines  Corp., 2005                 ##
      6 ##                                                                            ##
      7 ## This program is free software;  you can redistribute it and#or modify      ##
      8 ## it under the terms of the GNU General Public License as published by       ##
      9 ## the Free Software Foundation; either version 2 of the License, or          ##
     10 ## (at your option) any later version.                                        ##
     11 ##                                                                            ##
     12 ## This program is distributed in the hope that it will be useful, but        ##
     13 ## WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ##
     14 ## or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License   ##
     15 ## for more details.                                                          ##
     16 ##                                                                            ##
     17 ## You should have received a copy of the GNU General Public License          ##
     18 ## along with this program;  if not, write to the Free Software               ##
     19 ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA    ##
     20 ##                                                                            ##
     21 ##                                                                            ##
     22 ################################################################################
     23 #
     24 # File:
     25 #   tcp4-uni-basic09
     26 #
     27 # Description:
     28 #   This test is simlar to tcp4-uni-basic01 except for the following condition
     29 #     - Network is delayed
     30 #     - IPsec(AH), transport mode
     31 #
     32 # Setup:
     33 #   See ltp-yyyymmdd/testcases/network/stress/README
     34 #
     35 # Author:
     36 #   Mitsuru Chinen <mitch (at] jp.ibm.com>
     37 #
     38 # History:
     39 #	Oct 19 2005 - Created (Mitsuru Chinen)
     40 #
     41 #-----------------------------------------------------------------------
     42 # Uncomment line below for debug output.
     43 #trace_logic=${trace_logic:-"set -x"}
     44 $trace_logic
     45 
     46 #
     47 # Variables -- Changed by each uni-basic testcase
     48 #
     49 
     50 # The test case ID
     51 TCID=tcp4-uni-basic09
     52 
     53 # The version of IP
     54 IP_VER=4
     55 
     56 # true, if network is delayed
     57 DO_NET_DELAY=true
     58 
     59 # true, if ipsec is used
     60 DO_IPSEC=true
     61 
     62 # IPsec Protocol
     63 IPSEC_PROTO=ah
     64 
     65 # IPsec Mode
     66 IPSEC_MODE=transport
     67 
     68 . tcp4-uni-basic01
     69