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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [gdb-5.0/] [gdb/] [testsuite/] [gdb.base/] [define.exp] - Diff between revs 107 and 1765

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

Rev 107 Rev 1765
# Copyright (C) 1998 Free Software Foundation, Inc.
# Copyright (C) 1998 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 2 of the License, or
# the Free Software Foundation; either version 2 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, write to the Free Software
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
# 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
# This file was written by Elena Zannoni. (ezannoni@cygnus.com)
# This file was written by Elena Zannoni. (ezannoni@cygnus.com)
if $tracelevel then {
if $tracelevel then {
        strace $tracelevel
        strace $tracelevel
        }
        }
global usestubs
global usestubs
#
#
# test running programs
# test running programs
#
#
set prms_id 0
set prms_id 0
set bug_id 0
set bug_id 0
set testfile "break"
set testfile "break"
set srcfile ${testfile}.c
set srcfile ${testfile}.c
set binfile ${objdir}/${subdir}/${testfile}
set binfile ${objdir}/${subdir}/${testfile}
if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-w}] != "" } {
if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-w}] != "" } {
    gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
    gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
}
}
gdb_exit
gdb_exit
gdb_start
gdb_start
gdb_reinitialize_dir $srcdir/$subdir
gdb_reinitialize_dir $srcdir/$subdir
gdb_load ${binfile}
gdb_load ${binfile}
if ![runto_main] then { fail "define tests suppressed" }
if ![runto_main] then { fail "define tests suppressed" }
# Verify that GDB allows a user to define their very own commands.
# Verify that GDB allows a user to define their very own commands.
#
#
send_gdb "define nextwhere\n"
send_gdb "define nextwhere\n"
gdb_expect {
gdb_expect {
  -re "Type commands for definition of \"nextwhere\".\r\nEnd with a line saying just \"end\".\r\n>$"\
  -re "Type commands for definition of \"nextwhere\".\r\nEnd with a line saying just \"end\".\r\n>$"\
          {send_gdb "next\nbt\nend\n"
          {send_gdb "next\nbt\nend\n"
           gdb_expect {
           gdb_expect {
             -re "$gdb_prompt $"\
             -re "$gdb_prompt $"\
                     {pass "define user command: nextwhere"}
                     {pass "define user command: nextwhere"}
             timeout {fail "(timeout) define user command: nextwhere"}
             timeout {fail "(timeout) define user command: nextwhere"}
           }
           }
          }
          }
  -re "$gdb_prompt $"\
  -re "$gdb_prompt $"\
          {fail "define user command: nextwhere"}
          {fail "define user command: nextwhere"}
  timeout {fail "(timeout) define user command: nextwhere"}
  timeout {fail "(timeout) define user command: nextwhere"}
}
}
# Verify that those commands work as gdb_expected.
# Verify that those commands work as gdb_expected.
#
#
send_gdb "nextwhere\n"
send_gdb "nextwhere\n"
gdb_expect {
gdb_expect {
  -re ".*79\[ \t\]*printf.*#0\[ \t\]*main.*:79.*$gdb_prompt $"\
  -re ".*79\[ \t\]*printf.*#0\[ \t\]*main.*:79.*$gdb_prompt $"\
          {pass "use user command: nextwhere"}
          {pass "use user command: nextwhere"}
  -re "$gdb_prompt $"\
  -re "$gdb_prompt $"\
          {fail "use user command: nextwhere"}
          {fail "use user command: nextwhere"}
  timeout {fail "(timeout) use user command: nextwhere"}
  timeout {fail "(timeout) use user command: nextwhere"}
}
}
# Verify that a user can define a command whose spelling is a
# Verify that a user can define a command whose spelling is a
# proper substring of another user-defined command.
# proper substring of another user-defined command.
#
#
send_gdb "define nextwh\n"
send_gdb "define nextwh\n"
gdb_expect {
gdb_expect {
  -re "Type commands for definition of \"nextwh\".\r\nEnd with a line saying just \"end\".\r\n>$"\
  -re "Type commands for definition of \"nextwh\".\r\nEnd with a line saying just \"end\".\r\n>$"\
          {send_gdb "next 2\nbt\nend\n"
          {send_gdb "next 2\nbt\nend\n"
           gdb_expect {
           gdb_expect {
             -re "$gdb_prompt $"\
             -re "$gdb_prompt $"\
                     {pass "define user command: nextwh"}
                     {pass "define user command: nextwh"}
             timeout {fail "(timeout) define user command: nextwh"}
             timeout {fail "(timeout) define user command: nextwh"}
           }
           }
          }
          }
  -re "$gdb_prompt $"\
  -re "$gdb_prompt $"\
          {fail "define user command: nextwh"}
          {fail "define user command: nextwh"}
  timeout {fail "(timeout) define user command: nextwh"}
  timeout {fail "(timeout) define user command: nextwh"}
}
}
# Verify that a user can redefine their commands.  (Test both the
# Verify that a user can redefine their commands.  (Test both the
# confirmed and unconfirmed cases.)
# confirmed and unconfirmed cases.)
#
#
send_gdb "define nextwhere\n"
send_gdb "define nextwhere\n"
gdb_expect {
gdb_expect {
  -re "Redefine command \"nextwhere\".*y or n. $"\
  -re "Redefine command \"nextwhere\".*y or n. $"\
          {send_gdb "n\n"
          {send_gdb "n\n"
           gdb_expect {
           gdb_expect {
             -re "Command \"nextwhere\" not redefined.*$gdb_prompt $"\
             -re "Command \"nextwhere\" not redefined.*$gdb_prompt $"\
                     {pass "redefine user command aborted: nextwhere"}
                     {pass "redefine user command aborted: nextwhere"}
             -re "$gdb_prompt $"\
             -re "$gdb_prompt $"\
                     {fail "redefine user command aborted: nextwhere"}
                     {fail "redefine user command aborted: nextwhere"}
             timeout {fail "(timeout) redefine user command aborted: nextwhere"}
             timeout {fail "(timeout) redefine user command aborted: nextwhere"}
           }
           }
          }
          }
  -re "$gdb_prompt $"\
  -re "$gdb_prompt $"\
          {fail "redefine user command aborted: nextwhere"}
          {fail "redefine user command aborted: nextwhere"}
  timeout {fail "(timeout) redefine user command aborted: nextwhere"}
  timeout {fail "(timeout) redefine user command aborted: nextwhere"}
}
}
send_gdb "define nextwhere\n"
send_gdb "define nextwhere\n"
gdb_expect {
gdb_expect {
  -re "Redefine command \"nextwhere\".*y or n. $"\
  -re "Redefine command \"nextwhere\".*y or n. $"\
          {send_gdb "y\n"
          {send_gdb "y\n"
           gdb_expect {
           gdb_expect {
             -re "Type commands for definition of \"nextwhere\".\r\nEnd with a line saying just \"end\".\r\n>$"\
             -re "Type commands for definition of \"nextwhere\".\r\nEnd with a line saying just \"end\".\r\n>$"\
                     {send_gdb "bt\nnext\nend\n"
                     {send_gdb "bt\nnext\nend\n"
                      gdb_expect {
                      gdb_expect {
                        -re "$gdb_prompt $"\
                        -re "$gdb_prompt $"\
                                {pass "redefine user command: nextwhere"}
                                {pass "redefine user command: nextwhere"}
                        timeout {fail "(timeout) redefine user command: nextwhere"}
                        timeout {fail "(timeout) redefine user command: nextwhere"}
                      }
                      }
                     }
                     }
             timeout {fail "(timeout) redefine user command: nextwhere"}
             timeout {fail "(timeout) redefine user command: nextwhere"}
           }
           }
          }
          }
  -re "$gdb_prompt $"\
  -re "$gdb_prompt $"\
          {fail "redefine user command: nextwhere"}
          {fail "redefine user command: nextwhere"}
  timeout {fail "(timeout) redefine user command: nextwhere"}
  timeout {fail "(timeout) redefine user command: nextwhere"}
}
}
# Verify that GDB gracefully handles an attempt to redefine the
# Verify that GDB gracefully handles an attempt to redefine the
# help text for a builtin command.
# help text for a builtin command.
#
#
send_gdb "document step\n"
send_gdb "document step\n"
gdb_expect {
gdb_expect {
  -re "Command \"step\" is built-in..*$gdb_prompt $"\
  -re "Command \"step\" is built-in..*$gdb_prompt $"\
          {pass "redocumenting builtin command disallowed"}
          {pass "redocumenting builtin command disallowed"}
  -re "$gdb_prompt $"\
  -re "$gdb_prompt $"\
          {fail "redocumenting builtin command disallowed"}
          {fail "redocumenting builtin command disallowed"}
  timeout {fail "(timeout) redocumenting builtin command disallowed"}
  timeout {fail "(timeout) redocumenting builtin command disallowed"}
}
}
# Verify that a user can document their own commands.  (And redocument
# Verify that a user can document their own commands.  (And redocument
# them.)
# them.)
#
#
send_gdb "document nextwhere\n"
send_gdb "document nextwhere\n"
gdb_expect {
gdb_expect {
  -re "Type documentation for \"nextwhere\".\r\nEnd with a line saying just \"end\".\r\n>$"\
  -re "Type documentation for \"nextwhere\".\r\nEnd with a line saying just \"end\".\r\n>$"\
          {send_gdb "A next command that frist shows you where you're stepping from.\nend\n"
          {send_gdb "A next command that frist shows you where you're stepping from.\nend\n"
           gdb_expect {
           gdb_expect {
             -re "$gdb_prompt $"\
             -re "$gdb_prompt $"\
                     {pass "document user command: nextwhere"}
                     {pass "document user command: nextwhere"}
             timeout {fail "(timeout) document user command: nextwhere"}
             timeout {fail "(timeout) document user command: nextwhere"}
           }
           }
          }
          }
  -re "$gdb_prompt $"\
  -re "$gdb_prompt $"\
          {fail "documenting user command: nextwhere"}
          {fail "documenting user command: nextwhere"}
  timeout {fail "(timeout) documenting user command: nextwhere"}
  timeout {fail "(timeout) documenting user command: nextwhere"}
}
}
send_gdb "document nextwhere\n"
send_gdb "document nextwhere\n"
gdb_expect {
gdb_expect {
  -re "Type documentation for \"nextwhere\".\r\nEnd with a line saying just \"end\".\r\n>$"\
  -re "Type documentation for \"nextwhere\".\r\nEnd with a line saying just \"end\".\r\n>$"\
          {send_gdb "A next command that first shows you where you're stepping from.\nend\n"
          {send_gdb "A next command that first shows you where you're stepping from.\nend\n"
           gdb_expect {
           gdb_expect {
             -re "$gdb_prompt $"\
             -re "$gdb_prompt $"\
                     {pass "document user command: nextwhere"}
                     {pass "document user command: nextwhere"}
             timeout {fail "(timeout) document user command: nextwhere"}
             timeout {fail "(timeout) document user command: nextwhere"}
           }
           }
          }
          }
  -re "$gdb_prompt $"\
  -re "$gdb_prompt $"\
          {fail "documenting user command: nextwhere"}
          {fail "documenting user command: nextwhere"}
  timeout {fail "(timeout) documenting user command: nextwhere"}
  timeout {fail "(timeout) documenting user command: nextwhere"}
}
}
send_gdb "help nextwhere\n"
send_gdb "help nextwhere\n"
gdb_expect {
gdb_expect {
  -re "A next command that first shows you where you're stepping from.\r\n$gdb_prompt $"\
  -re "A next command that first shows you where you're stepping from.\r\n$gdb_prompt $"\
          {pass "help user command: nextwhere"}
          {pass "help user command: nextwhere"}
  -re "$gdb_prompt $"\
  -re "$gdb_prompt $"\
          {fail "help user command: nextwhere"}
          {fail "help user command: nextwhere"}
  timeout {fail "(timeout) help user command: nextwhere"}
  timeout {fail "(timeout) help user command: nextwhere"}
}
}
# Verify that the user can "hook" a builtin command.  We choose to
# Verify that the user can "hook" a builtin command.  We choose to
# hook the "stop" pseudo command, and we'll define it to use a user-
# hook the "stop" pseudo command, and we'll define it to use a user-
# define command.
# define command.
#
#
send_gdb "define user-bt\n"
send_gdb "define user-bt\n"
gdb_expect {
gdb_expect {
  -re "Type commands for definition of \"user-bt\".\r\nEnd with a line saying just \"end\".\r\n>$"\
  -re "Type commands for definition of \"user-bt\".\r\nEnd with a line saying just \"end\".\r\n>$"\
          {send_gdb "bt\nend\n"
          {send_gdb "bt\nend\n"
           gdb_expect {
           gdb_expect {
             -re "$gdb_prompt $"\
             -re "$gdb_prompt $"\
                       {pass "define user command: user-bt"}
                       {pass "define user command: user-bt"}
             timeout {fail "(timeout) define user command: user-bt"}
             timeout {fail "(timeout) define user command: user-bt"}
           }
           }
          }
          }
  -re "$gdb_prompt $"\
  -re "$gdb_prompt $"\
          {fail "define user command: user-bt"}
          {fail "define user command: user-bt"}
  timeout {fail "(timeout) define user command: user-bt"}
  timeout {fail "(timeout) define user command: user-bt"}
}
}
send_gdb "define hook-stop\n"
send_gdb "define hook-stop\n"
gdb_expect {
gdb_expect {
  -re "Type commands for definition of \"hook-stop\".\r\nEnd with a line saying just \"end\".\r\n>$"\
  -re "Type commands for definition of \"hook-stop\".\r\nEnd with a line saying just \"end\".\r\n>$"\
          {send_gdb "user-b\nend\n"
          {send_gdb "user-b\nend\n"
           gdb_expect {
           gdb_expect {
             -re "$gdb_prompt $"\
             -re "$gdb_prompt $"\
                       {pass "define hook-stop command"}
                       {pass "define hook-stop command"}
             timeout {fail "(timeout) define hook-stop command"}
             timeout {fail "(timeout) define hook-stop command"}
           }
           }
          }
          }
  -re "$gdb_prompt $"\
  -re "$gdb_prompt $"\
          {fail "define hook-stop command"}
          {fail "define hook-stop command"}
  timeout {fail "(timeout) define hook-stop command"}
  timeout {fail "(timeout) define hook-stop command"}
}
}
send_gdb "next\n"
send_gdb "next\n"
gdb_expect {
gdb_expect {
  -re "#0\[ \t\]*main.*:81.*$gdb_prompt $"\
  -re "#0\[ \t\]*main.*:81.*$gdb_prompt $"\
          {pass "use hook-stop command"}
          {pass "use hook-stop command"}
  -re "$gdb_prompt $"\
  -re "$gdb_prompt $"\
          {fail "use hook-stop command"}
          {fail "use hook-stop command"}
  timeout {fail "(timeout) use hook-stop command"}
  timeout {fail "(timeout) use hook-stop command"}
}
}
# Verify that GDB responds gracefully to an attempt to define a "hook
# Verify that GDB responds gracefully to an attempt to define a "hook
# command" which doesn't exist.  (Test both the confirmed and unconfirmed
# command" which doesn't exist.  (Test both the confirmed and unconfirmed
# cases.)
# cases.)
#
#
send_gdb "define hook-bar\n"
send_gdb "define hook-bar\n"
gdb_expect {
gdb_expect {
  -re "warning: Your new `hook-bar' command does not hook any existing command.\r\nProceed.*y or n. $"\
  -re "warning: Your new `hook-bar' command does not hook any existing command.\r\nProceed.*y or n. $"\
          {send_gdb "n\n"
          {send_gdb "n\n"
           gdb_expect {
           gdb_expect {
             -re "Not confirmed.*$gdb_prompt $"\
             -re "Not confirmed.*$gdb_prompt $"\
                     {pass "define hook undefined command aborted: bar"}
                     {pass "define hook undefined command aborted: bar"}
             -re "$gdb_prompt $"\
             -re "$gdb_prompt $"\
                     {fail "define hook undefined command aborted: bar"}
                     {fail "define hook undefined command aborted: bar"}
             timeout {fail "(timeout) define hook undefined command aborted: bar"}
             timeout {fail "(timeout) define hook undefined command aborted: bar"}
           }
           }
          }
          }
  -re "$gdb_prompt $"\
  -re "$gdb_prompt $"\
          {fail "define hook undefined command aborted: bar"}
          {fail "define hook undefined command aborted: bar"}
  timeout {fail "(timeout) define hook undefined command aborted: bar"}
  timeout {fail "(timeout) define hook undefined command aborted: bar"}
}
}
send_gdb "define hook-bar\n"
send_gdb "define hook-bar\n"
gdb_expect {
gdb_expect {
  -re "warning: Your new `hook-bar' command does not hook any existing command.\r\nProceed.*y or n. $"\
  -re "warning: Your new `hook-bar' command does not hook any existing command.\r\nProceed.*y or n. $"\
          {send_gdb "y\n"
          {send_gdb "y\n"
           gdb_expect {
           gdb_expect {
             -re "Type commands for definition of \"hook-bar\".\r\nEnd with a line saying just \"end\".\r\n>$"\
             -re "Type commands for definition of \"hook-bar\".\r\nEnd with a line saying just \"end\".\r\n>$"\
                     {send_gdb "nextwhere\nend\n"
                     {send_gdb "nextwhere\nend\n"
                      gdb_expect {
                      gdb_expect {
                        -re "$gdb_prompt $"\
                        -re "$gdb_prompt $"\
                                {pass "define hook undefined command: bar"}
                                {pass "define hook undefined command: bar"}
                        timeout {fail "(timeout) define hook undefined command: bar"}
                        timeout {fail "(timeout) define hook undefined command: bar"}
                      }
                      }
                     }
                     }
             -re "$gdb_prompt $"\
             -re "$gdb_prompt $"\
                     {fail "define hook undefined command: bar"}
                     {fail "define hook undefined command: bar"}
             timeout {fail "(timeout) define hook undefined command: bar"}
             timeout {fail "(timeout) define hook undefined command: bar"}
           }
           }
          }
          }
  -re "$gdb_prompt $"\
  -re "$gdb_prompt $"\
          {fail "define hook undefined command: bar"}
          {fail "define hook undefined command: bar"}
  timeout {fail "(timeout) define hook undefined command: bar"}
  timeout {fail "(timeout) define hook undefined command: bar"}
}
}
# This is a quasi-define command: Verify that the user can redefine
# This is a quasi-define command: Verify that the user can redefine
# GDB's gdb_prompt.
# GDB's gdb_prompt.
#
#
send_gdb "set prompt \\(blah\\) \n"
send_gdb "set prompt \\(blah\\) \n"
gdb_expect {
gdb_expect {
  -re "\\(blah\\) $"\
  -re "\\(blah\\) $"\
          {pass "set gdb_prompt"}
          {pass "set gdb_prompt"}
  -re "$gdb_prompt $"\
  -re "$gdb_prompt $"\
          {fail "set gdb_prompt"}
          {fail "set gdb_prompt"}
  timeout {fail "(timeout) set gdb_prompt"}
  timeout {fail "(timeout) set gdb_prompt"}
}
}
send_gdb "set prompt \\(gdb\\) \n"
send_gdb "set prompt \\(gdb\\) \n"
gdb_expect {
gdb_expect {
  -re "$gdb_prompt $"\
  -re "$gdb_prompt $"\
          {pass "reset gdb_prompt"}
          {pass "reset gdb_prompt"}
  timeout {fail "(timeout) reset gdb_prompt"}
  timeout {fail "(timeout) reset gdb_prompt"}
}
}
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.