1 #!/bin/sh
   2 # 
   3 # Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
   4 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   5 # 
   6 # This code is free software; you can redistribute it and/or modify it
   7 # under the terms of the GNU General Public License version 2 only, as
   8 # published by the Free Software Foundation.
   9 # 
  10 # This code is distributed in the hope that it will be useful, but WITHOUT
  11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  13 # version 2 for more details (a copy is included in the LICENSE file that
  14 # accompanied this code).
  15 # 
  16 # You should have received a copy of the GNU General Public License version
  17 # 2 along with this work; if not, write to the Free Software Foundation,
  18 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  19 # 
  20 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  21 # or visit www.oracle.com if you need additional information or have any
  22 # questions.
  23 # 
  24 # 
  25 
  26 ##
  27 ## @test
  28 ## @bug 8011675
  29 ## @summary testing of ciReplay with using generated by VM replay.txt 
  30 ## @author igor.ignatyev@oracle.com
  31 ## @requires vm.flightRecorder != true
  32 ## @run shell TestVM.sh
  33 ##
  34 
  35 if [ "${TESTSRC}" = "" ]
  36 then
  37   TESTSRC=${PWD}
  38   echo "TESTSRC not set.  Using "${TESTSRC}" as default"
  39 fi
  40 echo "TESTSRC=${TESTSRC}"
  41 
  42 ## Adding common setup Variables for running shell tests.
  43 . ${TESTSRC}/../../test_env.sh
  44 
  45 . ${TESTSRC}/common.sh
  46 
  47 generate_replay
  48 
  49 if [ ! -s ${replay_data} ]
  50 then
  51     test_fail 1 "CHECK :: REPLAY DATA GENERATION" \
  52         "replay data wasn't generated by VM"
  53 fi
  54 
  55 common_tests 10
  56 ${VM_TYPE}_tests 20
  57 
  58 cleanup
  59 
  60 if [ $is_tiered -eq 1 ]
  61 then
  62     stop_level=1
  63     while [ $stop_level -le $server_level ]
  64     do
  65         generate_replay "-XX:TieredStopAtLevel=$stop_level"
  66         if [ ! -s ${replay_data} ]
  67         then
  68             test_fail `expr $stop_level + 30` \
  69                     "TIERED LEVEL $stop_level :: REPLAY DATA GENERATION" \
  70                     "replay data wasn't generated by VM with stop_level=$stop_level"
  71         fi
  72         level=`grep "^compile " $replay_data | awk '{print $6}'`
  73         if [ $level -gt $stop_level ]
  74         then
  75             test_fail `expr $stop_level + 40` \
  76                     "TIERED LEVEL $stop_level :: COMP_LEVEL VERIFICATION" \
  77                     "comp_level in replay[$level] is greater than stop_level[$stop_level]"
  78         fi
  79         positive_test `expr $stop_level + 50` "TIERED LEVEL $stop_level :: REPLAY" \
  80                 "-XX:TieredStopAtLevel=$stop_level"
  81         stop_level=`expr $stop_level + 1`
  82         cleanup
  83     done
  84 fi
  85 
  86 echo TEST PASSED
  87