OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gdb-7.1/] [gdb/] [testsuite/] [gdb.cell/] [ea-test.exp] - Diff between revs 227 and 816

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 227 Rev 816
# Copyright 2009 Free Software Foundation, Inc.
# Copyright 2009 Free Software Foundation, Inc.
#
#
# This program is free software; you can redistribute it and/or modify
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
# (at your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see .
# along with this program.  If not, see .
#
#
# Contributed by Markus Deuling .
# Contributed by Markus Deuling .
#
#
# Testsuite for Cell Broadband Engine combined debugger
# Testsuite for Cell Broadband Engine combined debugger
# Testcase for __ea pointer
# Testcase for __ea pointer
load_lib cell.exp
load_lib cell.exp
set testfile "ea-test"
set testfile "ea-test"
set source ${srcdir}/${subdir}/${testfile}.c
set source ${srcdir}/${subdir}/${testfile}.c
set binary ${objdir}/${subdir}/${testfile}
set binary ${objdir}/${subdir}/${testfile}
if {[skip_cell_tests]} {
if {[skip_cell_tests]} {
    return 0
    return 0
}
}
# Compile SPU binary.
# Compile SPU binary.
if { [gdb_compile_cell_spu $source $binary executable {debug}]  != "" } {
if { [gdb_compile_cell_spu $source $binary executable {debug}]  != "" } {
  unsupported "Compile spu binary failed, so all tests in this file will automatically fail."
  unsupported "Compile spu binary failed, so all tests in this file will automatically fail."
  return -1
  return -1
}
}
gdb_exit
gdb_exit
gdb_start
gdb_start
gdb_reinitialize_dir $srcdir/$subdir
gdb_reinitialize_dir $srcdir/$subdir
gdb_load ${binary}
gdb_load ${binary}
if ![runto_main] then {
if ![runto_main] then {
  fail "Can't run to main"
  fail "Can't run to main"
  return 0
  return 0
}
}
# p
# p
gdb_test "p ppe_pointer" \
gdb_test "p ppe_pointer" \
         "(int.*@__ea).*0x0.*" \
         "(int.*@__ea).*0x0.*" \
         "p ppe_pointer"
         "p ppe_pointer"
gdb_test "p normal_pointer" \
gdb_test "p normal_pointer" \
         "(int.*).*0x0.*" \
         "(int.*).*0x0.*" \
         "p normal_pointer"
         "p normal_pointer"
gdb_test "p local_ppe_pointer" \
gdb_test "p local_ppe_pointer" \
         "(int.*@__ea).*0x0.*" \
         "(int.*@__ea).*0x0.*" \
         "p local_ppe_pointer"
         "p local_ppe_pointer"
gdb_test "p local_normal_pointer" \
gdb_test "p local_normal_pointer" \
         "(int.*).*0x0.*" \
         "(int.*).*0x0.*" \
         "p local_normal_pointer"
         "p local_normal_pointer"
# ptype
# ptype
gdb_test "ptype ppe_pointer" \
gdb_test "ptype ppe_pointer" \
         "type = int.*@__ea" \
         "type = int.*@__ea" \
         "ptype ppe_pointer"
         "ptype ppe_pointer"
gdb_test "ptype normal_pointer" \
gdb_test "ptype normal_pointer" \
         "type = int.*" \
         "type = int.*" \
         "ptype normal_pointer"
         "ptype normal_pointer"
gdb_test "ptype local_ppe_pointer" \
gdb_test "ptype local_ppe_pointer" \
         "type = int.*@__ea" \
         "type = int.*@__ea" \
         "ptype local_ppe_pointer"
         "ptype local_ppe_pointer"
gdb_test "ptype local_normal_pointer" \
gdb_test "ptype local_normal_pointer" \
         "type = int.*" \
         "type = int.*" \
         "ptype local_normal_pointer"
         "ptype local_normal_pointer"
# info locals
# info locals
gdb_test "info locals" \
gdb_test "info locals" \
         ".*local_ppe_pointer =.*0x0.*local_normal_pointer =.*0x0.*" \
         ".*local_ppe_pointer =.*0x0.*local_normal_pointer =.*0x0.*" \
         "info locals"
         "info locals"
# p &
# p &
gdb_test "p &ppe_pointer" \
gdb_test "p &ppe_pointer" \
         ".*=.*(int.*@__ea.*).*0x.*" \
         ".*=.*(int.*@__ea.*).*0x.*" \
         "p &ppe_pointer"
         "p &ppe_pointer"
gdb_test "p &normal_pointer" \
gdb_test "p &normal_pointer" \
         ".*=.*(int.*).*0x.*" \
         ".*=.*(int.*).*0x.*" \
         "p &normal_pointer"
         "p &normal_pointer"
gdb_test "p &local_ppe_pointer" \
gdb_test "p &local_ppe_pointer" \
         ".*=.*(int.*@__ea.*).*0x.*" \
         ".*=.*(int.*@__ea.*).*0x.*" \
         "p &local_ppe_pointer"
         "p &local_ppe_pointer"
gdb_test "p &local_normal_pointer" \
gdb_test "p &local_normal_pointer" \
         ".*=.*(int.*).*0x.*" \
         ".*=.*(int.*).*0x.*" \
         "p &local_normal_pointer"
         "p &local_normal_pointer"
# ptype *
# ptype *
gdb_test "ptype *ppe_pointer" \
gdb_test "ptype *ppe_pointer" \
         "type = int" \
         "type = int" \
         "ptype *ppe_pointer"
         "ptype *ppe_pointer"
gdb_test "ptype *normal_pointer" \
gdb_test "ptype *normal_pointer" \
         "type = int" \
         "type = int" \
         "ptype *normal_pointer"
         "ptype *normal_pointer"
gdb_test "ptype *local_ppe_pointer" \
gdb_test "ptype *local_ppe_pointer" \
         "type = int" \
         "type = int" \
         "ptype *local_ppe_pointer"
         "ptype *local_ppe_pointer"
gdb_test "ptype *local_normal_pointer" \
gdb_test "ptype *local_normal_pointer" \
         "type = int" \
         "type = int" \
         "ptype *local_normal_pointer"
         "ptype *local_normal_pointer"
gdb_exit
gdb_exit
return 0
return 0
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.