test/hotspot/jtreg/vmTestbase/jit/tiered/tieredTest.sh
author kvn
Wed, 08 Aug 2018 18:38:34 -0700
changeset 51341 09cc8813ae51
parent 50366 4d85990f9c4a
permissions -rw-r--r--
8207965: C2-only debug build fails Reviewed-by: kvn, iignatyev Contributed-by: xxinliu@amazon.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
50366
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
     1
#!/bin/bash
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
     2
#
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
     3
# Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved.
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
     4
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
     5
#
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
     6
# This code is free software; you can redistribute it and/or modify it
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
     7
# under the terms of the GNU General Public License version 2 only, as
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
     8
# published by the Free Software Foundation.
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
     9
#
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    10
# This code is distributed in the hope that it will be useful, but WITHOUT
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    11
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    12
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    13
# version 2 for more details (a copy is included in the LICENSE file that
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    14
# accompanied this code).
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    15
#
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    16
# You should have received a copy of the GNU General Public License version
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    17
# 2 along with this work; if not, write to the Free Software Foundation,
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    18
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    19
#
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    20
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    21
# or visit www.oracle.com if you need additional information or have any
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    22
# questions.
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    23
#
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    24
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    25
JAVA_OPTS="$TESTJAVAOPTS $TESTVMOPTS"
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    26
JAVA="$TESTJAVA/bin/java"
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    27
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    28
log=output.txt
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    29
tiered="off"
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    30
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    31
if echo "$JAVA_OPTS" | grep "[-]XX:+TieredCompilation"; then
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    32
    tiered="on"
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    33
elif echo "$JAVA_OPTS" | grep "[-]XX:-TieredCompilation"; then
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    34
    tiered="off"
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    35
else
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    36
    echo "TEST PASSED: TieredCompilation option is not specified. Nothing to test"
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    37
    exit 0
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    38
fi
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    39
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    40
echo "Tiered is ${tiered}"
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    41
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    42
$JAVA $JAVA_OPTS -XX:+PrintTieredEvents -version >$log 2>&1
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    43
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    44
if grep "Client VM" $log; then
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    45
    echo "TEST PASSED: Client VM. The test is useless"
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    46
    exit 0
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    47
fi
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    48
51341
09cc8813ae51 8207965: C2-only debug build fails
kvn
parents: 50366
diff changeset
    49
if grep "TieredCompilation not supported in this VM" $log; then
09cc8813ae51 8207965: C2-only debug build fails
kvn
parents: 50366
diff changeset
    50
    echo "TEST PASSED: Non-tiered Server VM. The test is useless"
09cc8813ae51 8207965: C2-only debug build fails
kvn
parents: 50366
diff changeset
    51
    exit 0
09cc8813ae51 8207965: C2-only debug build fails
kvn
parents: 50366
diff changeset
    52
fi
09cc8813ae51 8207965: C2-only debug build fails
kvn
parents: 50366
diff changeset
    53
50366
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    54
if ! egrep '^[0-9.]+: \[compile level=[0-9]' $log; then
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    55
    if [ "${tiered}" == "on" ]; then
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    56
        echo "TEST FAILED: No PrintTieredEvents output"
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    57
        exit 2
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    58
    else
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    59
        echo "TEST PASSED: No events with TieredCompilation turned off"
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    60
        exit 0
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    61
    fi
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    62
else
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    63
    if [ "${tiered}" == "off" ]; then
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    64
        echo "TEST FAILED: PrintTieredEvents output found but TieredCompilation is turned off"
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    65
        exit 2
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    66
    else
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    67
        echo "TEST PASSED: PrintTieredEvents output found"
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    68
        exit 0
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    69
    fi
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    70
fi