2015-01-01 09:32:14 +00:00
|
|
|
# Copyright 1998-2015 Free Software Foundation, Inc.
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
# 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
|
2007-08-23 18:14:19 +00:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
1999-04-16 01:35:26 +00:00
|
|
|
# (at your option) any later version.
|
2007-08-23 18:14:19 +00:00
|
|
|
#
|
1999-04-16 01:35:26 +00:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2007-08-23 18:14:19 +00:00
|
|
|
#
|
1999-04-16 01:35:26 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-08-23 18:14:19 +00:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
# This file was written by Elena Zannoni (ezannoni@cygnus.com)
|
|
|
|
|
|
|
|
# This file is part of the gdb testsuite
|
|
|
|
|
|
|
|
#
|
|
|
|
# tests to cover evaluate_subexp_standard with the EVAL_SKIP flag set.
|
|
|
|
# this happens for instance when there is short circuit evaluation in the && and ||
|
|
|
|
# operators, or in the non returned part of a (x ? y: z) expression.
|
|
|
|
# the part that is not evaluated is parsed and evaluated anyway, but with
|
|
|
|
# the EVAL_SKIP flag set
|
|
|
|
#
|
|
|
|
# source file "int-type.c"
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
# In either case, just notify the user and skip the tests in this file.
|
|
|
|
|
test suite update - gdb.base/[efg]
Convert files gdb.base/[efg]*.exp to use standard_output_file et al.
* ena-dis-br.exp, enum_cond.exp, enumval.exp, environ.exp,
eu-strip-infcall.exp, eval-skip.exp, exe-lock.exp,
expand-psymtabs.exp, exprs.exp, fileio.exp, find.exp,
fixsection.exp, foll-exec.exp, foll-fork.exp,
fortran-sym-case.exp, frame-args.exp, freebpcmd.exp, fullname.exp,
funcargs.exp, gcore-buffer-overflow.exp, gcore.exp, gdb1090.exp,
gdb11530.exp, gdb11531.exp, gdb1250.exp, gdb1555.exp, gdb1821.exp,
gdbindex-stabs.exp, gdbvars.exp, gnu-ifunc.exp, gnu_vector.exp:
Use standard_testfile, standard_output_file, prepare_for_testing,
clean_restart.
2013-06-27 18:50:30 +00:00
|
|
|
standard_testfile int-type.c
|
1999-04-16 01:35:26 +00:00
|
|
|
|
2006-03-07 15:23:33 +00:00
|
|
|
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug nowarnings}] != "" } {
|
2006-08-10 05:27:22 +00:00
|
|
|
untested eval-skip.exp
|
|
|
|
return -1
|
1999-04-16 01:35:26 +00:00
|
|
|
}
|
|
|
|
|
2012-06-21 20:46:25 +00:00
|
|
|
if [get_compiler_info] {
|
1999-06-28 16:06:02 +00:00
|
|
|
return -1
|
|
|
|
}
|
1999-04-16 01:35:26 +00:00
|
|
|
|
test suite update - gdb.base/[efg]
Convert files gdb.base/[efg]*.exp to use standard_output_file et al.
* ena-dis-br.exp, enum_cond.exp, enumval.exp, environ.exp,
eu-strip-infcall.exp, eval-skip.exp, exe-lock.exp,
expand-psymtabs.exp, exprs.exp, fileio.exp, find.exp,
fixsection.exp, foll-exec.exp, foll-fork.exp,
fortran-sym-case.exp, frame-args.exp, freebpcmd.exp, fullname.exp,
funcargs.exp, gcore-buffer-overflow.exp, gcore.exp, gdb1090.exp,
gdb11530.exp, gdb11531.exp, gdb1250.exp, gdb1555.exp, gdb1821.exp,
gdbindex-stabs.exp, gdbvars.exp, gnu-ifunc.exp, gnu_vector.exp:
Use standard_testfile, standard_output_file, prepare_for_testing,
clean_restart.
2013-06-27 18:50:30 +00:00
|
|
|
clean_restart ${binfile}
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
if ![runto_main] then {
|
|
|
|
perror "couldn't run to breakpoint"
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2010-06-01 21:29:21 +00:00
|
|
|
gdb_test_no_output "set variable x=14" "set variable x=14"
|
|
|
|
gdb_test_no_output "set variable y=2" "set variable y=2"
|
|
|
|
gdb_test_no_output "set variable z=2" "set variable z=2"
|
|
|
|
gdb_test_no_output "set variable w=3" "set variable w=3"
|
1999-04-16 01:35:26 +00:00
|
|
|
|
2010-05-24 22:06:59 +00:00
|
|
|
gdb_test "print (0 && (x+y))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (x+y))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (x-y))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (x-y))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (x*y))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (x*y))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (x/y))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (x/y))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (x%y))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (x%y))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (x&&y))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (x&&y))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (x||y))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (x||y))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (x&y))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (x&y))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (x|y))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (x|y))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (x^y))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (x^y))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (x < y))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (x < y))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (x <= y))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (x <= y))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (x>y))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (x>y))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (x>=y))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (x>=y))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (x==y))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (x==y))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (x!=y))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (x!=y))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (x<<31))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (x<<31))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (x>>31))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (x>>31))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (!x))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (!x))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (~x))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (~x))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (-x))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (-x))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (x++))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (x++))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (++x))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (++x))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (x--))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (x--))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (--x))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (--x))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (x+=7))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (x+=7))"
|
|
|
|
|
|
|
|
gdb_test "print (0 && (x=y))" ".$decimal = $false" \
|
|
|
|
"print value of (0 && (x=y))"
|
|
|
|
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
gdb_exit
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|