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