annotate test/runtime/7020373/Test7020373.sh @ 7126:ce248dc0a656

removed all Graal modifications to ci and c1
author Doug Simon <doug.simon@oracle.com>
date Mon, 03 Dec 2012 17:54:05 +0100
parents 83b6305a5638
children 04d6d4322c6a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3862
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
1 #!/bin/sh
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
2
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
3 ##
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
4 ## @test
6242
fe94b4e7212b 7185550: TEST: runtime/7020373/Test7020373.sh fails because there is no test/runtime/7020373/testcase.jar
asaha
parents: 6230
diff changeset
5 ## @bug 7020373 7055247 7053586 7185550
3862
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
6 ## @key cte_test
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
7 ## @summary JSR rewriting can overflow memory address size variables
6242
fe94b4e7212b 7185550: TEST: runtime/7020373/Test7020373.sh fails because there is no test/runtime/7020373/testcase.jar
asaha
parents: 6230
diff changeset
8 ## @ignore Ignore it as 7053586 test uses lots of memory. See bug report for detail.
3862
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
9 ## @run shell Test7020373.sh
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
10 ##
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
11
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
12 if [ "${TESTSRC}" = "" ]
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
13 then TESTSRC=.
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
14 fi
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
15
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
16 if [ "${TESTJAVA}" = "" ]
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
17 then
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
18 PARENT=`dirname \`which java\``
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
19 TESTJAVA=`dirname ${PARENT}`
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
20 echo "TESTJAVA not set, selecting " ${TESTJAVA}
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
21 echo "If this is incorrect, try setting the variable manually."
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
22 fi
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
23
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
24 if [ "${TESTCLASSES}" = "" ]
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
25 then
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
26 echo "TESTCLASSES not set. Test cannot execute. Failed."
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
27 exit 1
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
28 fi
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
29
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
30 # set platform-dependent variables
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
31 OS=`uname -s`
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
32 case "$OS" in
6230
149c36689fcb 7053586: TEST: runtime/7020373/Test7020373.sh fails on 64-bit platforms
asaha
parents: 6074
diff changeset
33 SunOS | Linux | Darwin )
3862
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
34 NULL=/dev/null
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
35 PS=":"
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
36 FS="/"
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
37 ;;
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
38 Windows_* )
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
39 NULL=NUL
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
40 PS=";"
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
41 FS="\\"
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
42 ;;
6635
83b6305a5638 7191926: Remove MKS dependency in Hotspot regression tests
coleenp
parents: 6242
diff changeset
43 CYGWIN_* )
83b6305a5638 7191926: Remove MKS dependency in Hotspot regression tests
coleenp
parents: 6242
diff changeset
44 NULL=/dev/null
83b6305a5638 7191926: Remove MKS dependency in Hotspot regression tests
coleenp
parents: 6242
diff changeset
45 PS=";"
83b6305a5638 7191926: Remove MKS dependency in Hotspot regression tests
coleenp
parents: 6242
diff changeset
46 FS="/"
83b6305a5638 7191926: Remove MKS dependency in Hotspot regression tests
coleenp
parents: 6242
diff changeset
47 ;;
3862
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
48 * )
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
49 echo "Unrecognized system!"
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
50 exit 1;
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
51 ;;
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
52 esac
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
53
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
54 JEMMYPATH=${CPAPPEND}
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
55 CLASSPATH=.${PS}${TESTCLASSES}${PS}${JEMMYPATH} ; export CLASSPATH
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
56
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
57 THIS_DIR=`pwd`
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
58
6074
037973617842 7157734: hotspot test scripts not testing 64-bit JVM under JPRT/JTREG.
kevinw
parents: 3863
diff changeset
59 ${TESTJAVA}${FS}bin${FS}java ${TESTVMOPTS} -version
3862
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
60
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
61 ${TESTJAVA}${FS}bin${FS}jar xvf ${TESTSRC}${FS}testcase.jar
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
62
6074
037973617842 7157734: hotspot test scripts not testing 64-bit JVM under JPRT/JTREG.
kevinw
parents: 3863
diff changeset
63 ${TESTJAVA}${FS}bin${FS}java ${TESTVMOPTS} OOMCrashClass4000_1 > test.out 2>&1
3862
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
64
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
65 cat test.out
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
66
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
67 egrep "SIGSEGV|An unexpected error has been detected" test.out
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
68
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
69 if [ $? = 0 ]
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
70 then
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
71 echo "Test Failed"
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
72 exit 1
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
73 else
6230
149c36689fcb 7053586: TEST: runtime/7020373/Test7020373.sh fails on 64-bit platforms
asaha
parents: 6074
diff changeset
74 egrep "java.lang.LinkageError|java.lang.NoSuchMethodError|Main method not found in class OOMCrashClass4000_1|insufficient memory" test.out
3862
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
75 if [ $? = 0 ]
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
76 then
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
77 echo "Test Passed"
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
78 exit 0
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
79 else
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
80 echo "Test Failed"
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
81 exit 1
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
82 fi
52e4ba46751f 7020373: JSR rewriting can overflow memory address size variables
kamg
parents:
diff changeset
83 fi