jdk/test/sun/security/tools/keytool/file-in-help.sh
author weijun
Wed, 03 Feb 2010 17:04:52 +0800
changeset 4819 c1661a223e19
child 5506 202f599c92aa
permissions -rw-r--r--
6922482: keytool's help on -file always shows 'output file' Reviewed-by: wetmore
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4819
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
     1
#
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
     2
# Copyright 2010 Sun Microsystems, Inc.  All Rights Reserved.
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
     4
#
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
     7
# published by the Free Software Foundation.
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
     8
#
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
     9
# This code is distributed in the hope that it will be useful, but WITHOUT
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    10
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    11
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    12
# version 2 for more details (a copy is included in the LICENSE file that
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    13
# accompanied this code).
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    14
#
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    15
# You should have received a copy of the GNU General Public License version
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    16
# 2 along with this work; if not, write to the Free Software Foundation,
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    17
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    18
#
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    19
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    20
# CA 95054 USA or visit www.sun.com if you need additional information or
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    21
# have any questions.
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    22
#
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    23
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    24
# @test
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    25
# @bug 6922482
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    26
# @summary keytool's help on -file always shows 'output file'
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    27
#
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    28
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    29
if [ "${TESTJAVA}" = "" ] ; then
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    30
  JAVAC_CMD=`which javac`
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    31
  TESTJAVA=`dirname $JAVAC_CMD`/..
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    32
fi
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    33
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    34
# set platform-dependent variables
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    35
OS=`uname -s`
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    36
case "$OS" in
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    37
  Windows_* )
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    38
    FS="\\"
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    39
    ;;
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    40
  * )
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    41
    FS="/"
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    42
    ;;
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    43
esac
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    44
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    45
LANG=C
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    46
$TESTJAVA${FS}bin${FS}keytool -printcertreq -help 2> h1 || exit 1
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    47
$TESTJAVA${FS}bin${FS}keytool -exportcert -help 2> h2 || exit 2
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    48
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    49
grep "input file" h1 || exit 3
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    50
grep "output file" h2 || exit 4
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    51
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    52
exit 0
c1661a223e19 6922482: keytool's help on -file always shows 'output file'
weijun
parents:
diff changeset
    53