< prev index next >

test/com/sun/jdi/RedefineException.sh

Print this page
rev 12339 : 8075658: Mark intermittently failuring core-svc tests


  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 #  @test
  27 #  @bug 4559100
  28 #  @summary The VM crashes when a method in a redefined class throws an exception.
  29 #  @author Jim Holmlund
  30 #

  31 #  @run shell RedefineException.sh
  32 
  33 # This is another symptomm of 4559100
  34 # This causes a bus error on solsparc:
  35 #  ---- called from signal handler with signal 10 (SIGBUS) ------
  36 #  [11] constantPoolOopDesc::klass_at_if_loaded(0xffbed4d8, 0x16, 0xffbed5cc, 0x0, 0x1, 0xfa40b330), at 0xfe11568c
  37 #  [12] methodOopDesc::fast_exception_handler_bci_for(0x6, 0x1, 0xfe400a0c, 0x0, 0x2d1f0, 0x0), at 0xfe12e620
  38 #  [13] jvmdi::post_exception_throw_event(0x2d1f0, 0xf61036f8, 0xf6103752, 0xf20414a8, 0x2e2928, 0xfe12e190), at 0xfe2a4fa4
  39 
  40 # These are variables that can be set to control execution
  41 
  42 createJavaFile()
  43 {
  44     cat <<EOF > $1.java.1
  45 
  46 public class $1 {
  47     String str;
  48     int ii;
  49     static public void main(String[] args) {
  50        System.out.println("In Main");




  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 #  @test
  27 #  @bug 4559100
  28 #  @summary The VM crashes when a method in a redefined class throws an exception.
  29 #  @author Jim Holmlund
  30 #
  31 #  @key intermittent
  32 #  @run shell RedefineException.sh
  33 
  34 # This is another symptomm of 4559100
  35 # This causes a bus error on solsparc:
  36 #  ---- called from signal handler with signal 10 (SIGBUS) ------
  37 #  [11] constantPoolOopDesc::klass_at_if_loaded(0xffbed4d8, 0x16, 0xffbed5cc, 0x0, 0x1, 0xfa40b330), at 0xfe11568c
  38 #  [12] methodOopDesc::fast_exception_handler_bci_for(0x6, 0x1, 0xfe400a0c, 0x0, 0x2d1f0, 0x0), at 0xfe12e620
  39 #  [13] jvmdi::post_exception_throw_event(0x2d1f0, 0xf61036f8, 0xf6103752, 0xf20414a8, 0x2e2928, 0xfe12e190), at 0xfe2a4fa4
  40 
  41 # These are variables that can be set to control execution
  42 
  43 createJavaFile()
  44 {
  45     cat <<EOF > $1.java.1
  46 
  47 public class $1 {
  48     String str;
  49     int ii;
  50     static public void main(String[] args) {
  51        System.out.println("In Main");


< prev index next >