2017-01-01 07:50:51 +01:00
# Copyright 1998-2017 Free Software Foundation, Inc.
1999-04-16 03:35:26 +02: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 20:14:19 +02:00
# the Free Software Foundation; either version 3 of the License, or
1999-04-16 03:35:26 +02:00
# (at your option) any later version.
2007-08-23 20:14:19 +02:00
#
1999-04-16 03:35:26 +02: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 20:14:19 +02:00
#
1999-04-16 03:35:26 +02:00
# You should have received a copy of the GNU General Public License
2007-08-23 20:14:19 +02:00
# along with this program. If not, see <http://www.gnu.org/licenses/>.
1999-04-16 03:35:26 +02: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
test suite update - gdb.base/[cd]
Convert files gdb.base/[cd]*.exp to use standard_output_file et al.
* call-ar-st.exp, call-rt-st.exp, call-sc.exp,
call-signal-resume.exp, call-strs.exp, callexit.exp,
callfuncs.exp, catch-load.exp, catch-syscall.exp, charset.exp,
checkpoint.exp, chng-syms.exp, code-expr.exp, code_elim.exp,
commands.exp, completion.exp, complex.exp, cond-expr.exp,
condbreak.exp, consecutive.exp, constvars.exp, corefile.exp,
ctxobj.exp, cursal.exp, cvexpr.exp, dbx.exp, default.exp,
define.exp, del.exp, detach.exp, dfp-test.exp, display.exp,
dmsym.exp, dump.exp, dup-sect.exp: Use standard_testfile,
standard_output_file, prepare_for_testing, clean_restart.
2013-06-27 20:49:03 +02:00
standard_testfile
1999-04-16 03:35:26 +02:00
2002-01-06 15:42:39 +01:00
# Some targets can't call functions, so don't even bother with this
# test.
1999-04-16 03:35:26 +02:00
if [target_info exists gdb,cannot_call_functions] {
2016-12-01 21:40:05 +01:00
unsupported "this target can not call functions"
1999-04-16 03:35:26 +02:00
continue
}
2016-12-23 17:52:18 +01:00
if {[prepare_for_testing "failed to prepare" $testfile $srcfile debug]} {
test suite update - gdb.base/[cd]
Convert files gdb.base/[cd]*.exp to use standard_output_file et al.
* call-ar-st.exp, call-rt-st.exp, call-sc.exp,
call-signal-resume.exp, call-strs.exp, callexit.exp,
callfuncs.exp, catch-load.exp, catch-syscall.exp, charset.exp,
checkpoint.exp, chng-syms.exp, code-expr.exp, code_elim.exp,
commands.exp, completion.exp, complex.exp, cond-expr.exp,
condbreak.exp, consecutive.exp, constvars.exp, corefile.exp,
ctxobj.exp, cursal.exp, cvexpr.exp, dbx.exp, default.exp,
define.exp, del.exp, detach.exp, dfp-test.exp, display.exp,
dmsym.exp, dump.exp, dup-sect.exp: Use standard_testfile,
standard_output_file, prepare_for_testing, clean_restart.
2013-06-27 20:49:03 +02:00
return -1
}
1999-04-16 03:35:26 +02:00
2010-05-25 00:03:59 +02:00
gdb_test_no_output "set print sevenbit-strings"
gdb_test_no_output "set print address off"
2012-05-18 17:31:42 +02:00
gdb_test_no_output "set print symbol off"
2010-05-25 00:03:59 +02:00
gdb_test_no_output "set width 0"
1999-04-16 03:35:26 +02: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 16:38:38 +01:00
set prev_timeout $timeout
set timeout 120
2015-07-29 12:09:45 +02:00
gdb_test "next 2" \
2010-05-25 00:03:59 +02:00
"strcpy\\(buf, \"test string\"\\);" \
"step after assignment to s"
1999-04-16 03:35:26 +02:00
2002-09-13 02:43:10 +02:00
#next
2010-05-25 00:03:59 +02:00
gdb_test "next" \
"str_func\\(\"abcd\", \"efgh\", \"ijkl\", \"mnop\", \"qrst\", \"uvwx\", \"yz12\"\\);" \
"next over strcpy"
1999-04-16 03:35:26 +02:00
#print buf
2010-05-25 00:03:59 +02:00
gdb_test "print buf" \
"\"test string\",.*repeats 88 times.*"
1999-04-16 03:35:26 +02:00
#print s
2010-05-25 00:03:59 +02:00
gdb_test "print s" \
" = \"test string\".*"
1999-04-16 03:35:26 +02:00
#print str_func1(s)
2000-10-17 22:00:21 +02:00
if ![gdb_skip_stdio_test "print str_func1(s)"] {
2015-07-29 12:09:38 +02:00
gdb_test_stdio "print str_func1(s)" \
"first string arg is: test string" \
"\"test string\".*"
2000-10-17 22:00:21 +02:00
}
1999-04-16 03:35:26 +02:00
#print str_func1("test string")
2000-10-17 22:00:21 +02:00
if ![gdb_skip_stdio_test "print str_func1(teststring)"] {
2015-07-29 12:09:38 +02:00
gdb_test_stdio "print str_func1(\"test string\")" \
"first string arg is: test string" \
"\"test string\".*"
2000-10-17 22:00:21 +02:00
}
1999-04-16 03:35:26 +02:00
#call str_func1(s)
2000-10-17 22:00:21 +02:00
if ![gdb_skip_stdio_test "call str_func1(s)"] {
2015-07-29 12:09:38 +02:00
gdb_test_stdio "call str_func1(s)" \
"first string arg is: test string" \
"\"test string\".*"
2000-10-17 22:00:21 +02:00
}
1999-04-16 03:35:26 +02:00
#call str_func1("test string")
2000-10-17 22:00:21 +02:00
if ![gdb_skip_stdio_test "call str_func1 (...)"] {
2015-07-29 12:09:38 +02:00
gdb_test_stdio "call str_func1(\"test string\")" \
"first string arg is: test string" \
"\"test string\".*"
2000-10-17 22:00:21 +02:00
}
1999-04-16 03:35:26 +02:00
#print str_func1(buf)
2000-10-17 22:00:21 +02:00
if ![gdb_skip_stdio_test "print str_func1(buf)"] {
2015-07-29 12:09:38 +02:00
gdb_test_stdio "print str_func1(buf)" \
"first string arg is: test string" \
"\"test string\".*"
2000-10-17 22:00:21 +02:00
}
1999-04-16 03:35:26 +02:00
#call str_func1(buf)
2000-10-17 22:00:21 +02:00
if ![gdb_skip_stdio_test "call str_func1(buf)"] {
2015-07-29 12:09:38 +02:00
gdb_test_stdio "call str_func1(buf)" \
"first string arg is: test string" \
"\"test string\".*"
2000-10-17 22:00:21 +02:00
}
1999-04-16 03:35:26 +02:00
#print str_func("a","b","c","d","e","f","g")
2000-10-17 22:00:21 +02:00
if ![gdb_skip_stdio_test "print str_func(a,b,c,d,e,f,g)"] {
2015-07-29 12:09:38 +02:00
gdb_test_stdio "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 22:00:21 +02:00
}
1999-04-16 03:35:26 +02:00
#call str_func("a","b","c","d","e","f","g")
2000-10-17 22:00:21 +02:00
if ![gdb_skip_stdio_test "call str_func(a,b,c,d,e,f,g)"] {
2015-07-29 12:09:38 +02:00
gdb_test_stdio "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 22:00:21 +02:00
}
1999-04-16 03:35:26 +02:00
1999-06-28 18:06:02 +02:00
#print str_func(s,s,s,s,s,s,s)
2000-10-17 22:00:21 +02:00
if ![gdb_skip_stdio_test "print str_func(s,s,s,s,s,s,s,s)"] {
2015-07-29 12:09:38 +02:00
gdb_test_stdio "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 22:00:21 +02:00
}
1999-04-16 03:35:26 +02:00
1999-06-28 18:06:02 +02:00
#call str_func(s,s,s,s,s,s,s)
2000-10-17 22:00:21 +02:00
if ![gdb_skip_stdio_test "call str_func(s,s,s,s,s,s,s,s)"] {
2015-07-29 12:09:38 +02:00
gdb_test_stdio "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 22:00:21 +02:00
}
1999-04-16 03:35:26 +02: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 16:38:38 +01:00
set timeout $prev_timeout