2011-01-01 15:34:07 +00:00
# Copyright 1998, 1999, 2000, 2007, 2008, 2009, 2010, 2011
2010-01-01 07:32:07 +00:00
# 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 test deals with calling functions which have strings as parameters.
# it plays around with constant strings.
# the corresponding source file is call-strs.c
#
#debug strarg
if $tracelevel then {
strace $tracelevel
}
set testfile "call-strs"
set srcfile ${testfile}.c
set binfile ${objdir}/${subdir}/${testfile}
2000-04-27 00:45:19 +00:00
# Test depends on printf, which the sparclet stub doesn't support.
if { [istarget "sparclet-*-*"] } {
return 0;
}
1999-04-16 01:35:26 +00:00
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
2006-08-10 05:27:22 +00:00
untested call-strs.exp
return -1
1999-04-16 01:35:26 +00:00
}
2002-01-06 14:42:39 +00:00
# Some targets can't call functions, so don't even bother with this
# test.
1999-04-16 01:35:26 +00:00
if [target_info exists gdb,cannot_call_functions] {
setup_xfail "*-*-*" 2416
fail "This target can not call functions"
continue
}
# Start with a fresh gdb.
gdb_exit
gdb_start
gdb_reinitialize_dir $srcdir/$subdir
gdb_load ${binfile}
2010-05-24 22:03:59 +00:00
gdb_test_no_output "set print sevenbit-strings"
gdb_test_no_output "set print address off"
gdb_test_no_output "set width 0"
1999-04-16 01:35:26 +00:00
if ![runto_main] then {
perror "couldn't run to breakpoint"
continue
}
* gdb.base/call-strs.exp, gdb.base/default.exp,
gdb.base/ending-run.exp, gdb.base/finish.exp, gdb.base/funcargs.exp,
gdb.base/huge.exp, gdb.base/nodebug.exp, gdb.base/ptype.exp,
gdb.base/restore.exp, gdb.base/return.exp, gdb.base/setvar.exp,
gdb.base/watchpoints.exp, gdb.threads/gcore-thread.exp,
gdb.base/watchpoint-solib.exp: Save and restore timeout.
* gdb.base/ending-run.exp: Correct restore of timeout.
* gdb.base/page.exp: Remove unnecessary timeout setting.
2010-01-29 15:38:38 +00:00
set prev_timeout $timeout
set timeout 120
1999-04-16 01:35:26 +00:00
#step
2010-05-24 22:03:59 +00:00
gdb_test "step" \
"strcpy\\(buf, \"test string\"\\);" \
"step after assignment to s"
1999-04-16 01:35:26 +00:00
2002-09-13 00:43:10 +00:00
#next
2010-05-24 22:03:59 +00:00
gdb_test "next" \
"str_func\\(\"abcd\", \"efgh\", \"ijkl\", \"mnop\", \"qrst\", \"uvwx\", \"yz12\"\\);" \
"next over strcpy"
1999-04-16 01:35:26 +00:00
#print buf
2010-05-24 22:03:59 +00:00
gdb_test "print buf" \
"\"test string\",.*repeats 88 times.*"
1999-04-16 01:35:26 +00:00
#print s
2010-05-24 22:03:59 +00:00
gdb_test "print s" \
" = \"test string\".*"
1999-04-16 01:35:26 +00:00
#print str_func1(s)
2000-10-17 20:00:21 +00:00
if ![gdb_skip_stdio_test "print str_func1(s)"] {
2010-05-24 22:03:59 +00:00
gdb_test "print str_func1(s)" \
"first string arg is: test string.*\"test string\".*"
2000-10-17 20:00:21 +00:00
}
1999-04-16 01:35:26 +00:00
#print str_func1("test string")
2000-10-17 20:00:21 +00:00
if ![gdb_skip_stdio_test "print str_func1(teststring)"] {
2010-05-24 22:03:59 +00:00
gdb_test "print str_func1(\"test string\")" \
"first string arg is: test string.*\"test string\".*"
2000-10-17 20:00:21 +00:00
}
1999-04-16 01:35:26 +00:00
#call str_func1(s)
2000-10-17 20:00:21 +00:00
if ![gdb_skip_stdio_test "call str_func1(s)"] {
2010-05-24 22:03:59 +00:00
gdb_test "call str_func1(s)" \
"first string arg is: test string.*\"test string\".*"
2000-10-17 20:00:21 +00:00
}
1999-04-16 01:35:26 +00:00
#call str_func1("test string")
2000-10-17 20:00:21 +00:00
if ![gdb_skip_stdio_test "call str_func1 (...)"] {
2010-05-24 22:03:59 +00:00
gdb_test "call str_func1(\"test string\")" \
"first string arg is: test string.*\"test string\".*"
2000-10-17 20:00:21 +00:00
}
1999-04-16 01:35:26 +00:00
#print str_func1(buf)
2000-10-17 20:00:21 +00:00
if ![gdb_skip_stdio_test "print str_func1(buf)"] {
2010-05-24 22:03:59 +00:00
gdb_test "print str_func1(buf)" \
"first string arg is: test string.*\"test string\".*"
2000-10-17 20:00:21 +00:00
}
1999-04-16 01:35:26 +00:00
#call str_func1(buf)
2000-10-17 20:00:21 +00:00
if ![gdb_skip_stdio_test "call str_func1(buf)"] {
2010-05-24 22:03:59 +00:00
gdb_test "call str_func1(buf)" \
"first string arg is: test string.*\"test string\".*"
2000-10-17 20:00:21 +00:00
}
1999-04-16 01:35:26 +00:00
#print str_func("a","b","c","d","e","f","g")
2000-10-17 20:00:21 +00:00
if ![gdb_skip_stdio_test "print str_func(a,b,c,d,e,f,g)"] {
2010-05-24 22:03:59 +00:00
gdb_test "print str_func(\"a\",\"b\",\"c\",\"d\",\"e\",\"f\",\"g\")" \
"first string arg is: a\[ \t\r\n\]+second string arg is: b\[ \t\r\n\]+third string arg is: c\[ \t\r\n\]+fourth string arg is: d\[ \t\r\n\]+fifth string arg is: e\[ \t\r\n\]+sixth string arg is: f\[ \t\r\n\]+seventh string arg is: g\[ \t\r\n\]+.*= \"abcdefg\".*"
2000-10-17 20:00:21 +00:00
}
1999-04-16 01:35:26 +00:00
#call str_func("a","b","c","d","e","f","g")
2000-10-17 20:00:21 +00:00
if ![gdb_skip_stdio_test "call str_func(a,b,c,d,e,f,g)"] {
2010-05-24 22:03:59 +00:00
gdb_test "call str_func(\"a\",\"b\",\"c\",\"d\",\"e\",\"f\",\"g\")" \
"first string arg is: a\[ \t\r\n\]+second string arg is: b\[ \t\r\n\]+third string arg is: c\[ \t\r\n\]+fourth string arg is: d\[ \t\r\n\]+fifth string arg is: e\[ \t\r\n\]+sixth string arg is: f\[ \t\r\n\]+seventh string arg is: g\[ \t\r\n\]+.*= \"abcdefg\".*"
2000-10-17 20:00:21 +00:00
}
1999-04-16 01:35:26 +00:00
1999-06-28 16:06:02 +00:00
#print str_func(s,s,s,s,s,s,s)
2000-10-17 20:00:21 +00:00
if ![gdb_skip_stdio_test "print str_func(s,s,s,s,s,s,s,s)"] {
2010-05-24 22:03:59 +00:00
gdb_test "print str_func(s,s,s,s,s,s,s)" \
"first string arg is: test string\[ \t\r\n\]+second string arg is: test string\[ \t\r\n\]+third string arg is: test string\[ \t\r\n\]+fourth string arg is: test string\[ \t\r\n\]+fifth string arg is: test string\[ \t\r\n\]+sixth string arg is: test string\[ \t\r\n\]+seventh string arg is: test string\[ \t\r\n\]+.*\"test stringtest stringtest stringtest stringtest stringtest stringtest string\".*"
2000-10-17 20:00:21 +00:00
}
1999-04-16 01:35:26 +00:00
1999-06-28 16:06:02 +00:00
#call str_func(s,s,s,s,s,s,s)
2000-10-17 20:00:21 +00:00
if ![gdb_skip_stdio_test "call str_func(s,s,s,s,s,s,s,s)"] {
2010-05-24 22:03:59 +00:00
gdb_test "call str_func(s,s,s,s,s,s,s)" \
"first string arg is: test string\[ \t\r\n\]+second string arg is: test string\[ \t\r\n\]+third string arg is: test string\[ \t\r\n\]+fourth string arg is: test string\[ \t\r\n\]+fifth string arg is: test string\[ \t\r\n\]+sixth string arg is: test string\[ \t\r\n\]+seventh string arg is: test string\[ \t\r\n\]+.*\"test stringtest stringtest stringtest stringtest stringtest stringtest string\".*"
2000-10-17 20:00:21 +00:00
}
1999-04-16 01:35:26 +00:00
gdb_exit
* gdb.base/call-strs.exp, gdb.base/default.exp,
gdb.base/ending-run.exp, gdb.base/finish.exp, gdb.base/funcargs.exp,
gdb.base/huge.exp, gdb.base/nodebug.exp, gdb.base/ptype.exp,
gdb.base/restore.exp, gdb.base/return.exp, gdb.base/setvar.exp,
gdb.base/watchpoints.exp, gdb.threads/gcore-thread.exp,
gdb.base/watchpoint-solib.exp: Save and restore timeout.
* gdb.base/ending-run.exp: Correct restore of timeout.
* gdb.base/page.exp: Remove unnecessary timeout setting.
2010-01-29 15:38:38 +00:00
set timeout $prev_timeout