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.base/] [cond-expr.exp] - Diff between revs 157 and 223

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

Rev 157 Rev 223
# Copyright 1998, 1999, 2007, 2008 Free Software Foundation, Inc.
# Copyright 1998, 1999, 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
# This file was written by Elena Zannoni (ezannoni@cygnus.com)
# This file was written by Elena Zannoni (ezannoni@cygnus.com)
# This file is part of the gdb testsuite
# This file is part of the gdb testsuite
#
#
# test of evaluation of conditional expressions, with constants and
# test of evaluation of conditional expressions, with constants and
# variables. Using the print and the whatis command
# variables. Using the print and the whatis command
# written with the only purpose in mind to cover the holes in the
# written with the only purpose in mind to cover the holes in the
# eval.c file
# eval.c file
#
#
# source file "int-type.c"
# source file "int-type.c"
#
#
if $tracelevel then {
if $tracelevel then {
        strace $tracelevel
        strace $tracelevel
}
}
# Check to see if we have an executable to test.  If not, then either we
# Check to see if we have an executable to test.  If not, then either we
# haven't tried to compile one, or the compilation failed for some reason.
# haven't tried to compile one, or the compilation failed for some reason.
# In either case, just notify the user and skip the tests in this file.
# In either case, just notify the user and skip the tests in this file.
set testfile "int-type"
set testfile "int-type"
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 nowarnings}] != "" } {
if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug nowarnings}] != "" } {
     untested cond-expr.exp
     untested cond-expr.exp
     return -1
     return -1
    }
    }
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 {
if ![runto_main] then {
    perror "couldn't run to breakpoint"
    perror "couldn't run to breakpoint"
    continue
    continue
}
}
send_gdb "print (2 ? 3 : 4)\n"
send_gdb "print (2 ? 3 : 4)\n"
gdb_expect {
gdb_expect {
    -re ".\[0-9\]* = 3.*$gdb_prompt $" {
    -re ".\[0-9\]* = 3.*$gdb_prompt $" {
        pass "print value of cond expr (const true)"
        pass "print value of cond expr (const true)"
      }
      }
    -re ".*$gdb_prompt $" { fail "print value of cond expr (const true)" }
    -re ".*$gdb_prompt $" { fail "print value of cond expr (const true)" }
    timeout           { fail "(timeout) print value of cond expr (const true)" }
    timeout           { fail "(timeout) print value of cond expr (const true)" }
  }
  }
send_gdb "print (0 ? 3 : 4)\n"
send_gdb "print (0 ? 3 : 4)\n"
gdb_expect {
gdb_expect {
    -re ".\[0-9\]* = 4.*$gdb_prompt $" {
    -re ".\[0-9\]* = 4.*$gdb_prompt $" {
        pass "print value of cond expr (const false)"
        pass "print value of cond expr (const false)"
      }
      }
    -re ".*$gdb_prompt $" { fail "print value of cond expr (const false)" }
    -re ".*$gdb_prompt $" { fail "print value of cond expr (const false)" }
    timeout           { fail "(timeout) print value of cond expr (const false)" }
    timeout           { fail "(timeout) print value of cond expr (const false)" }
  }
  }
gdb_test "set variable x=14" "" "set variable x=14"
gdb_test "set variable x=14" "" "set variable x=14"
gdb_test "set variable y=2" "" "set variable y=2"
gdb_test "set variable y=2" "" "set variable y=2"
gdb_test "set variable z=3" "" "set variable z=3"
gdb_test "set variable z=3" "" "set variable z=3"
send_gdb "print (x ? y : z)\n"
send_gdb "print (x ? y : z)\n"
gdb_expect {
gdb_expect {
    -re ".\[0-9\]* = 2.*$gdb_prompt $" {
    -re ".\[0-9\]* = 2.*$gdb_prompt $" {
        pass "print value of cond expr (var true)"
        pass "print value of cond expr (var true)"
      }
      }
    -re ".*$gdb_prompt $" { fail "print value of cond expr (var true)" }
    -re ".*$gdb_prompt $" { fail "print value of cond expr (var true)" }
    timeout           { fail "(timeout) print value of cond expr (var true)" }
    timeout           { fail "(timeout) print value of cond expr (var true)" }
  }
  }
gdb_test "set variable x=0" "" "set variable x=0"
gdb_test "set variable x=0" "" "set variable x=0"
send_gdb "print (x ? y : z)\n"
send_gdb "print (x ? y : z)\n"
gdb_expect {
gdb_expect {
    -re ".\[0-9\]* = 3.*$gdb_prompt $" {
    -re ".\[0-9\]* = 3.*$gdb_prompt $" {
        pass "print value of cond expr (var false)"
        pass "print value of cond expr (var false)"
      }
      }
    -re ".*$gdb_prompt $" { fail "print value of cond expr (var false)" }
    -re ".*$gdb_prompt $" { fail "print value of cond expr (var false)" }
    timeout           { fail "(timeout) print value of cond expr (var false)" }
    timeout           { fail "(timeout) print value of cond expr (var false)" }
  }
  }
send_gdb "whatis (0 ? 3 : 4)\n"
send_gdb "whatis (0 ? 3 : 4)\n"
gdb_expect {
gdb_expect {
    -re "type = int.*$gdb_prompt $" {
    -re "type = int.*$gdb_prompt $" {
        pass "print whatis of cond expr"
        pass "print whatis of cond expr"
      }
      }
    -re ".*$gdb_prompt $" { fail "print whatis of cond expr" }
    -re ".*$gdb_prompt $" { fail "print whatis of cond expr" }
    timeout           { fail "(timeout) print whatis of cond expr" }
    timeout           { fail "(timeout) print whatis of cond expr" }
  }
  }
 
 

powered by: WebSVN 2.1.0

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