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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [gdb-5.0/] [gdb/] [testsuite/] [gdb.mi/] [mi-basics.exp] - Diff between revs 106 and 107

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

Rev 106 Rev 107
#   Copyright (C) 1999 Free Software Foundation, Inc.
#   Copyright (C) 1999 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
#
#
# test basic Machine interface (MI) operations
# test basic Machine interface (MI) operations
#
#
# Verify that, using the MI, we can load a program and do
# Verify that, using the MI, we can load a program and do
# other basic things that are used by all test files through  mi_gdb_exit,
# other basic things that are used by all test files through  mi_gdb_exit,
# mi_gdb_start, mi_delete_breakpoints, mi_gdb_reinitialize_dir and
# mi_gdb_start, mi_delete_breakpoints, mi_gdb_reinitialize_dir and
# mi_gdb_load, so we can safely use those.
# mi_gdb_load, so we can safely use those.
#
#
# The goal is not to test gdb functionality, which is done by other tests,
# The goal is not to test gdb functionality, which is done by other tests,
# but the command syntax and correct output response to MI operations.
# but the command syntax and correct output response to MI operations.
#
#
load_lib mi-support.exp
load_lib mi-support.exp
gdb_exit
gdb_exit
if [mi_gdb_start] {
if [mi_gdb_start] {
    continue
    continue
}
}
set testfile "basics"
set testfile "basics"
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=-DFAKEARGV}] != "" } {
if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
     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."
}
}
# In this file we want to test if the operations needed by the following
# In this file we want to test if the operations needed by the following
# procedures work, so it makes no sense using them here.
# procedures work, so it makes no sense using them here.
# mi_delete_breakpoints
# mi_delete_breakpoints
# mi_gdb_reinitialize_dir $srcdir/$subdir
# mi_gdb_reinitialize_dir $srcdir/$subdir
# mi_gdb_load ${binfile}
# mi_gdb_load ${binfile}
# Test if the MI interpreter has been configured
# Test if the MI interpreter has been configured
proc test_mi_interpreter_selection {} {
proc test_mi_interpreter_selection {} {
    global mi_gdb_prompt
    global mi_gdb_prompt
    global gdb_prompt
    global gdb_prompt
    # All this test expects is to get the prompt back
    # All this test expects is to get the prompt back
    # with no syntax error message
    # with no syntax error message
    send_gdb "-gdb-version\n"
    send_gdb "-gdb-version\n"
    gdb_expect {
    gdb_expect {
           -re "GNU gdb .*\r\n$mi_gdb_prompt$" \
           -re "GNU gdb .*\r\n$mi_gdb_prompt$" \
               { pass "acceptance of MI operations"
               { pass "acceptance of MI operations"
                 return 1}
                 return 1}
           -re ".*\r\n$mi_gdb_prompt$" \
           -re ".*\r\n$mi_gdb_prompt$" \
               { fail "acceptance of MI operations"
               { fail "acceptance of MI operations"
                 note "Skipping all other MI tests." }
                 note "Skipping all other MI tests." }
           -re "Undefined command.*$gdb_prompt $" \
           -re "Undefined command.*$gdb_prompt $" \
               { fail "acceptance of MI operations"
               { fail "acceptance of MI operations"
                 note "Skipping all other MI tests." }
                 note "Skipping all other MI tests." }
           -re ".*$gdb_prompt $" \
           -re ".*$gdb_prompt $" \
               { fail "acceptance of MI operations"
               { fail "acceptance of MI operations"
                 note "Skipping all other MI tests." }
                 note "Skipping all other MI tests." }
           timeout { fail "acceptance of MI operations (timeout)"
           timeout { fail "acceptance of MI operations (timeout)"
                     note "Skipping all other MI tests." }
                     note "Skipping all other MI tests." }
    }
    }
    return 0
    return 0
}
}
proc test_exec_and_symbol_mi_operatons {} {
proc test_exec_and_symbol_mi_operatons {} {
    global mi_gdb_prompt
    global mi_gdb_prompt
    global binfile
    global binfile
    # Load symbols and specify executable on a single operation
    # Load symbols and specify executable on a single operation
    # Tests:
    # Tests:
    # -file-exec-and-symbols
    # -file-exec-and-symbols
    # Can't use mi_gdb_test as if this doesn't work,
    # Can't use mi_gdb_test as if this doesn't work,
    #  we must give up on the whole test file
    #  we must give up on the whole test file
    send_gdb "-file-exec-and-symbols ${binfile}\n"
    send_gdb "-file-exec-and-symbols ${binfile}\n"
    gdb_expect {
    gdb_expect {
           -re "\[\r\n\]*\\\^done\r\n$mi_gdb_prompt$" \
           -re "\[\r\n\]*\\\^done\r\n$mi_gdb_prompt$" \
               { pass "file-exec-and-symbols operation" }
               { pass "file-exec-and-symbols operation" }
           timeout { fail "file-exec-and-symbols operation (timeout)"
           timeout { fail "file-exec-and-symbols operation (timeout)"
                     note "Skipping all other MI tests."
                     note "Skipping all other MI tests."
                     return 0}
                     return 0}
    }
    }
    # The following is not used by mi-support.exp, but we test here so
    # The following is not used by mi-support.exp, but we test here so
    # we get done with loading a program basics.
    # we get done with loading a program basics.
    # Do it again, but now load symbols and specify executable with
    # Do it again, but now load symbols and specify executable with
    # two separate operations
    # two separate operations
    # Tests:
    # Tests:
    # -file-clear
    # -file-clear
    # -file-exec-file
    # -file-exec-file
    # -file-symbol-file
    # -file-symbol-file
    # FIXME: file-clear is not implemented yet.
    # FIXME: file-clear is not implemented yet.
#   mi_gdb_test "-file-clear" \
#   mi_gdb_test "-file-clear" \
#            "\\\^done" \
#            "\\\^done" \
#            "file-clear operation"
#            "file-clear operation"
    mi_gdb_test "-file-exec-file ${binfile}" \
    mi_gdb_test "-file-exec-file ${binfile}" \
             "\\\^done" \
             "\\\^done" \
             "file-exec-file operation"
             "file-exec-file operation"
    mi_gdb_test "-file-symbol-file ${binfile}" \
    mi_gdb_test "-file-symbol-file ${binfile}" \
             "\\\^done" \
             "\\\^done" \
             "file-symbol-file operation"
             "file-symbol-file operation"
    # FIXME: if we cannot load we have to skip all other tests.
    # FIXME: if we cannot load we have to skip all other tests.
}
}
proc test_breakpoints_deletion {} {
proc test_breakpoints_deletion {} {
    global mi_gdb_prompt
    global mi_gdb_prompt
    global srcfile
    global srcfile
    # Clear all breakpoints and list to confirm
    # Clear all breakpoints and list to confirm
    # Tests:
    # Tests:
    # -break-delete (all)
    # -break-delete (all)
    # -break-list
    # -break-list
    # The all parameter is actually no parameter.
    # The all parameter is actually no parameter.
    mi_gdb_test "200-break-delete" \
    mi_gdb_test "200-break-delete" \
             "\\\^done" \
             "\\\^done" \
             "break-delete (all) operation"
             "break-delete (all) operation"
    mi_gdb_test "201-break-list" \
    mi_gdb_test "201-break-list" \
             ".*\\\^done,BreakpointTable=\\\{\\\}" \
             ".*\\\^done,BreakpointTable=\\\{\\\}" \
             "all breakpoints removed"
             "all breakpoints removed"
}
}
proc test_dir_specification {} {
proc test_dir_specification {} {
    global mi_gdb_prompt
    global mi_gdb_prompt
    global srcdir
    global srcdir
    global subdir
    global subdir
    # Clear the search directories, then specify one to be searched
    # Clear the search directories, then specify one to be searched
    # Tests:
    # Tests:
    # -environment-directory
    # -environment-directory
    # -environment-directory arg
    # -environment-directory arg
#exp_internal 1
#exp_internal 1
    mi_gdb_test "202-environment-directory" \
    mi_gdb_test "202-environment-directory" \
             "\\\^done" \
             "\\\^done" \
             "environment-directory operation"
             "environment-directory operation"
    mi_gdb_test "203-environment-directory ${srcdir}/${subdir}" \
    mi_gdb_test "203-environment-directory ${srcdir}/${subdir}" \
             "\\\^done" \
             "\\\^done" \
             "environment-directory arg operation"
             "environment-directory arg operation"
#exp_internal 0
#exp_internal 0
}
}
if [test_mi_interpreter_selection] {
if [test_mi_interpreter_selection] {
  test_exec_and_symbol_mi_operatons
  test_exec_and_symbol_mi_operatons
  test_breakpoints_deletion
  test_breakpoints_deletion
  test_dir_specification
  test_dir_specification
}
}
mi_gdb_exit
mi_gdb_exit
return 0
return 0
# Local variables:
# Local variables:
# change-log-default-name: "ChangeLog-mi"
# change-log-default-name: "ChangeLog-mi"
# End:
# End:
 
 

powered by: WebSVN 2.1.0

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