Home | History | Annotate | Download | only in portranges
      1 #!/usr/bin/ksh -p
      2 #
      3 # CDDL HEADER START
      4 #
      5 # The contents of this file are subject to the terms of the
      6 # Common Development and Distribution License (the "License").
      7 # You may not use this file except in compliance with the License.
      8 #
      9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
     10 # or http://www.opensolaris.org/os/licensing.
     11 # See the License for the specific language governing permissions
     12 # and limitations under the License.
     13 #
     14 # When distributing Covered Code, include this CDDL HEADER in each
     15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
     16 # If applicable, add the following below this CDDL HEADER, with the
     17 # fields enclosed by brackets "[]" replaced with your own identifying
     18 # information: Portions Copyright [yyyy] [name of copyright owner]
     19 #
     20 # CDDL HEADER END
     21 #
     22 
     23 #
     24 # Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
     25 # Use is subject to license terms.
     26 #
     27 # ident	"@(#)tc_portranges.ksh	1.3	09/05/04 SMI"
     28 #
     29 
     30 iclist="ic1 ic2 ic3 ic4 ic5 ic6 ic7 ic8 ic9 ic10 ic11 ic12 ic13 ic14 ic15 \
     31         ic16 ic17 ic18 ic19 ic20 ic21 ic22 ic23 ic24 ic25 ic26"
     32 ic1="portranges_lflag_fail"
     33 ic2="portranges_connect"
     34 ic3="portranges_connect_behind_boundary"
     35 ic4="multiple_ports_fail"
     36 ic5="port_0_client"
     37 ic6="port_0_server"
     38 ic7="port_65536_client"
     39 ic8="port_65536_server"
     40 ic9="port_0_range_client"
     41 ic10="port_65536_range_client"
     42 ic11="port_0_complex_range_client"
     43 ic12="port_65536_complex_range_client"
     44 ic13="malformed_portlist_1"
     45 ic14="malformed_portlist_2"
     46 ic15="malformed_portlist_3"
     47 ic16="malformed_portlist_4"
     48 ic17="malformed_portlist_5"
     49 ic18="malformed_portlist_6"
     50 ic19="malformed_portlist_7"
     51 ic20="duplicate_port_one_connect_only"
     52 ic21="complex_portlist_1"
     53 ic22="complex_portlist_2"
     54 ic23="complex_portlist_3"
     55 ic24="complex_portlist_4"
     56 ic25="complex_portlist_5"
     57 ic26="complex_portlist_realloc"
     58 
     59 . ./tp_portranges_001_neg
     60 . ./tp_portranges_002_pos
     61 . ./tp_portranges_003_neg
     62 . ./tp_portranges_004_neg
     63 . ./tp_portranges_005_neg
     64 . ./tp_portranges_006_neg
     65 . ./tp_portranges_007_neg
     66 . ./tp_portranges_008_neg
     67 . ./tp_portranges_009_neg
     68 . ./tp_portranges_010_neg
     69 . ./tp_portranges_011_neg
     70 . ./tp_portranges_012_neg
     71 . ./tp_portranges_013_neg
     72 . ./tp_portranges_014_neg
     73 . ./tp_portranges_015_neg
     74 . ./tp_portranges_016_neg
     75 . ./tp_portranges_017_neg
     76 . ./tp_portranges_018_neg
     77 . ./tp_portranges_019_neg
     78 . ./tp_portranges_020_pos
     79 . ./tp_portranges_021_pos
     80 . ./tp_portranges_022_pos
     81 . ./tp_portranges_023_pos
     82 . ./tp_portranges_024_pos
     83 . ./tp_portranges_025_pos
     84 . ./tp_portranges_026_pos
     85 
     86 . ${CTI_SUITE}/lib/common_funcs
     87 
     88 . ${TET_ROOT}/lib/ksh/tetapi.ksh
     89 . ${TET_ROOT}/lib/ksh/tcm.ksh
     90 
     91 # EOF
     92