annotate test/runtime/jsig/Test8017498.sh @ 11967:f9ee986a9fea

8021296: [TESTBUG] Test8017498.sh fails to find "gcc" and fails to compile on some Linux releases Summary: Added checking for gcc and simplified the sig_handler() in the test case Reviewed-by: dcubed, coleenp, minqi, dlong
author ccheung
date Tue, 30 Jul 2013 14:14:25 -0700
parents 72727c4b6dec
children e567d5afd4dd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11147
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
1 #!/bin/sh
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
2
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
3 #
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
4 # Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
5 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
6 #
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
7 # This code is free software; you can redistribute it and/or modify it
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
8 # under the terms of the GNU General Public License version 2 only, as
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
9 # published by the Free Software Foundation.
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
10 #
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
11 # This code is distributed in the hope that it will be useful, but WITHOUT
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
14 # version 2 for more details (a copy is included in the LICENSE file that
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
15 # accompanied this code).
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
16 #
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
17 # You should have received a copy of the GNU General Public License version
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
18 # 2 along with this work; if not, write to the Free Software Foundation,
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
20 #
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
22 # or visit www.oracle.com if you need additional information or have any
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
23 # questions.
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
24 #
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
25
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
26 ##
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
27 ## @test Test8017498.sh
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
28 ## @bug 8017498
11160
72727c4b6dec 8020791: [TESTBUG] runtime/jsig/Test8017498.sh failed to compile native code
ccheung
parents: 11147
diff changeset
29 ## @bug 8020791
11967
f9ee986a9fea 8021296: [TESTBUG] Test8017498.sh fails to find "gcc" and fails to compile on some Linux releases
ccheung
parents: 11160
diff changeset
30 ## @bug 8021296
11147
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
31 ## @summary sigaction(sig) results in process hang/timed-out if sig is much greater than SIGRTMAX
11160
72727c4b6dec 8020791: [TESTBUG] runtime/jsig/Test8017498.sh failed to compile native code
ccheung
parents: 11147
diff changeset
32 ## @run shell/timeout=30 Test8017498.sh
11147
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
33 ##
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
34
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
35 if [ "${TESTSRC}" = "" ]
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
36 then
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
37 TESTSRC=${PWD}
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
38 echo "TESTSRC not set. Using "${TESTSRC}" as default"
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
39 fi
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
40 echo "TESTSRC=${TESTSRC}"
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
41 ## Adding common setup Variables for running shell tests.
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
42 . ${TESTSRC}/../../test_env.sh
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
43
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
44 # set platform-dependent variables
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
45 OS=`uname -s`
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
46 case "$OS" in
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
47 Linux)
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
48 echo "Testing on Linux"
11967
f9ee986a9fea 8021296: [TESTBUG] Test8017498.sh fails to find "gcc" and fails to compile on some Linux releases
ccheung
parents: 11160
diff changeset
49 gcc_cmd=`which gcc`
f9ee986a9fea 8021296: [TESTBUG] Test8017498.sh fails to find "gcc" and fails to compile on some Linux releases
ccheung
parents: 11160
diff changeset
50 if [ "x$gcc_cmd" == "x" ]; then
f9ee986a9fea 8021296: [TESTBUG] Test8017498.sh fails to find "gcc" and fails to compile on some Linux releases
ccheung
parents: 11160
diff changeset
51 echo "WARNING: gcc not found. Cannot execute test." 2>&1
f9ee986a9fea 8021296: [TESTBUG] Test8017498.sh fails to find "gcc" and fails to compile on some Linux releases
ccheung
parents: 11160
diff changeset
52 exit 0;
f9ee986a9fea 8021296: [TESTBUG] Test8017498.sh fails to find "gcc" and fails to compile on some Linux releases
ccheung
parents: 11160
diff changeset
53 fi
11147
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
54 if [ "$VM_BITS" = "64" ]
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
55 then
11160
72727c4b6dec 8020791: [TESTBUG] runtime/jsig/Test8017498.sh failed to compile native code
ccheung
parents: 11147
diff changeset
56 MY_LD_PRELOAD=${TESTJAVA}${FS}jre${FS}lib${FS}amd64${FS}libjsig.so
11147
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
57 else
11160
72727c4b6dec 8020791: [TESTBUG] runtime/jsig/Test8017498.sh failed to compile native code
ccheung
parents: 11147
diff changeset
58 MY_LD_PRELOAD=${TESTJAVA}${FS}jre${FS}lib${FS}i386${FS}libjsig.so
11147
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
59 fi
11160
72727c4b6dec 8020791: [TESTBUG] runtime/jsig/Test8017498.sh failed to compile native code
ccheung
parents: 11147
diff changeset
60 echo MY_LD_PRELOAD = ${MY_LD_PRELOAD}
11147
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
61 ;;
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
62 *)
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
63 echo "Test passed; only valid for Linux"
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
64 exit 0;
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
65 ;;
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
66 esac
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
67
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
68 THIS_DIR=.
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
69
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
70 cp ${TESTSRC}${FS}*.java ${THIS_DIR}
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
71 ${TESTJAVA}${FS}bin${FS}javac *.java
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
72
11967
f9ee986a9fea 8021296: [TESTBUG] Test8017498.sh fails to find "gcc" and fails to compile on some Linux releases
ccheung
parents: 11160
diff changeset
73 $gcc_cmd -DLINUX -fPIC -shared \
11160
72727c4b6dec 8020791: [TESTBUG] runtime/jsig/Test8017498.sh failed to compile native code
ccheung
parents: 11147
diff changeset
74 -o ${TESTSRC}${FS}libTestJNI.so \
72727c4b6dec 8020791: [TESTBUG] runtime/jsig/Test8017498.sh failed to compile native code
ccheung
parents: 11147
diff changeset
75 -I${TESTJAVA}${FS}include \
72727c4b6dec 8020791: [TESTBUG] runtime/jsig/Test8017498.sh failed to compile native code
ccheung
parents: 11147
diff changeset
76 -I${TESTJAVA}${FS}include${FS}linux \
72727c4b6dec 8020791: [TESTBUG] runtime/jsig/Test8017498.sh failed to compile native code
ccheung
parents: 11147
diff changeset
77 ${TESTSRC}${FS}TestJNI.c
11147
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
78
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
79 # run the java test in the background
11160
72727c4b6dec 8020791: [TESTBUG] runtime/jsig/Test8017498.sh failed to compile native code
ccheung
parents: 11147
diff changeset
80 cmd="LD_PRELOAD=$MY_LD_PRELOAD \
72727c4b6dec 8020791: [TESTBUG] runtime/jsig/Test8017498.sh failed to compile native code
ccheung
parents: 11147
diff changeset
81 ${TESTJAVA}${FS}bin${FS}java \
72727c4b6dec 8020791: [TESTBUG] runtime/jsig/Test8017498.sh failed to compile native code
ccheung
parents: 11147
diff changeset
82 -Djava.library.path=${TESTSRC}${FS} -server TestJNI 100"
72727c4b6dec 8020791: [TESTBUG] runtime/jsig/Test8017498.sh failed to compile native code
ccheung
parents: 11147
diff changeset
83 echo "$cmd > test.out 2>&1"
72727c4b6dec 8020791: [TESTBUG] runtime/jsig/Test8017498.sh failed to compile native code
ccheung
parents: 11147
diff changeset
84 eval $cmd > test.out 2>&1
11147
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
85
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
86 grep "old handler" test.out > ${NULL}
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
87 if [ $? = 0 ]
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
88 then
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
89 echo "Test Passed"
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
90 exit 0
732af649bc3a 8017498: JVM crashes when native code calls sigaction(sig) where sig>=0x20
ccheung
parents:
diff changeset
91 fi
11160
72727c4b6dec 8020791: [TESTBUG] runtime/jsig/Test8017498.sh failed to compile native code
ccheung
parents: 11147
diff changeset
92
72727c4b6dec 8020791: [TESTBUG] runtime/jsig/Test8017498.sh failed to compile native code
ccheung
parents: 11147
diff changeset
93 echo "Test Failed"
72727c4b6dec 8020791: [TESTBUG] runtime/jsig/Test8017498.sh failed to compile native code
ccheung
parents: 11147
diff changeset
94 exit 1