OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gdb-6.8/] [pre-binutils-2.20.1-sync/] [gdb/] [testsuite/] [gdb.hp/] [gdb.aCC/] [optimize.exp] - Diff between revs 157 and 223

Only display areas with differences | Details | Blame | View Log

Rev 157 Rev 223
# Copyright (C) 1998, 2007, 2008 Free Software Foundation, Inc.
# Copyright (C) 1998, 2007, 2008 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 .  */
# Please email any bugs, comments, and/or additions to this file to:
# Please email any bugs, comments, and/or additions to this file to:
# bug-gdb@prep.ai.mit.edu
# bug-gdb@prep.ai.mit.edu
# optimize.exp -- Expect script for testing apps compiled with -O
# optimize.exp -- Expect script for testing apps compiled with -O
# There is no DOC support for gdb yet, return 0 for now.
# There is no DOC support for gdb yet, return 0 for now.
return 0
return 0
global timeout
global timeout
# use this to debug:
# use this to debug:
#
#
#log_user 1
#log_user 1
if $tracelevel then {
if $tracelevel then {
    strace $tracelevel
    strace $tracelevel
}
}
if { [skip_hp_tests] } then { continue }
if { [skip_hp_tests] } then { continue }
set testfile optimize
set testfile optimize
set srcfile ${testfile}.c
set srcfile ${testfile}.c
set binfile ${objdir}/${subdir}/${testfile}
set binfile ${objdir}/${subdir}/${testfile}
if [get_compiler_info ${binfile}] {
if [get_compiler_info ${binfile}] {
    return -1;
    return -1;
}
}
if { $gcc_compiled } then { continue }
if { $gcc_compiled } then { continue }
# Vanilla -O, which is the same as +O2
# Vanilla -O, which is the same as +O2
#
#
if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug optimize=+O2}] != "" } {
if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug optimize=+O2}] != "" } {
     untested optimize.exp
     untested optimize.exp
     return -1
     return -1
}
}
gdb_exit
gdb_exit
gdb_start
gdb_start
gdb_reinitialize_dir $srcdir/$subdir
gdb_reinitialize_dir $srcdir/$subdir
send_gdb "file $binfile\n"
send_gdb "file $binfile\n"
gdb_expect {
gdb_expect {
    -re ".*no debugging symbols found.*$gdb_prompt $" {
    -re ".*no debugging symbols found.*$gdb_prompt $" {
        fail "Didn't find debug symbols; CHFts23488"
        fail "Didn't find debug symbols; CHFts23488"
    }
    }
    -re ".*No header section (PXDB data).*$gdb_prompt $" {
    -re ".*No header section (PXDB data).*$gdb_prompt $" {
        fail "pointless warning"
        fail "pointless warning"
    }
    }
    -re ".*done.*$gdb_prompt $" {
    -re ".*done.*$gdb_prompt $" {
        pass "load debug symbols"
        pass "load debug symbols"
    }
    }
    timeout { fail "timeout on file" }
    timeout { fail "timeout on file" }
}
}
# Two lines at the same place after opt.
# Two lines at the same place after opt.
#
#
gdb_test "b 28"   ".*"
gdb_test "b 28"   ".*"
gdb_test "b 26"   ".*also set at.*" "same line"
gdb_test "b 26"   ".*also set at.*" "same line"
gdb_test "b 47"   ".*"
gdb_test "b 47"   ".*"
gdb_test "b 48"   ".*also set at.*" "same line"
gdb_test "b 48"   ".*also set at.*" "same line"
gdb_test "tb main" ".*"
gdb_test "tb main" ".*"
set old_timeout $timeout
set old_timeout $timeout
set timeout [expr "$timeout + 200"]
set timeout [expr "$timeout + 200"]
send_gdb "r\n"
send_gdb "r\n"
gdb_expect {
gdb_expect {
    -re ".*No header section (PXDB data).*$gdb_prompt $" {
    -re ".*No header section (PXDB data).*$gdb_prompt $" {
        fail "pointless warning"
        fail "pointless warning"
    }
    }
    -re ".*main.*2\[12].*$gdb_prompt $" {
    -re ".*main.*2\[12].*$gdb_prompt $" {
        # All the lines before line 21 or 22 are
        # All the lines before line 21 or 22 are
        # evaporated by the compiler.
        # evaporated by the compiler.
        #
        #
        pass "hit main"
        pass "hit main"
    }
    }
    -re ".*$gdb_prompt $" {
    -re ".*$gdb_prompt $" {
        fail "didn't hit main"
        fail "didn't hit main"
    }
    }
    timeout { fail "timeout on run" }
    timeout { fail "timeout on run" }
}
}
set timeout $old_timeout
set timeout $old_timeout
gdb_test "c" ".*Breakpoint 1.*33.*"
gdb_test "c" ".*Breakpoint 1.*33.*"
gdb_test "c" ".*51.*"
gdb_test "c" ".*51.*"
gdb_test "cle" ".*Deleted breakpoints.*" "set 2, so del 2"
gdb_test "cle" ".*Deleted breakpoints.*" "set 2, so del 2"
gdb_test "b callee" ".*"
gdb_test "b callee" ".*"
gdb_test "c" ".*callee.*" "hit called rtn"
gdb_test "c" ".*callee.*" "hit called rtn"
gdb_exit
gdb_exit
# +O4, don't use -g
# +O4, don't use -g
#
#
if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {optimize=+O4}] != "" } {
if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {optimize=+O4}] != "" } {
     untested optimize.exp
     untested optimize.exp
     return -1
     return -1
}
}
gdb_start
gdb_start
gdb_reinitialize_dir $srcdir/$subdir
gdb_reinitialize_dir $srcdir/$subdir
send_gdb "file $binfile\n"
send_gdb "file $binfile\n"
gdb_expect {
gdb_expect {
    -re ".*no debugging symbols found.*$gdb_prompt $" {
    -re ".*no debugging symbols found.*$gdb_prompt $" {
        pass "Didn't find debug symbols, as expected"
        pass "Didn't find debug symbols, as expected"
    }
    }
    -re ".*No header section (PXDB data).*$gdb_prompt $" {
    -re ".*No header section (PXDB data).*$gdb_prompt $" {
        fail "pointless warning"
        fail "pointless warning"
    }
    }
    -re ".*done.*$gdb_prompt $" {
    -re ".*done.*$gdb_prompt $" {
        fail "Somehow found debug symbols--make this a pass?"
        fail "Somehow found debug symbols--make this a pass?"
    }
    }
    timeout { fail "timeout on file" }
    timeout { fail "timeout on file" }
}
}
gdb_test "b main"   ".*"
gdb_test "b main"   ".*"
gdb_test "b callee" ".*"
gdb_test "b callee" ".*"
gdb_test "r"        ".*Breakpoint 1.*main.*"
gdb_test "r"        ".*Breakpoint 1.*main.*"
gdb_test "si 3"     ".*main.*" "steps"
gdb_test "si 3"     ".*main.*" "steps"
gdb_test "x/4i \$pc" ".*main.*main+4.*main+8.*"
gdb_test "x/4i \$pc" ".*main.*main+4.*main+8.*"
gdb_test "c"        ".*callee.*" "hit bp"
gdb_test "c"        ".*callee.*" "hit bp"
gdb_test "disas"    ".*callee.*callee+4.*callee+12.*"
gdb_test "disas"    ".*callee.*callee+4.*callee+12.*"
gdb_test "si"       ".*callee.*"
gdb_test "si"       ".*callee.*"
gdb_test "fin"      ".*Run till exit.*main.*" "finish"
gdb_test "fin"      ".*Run till exit.*main.*" "finish"
gdb_test "x/i \$pc" ".*main+.*" "back in main"
gdb_test "x/i \$pc" ".*main+.*" "back in main"
gdb_exit
gdb_exit
#remote_exec build "rm -f ${binfile}"
#remote_exec build "rm -f ${binfile}"
return 0
return 0
 
 

powered by: WebSVN 2.1.0

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