test/jdk/sun/security/pkcs11/Config/ReadConfInUTF16Env.sh
author jjiang
Wed, 15 Aug 2018 18:41:18 +0800
changeset 51460 97e361fe3433
parent 47216 71c04702a3d5
permissions -rw-r--r--
8164639: Configure PKCS11 tests to use user-supplied NSS libraries Summary: Provide system property "test.nss.lib.paths" for specifying a set of absolute paths to the custom NSS lib directories Reviewed-by: weijun, rhalade
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
47112
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
     1
#
51460
97e361fe3433 8164639: Configure PKCS11 tests to use user-supplied NSS libraries
jjiang
parents: 47216
diff changeset
     2
# Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
47112
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
     4
#
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
     7
# published by the Free Software Foundation.
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
     8
#
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
     9
# This code is distributed in the hope that it will be useful, but WITHOUT
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    10
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    11
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    12
# version 2 for more details (a copy is included in the LICENSE file that
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    13
# accompanied this code).
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    14
#
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    15
# You should have received a copy of the GNU General Public License version
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    16
# 2 along with this work; if not, write to the Free Software Foundation,
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    17
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    18
#
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    19
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    20
# or visit www.oracle.com if you need additional information or have any
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    21
# questions.
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    22
#
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    23
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    24
# @test
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    25
# @bug 8187023
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    26
# @summary Pkcs11 config file should be assumed in ISO-8859-1
51460
97e361fe3433 8164639: Configure PKCS11 tests to use user-supplied NSS libraries
jjiang
parents: 47216
diff changeset
    27
# @library /test/lib
47112
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    28
# @build ReadConfInUTF16Env
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    29
# @run shell ReadConfInUTF16Env.sh
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    30
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    31
# jtreg does not like -Dfile.encoding=UTF-16 inside a @run main line,
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    32
# testlibrary.ProcessTools.createJavaProcessBuilder() also had troubles
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    33
# executing a subprocess with -Dfile.encoding=UTF-16 option added,
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    34
# therefore a shell test is written.
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    35
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    36
$TESTJAVA/bin/java $TESTVMOPTS -cp $TESTCLASSES \
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    37
  -Dfile.encoding=UTF-16 \
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    38
  ReadConfInUTF16Env
fe70db821411 8187023: Cannot read pkcs11 config file in UTF-16 environment
igerasim
parents:
diff changeset
    39