jdk/test/sun/security/tools/keytool/file-in-help.sh
author amlu
Fri, 01 Jul 2016 12:50:58 +0800
changeset 39332 98615d275088
parent 24116 9f9b4ba34aad
child 40262 1b3dd37cb96d
permissions -rw-r--r--
8160658: sun/security/tools/keytool/standard.sh fails on all platforms after JDK-8160415 Reviewed-by: weijun
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
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4819
diff changeset
     2
# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
4819
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
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4819
diff changeset
    19
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4819
diff changeset
    20
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4819
diff changeset
    21
# questions.
4819
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
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} -printcertreq -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} -exportcert -help 2> h2 || exit 2
4819
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