jdk/test/sun/security/tools/keytool/newhelp.sh
author weijun
Fri, 25 Apr 2014 10:57:09 +0800
changeset 24116 9f9b4ba34aad
parent 5506 202f599c92aa
child 40262 1b3dd37cb96d
permissions -rw-r--r--
8040321: keytool and jarsigner tests doesn't pass though VM tools to tools Reviewed-by: alanb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3948
736156ecc24c 6324292: keytool -help is unhelpful
weijun
parents:
diff changeset
     1
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3948
diff changeset
     2
# Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.
3948
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
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3948
diff changeset
    19
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3948
diff changeset
    20
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3948
diff changeset
    21
# questions.
3948
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
24116
9f9b4ba34aad 8040321: keytool and jarsigner tests doesn't pass though VM tools to tools
weijun
parents: 5506
diff changeset
    46
$TESTJAVA${FS}bin${FS}keytool ${TESTTOOLVMOPTS} -help 2> h1 || exit 1
9f9b4ba34aad 8040321: keytool and jarsigner tests doesn't pass though VM tools to tools
weijun
parents: 5506
diff changeset
    47
$TESTJAVA${FS}bin${FS}keytool ${TESTTOOLVMOPTS} -help -list 2> h2 || exit 2
3948
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