X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2Ftestsuite%2Fgdb.stabs%2Fweird.exp;h=2806dfd8828bfdfd79778c5959de26c3ce4f6bac;hb=e2882c85786571175a0b0bfc3bcd2f14620b1ea3;hp=51573ccfe3ea96dbfc76e52e7959927e19a1fd64;hpb=8b0b198558d0fc981f129e2e3dcbe00a0f308449;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/testsuite/gdb.stabs/weird.exp b/gdb/testsuite/gdb.stabs/weird.exp index 51573ccfe3..2806dfd882 100644 --- a/gdb/testsuite/gdb.stabs/weird.exp +++ b/gdb/testsuite/gdb.stabs/weird.exp @@ -1,37 +1,29 @@ -# Copyright (C) 1997 Free Software Foundation, Inc. +# Copyright 1997-2018 Free Software Foundation, Inc. # 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 -# the Free Software Foundation; either version 2 of the License, or +# the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. -# +# # 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. -# +# # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -# Please email any bugs, comments, and/or additions to this file to: -# bug-gdb@prep.ai.mit.edu +# along with this program. If not, see . # Test that GDB properly ignores invalid stabs. # Also test that GDB can debug a .o file, and that it doesn't mind # a file that's more minimal than what a compiler normally puts out. -if $tracelevel then { - strace $tracelevel -} -# If the test directory was not created by configure then skip -# this test. -if ![file isdirectory ${objdir}/${subdir}] then { - return 0 -} +set testfile weird +set srcfile [standard_output_file weird.s] +set binfile [standard_output_file weirdx.o] -set prms_id 0 -set bug_id 0 +if { [ get_compiler_info ] } { + return -1 +} proc do_tests {} { global binfile @@ -149,6 +141,12 @@ proc do_tests {} { gdb_test "p sizeof (const70)" " = 2" "'e' constant with embedded type" + gdb_test "p constchar" " = 97 'a'" "char constant" + gdb_test "p constString1" " = \"Single quote String1\"" "string constant 1" + gdb_test "p constString2" " = \"Double quote String2\"" "string constant 2" + + gdb_test "p constString3" " = \"String3 with embedded quote ' in the middle\"" "string constant 3" + gdb_test "p constString4" { = "String4 with embedded quote \\" in the middle"} "string constant 4" gdb_test "p bad_neg0" " = \{field0 = 42, field2 =.*field3 = 45\}" "p bad_neg0" gdb_test "ptype inttype" "type = (unsigned int|inttype)" "ptype on inttype" @@ -170,9 +168,9 @@ field3 = 0x77888877\}" "print struct constant" # GDB does not yet support arrays indexed by anything at all unusual setup_xfail "*-*-*" - gdb_test "p array0" " = \{42, 43, 44, 45, 46, 47\}" "array0 with strange index" + gdb_test "p array0" " = \\{42, 43, 44, 45, 46, 47\\}" "array0 with strange index" setup_xfail "*-*-*" - gdb_test "p array1" " = \{42, 43, 44\}" "array1 with strange index" + gdb_test "p array1" " = \\{42, 43, 44\\}" "array1 with strange index" # GDB does not yet support this feature gdb_test "whatis one_var" "type = inttype_one" \ @@ -202,9 +200,6 @@ field3 = 0x77888877\}" "print struct constant" gdb_test "p common0var1" "= 24" setup_xfail "*-*-*" gdb_test "p common0var2" "= 22" - - # this long line must be continous, not with "/" escaping the newline - gdb_test "p v_comb" "{<> = {<> = {x = 42}, \[_a-zA-Z$.\]* = \[0-9xa-fA-F\]*, a = 43}, <> = {\[_a-zA-Z$.\]* = \[0-9xa-fA-F\]*, b = 44}, comb = 45}" } proc print_weird_var { var } { @@ -212,16 +207,13 @@ proc print_weird_var { var } { # Make sure that the variable gets printed out correctly, without # any sort of warning message. - send_gdb "print $var\n" - gdb_expect { + gdb_test_multiple "print $var" "variable $var printed property" { -re "^print $var\r*\n.\[0-9\]* = 42.*$gdb_prompt $" { pass "variable $var printed properly" } -re ".*$gdb_prompt $" { - fail "variable $var not printed properly" + fail "variable $var printed properly" } - timeout { fail "variable $var not printed (timeout)" } - eof { fail "(eof) variable $var not printed" } } # Make sure that the stabs did get loaded in a sensible way. @@ -239,12 +231,11 @@ proc print_weird_var { var } { # Don't use gdb_load; it doesn't bitch if the loading produced some # error messages during symbol reading. -set testfile weird -set srcfile ${objdir}/${subdir}/weird.s -set binfile ${objdir}/${subdir}/weirdx.o global target_os set sedscript ${srcdir}/${subdir}/aout.sed +set sedoptions "" + switch -glob ${target_triplet} { "hppa*-*-*" { set sedscript ${srcdir}/${subdir}/hppa.sed @@ -254,37 +245,34 @@ switch -glob ${target_triplet} { } "powerpc-*-aix*" { set sedscript ${srcdir}/${subdir}/xcoff.sed + set sedoptions "-r" } "rs6000-*-aix*" { set sedscript ${srcdir}/${subdir}/xcoff.sed + set sedoptions "-r" } "*-*-aout" { set sedscript ${srcdir}/${subdir}/aout.sed } "*-*-xcoff" { set sedscript ${srcdir}/${subdir}/xcoff.sed + set sedoptions "-r" } "alpha-*-*" { set sedscript ${srcdir}/${subdir}/ecoff.sed } } - # Hope this is a Unix box. -set exec_output [remote_exec build "sed" "-f ${sedscript}" "${srcdir}/${subdir}/weird.def" "${srcfile}"] +set exec_output [remote_exec build "sed" "${sedoptions} -f ${sedscript}" "${srcdir}/${subdir}/weird.def" "${srcfile}"] if { [lindex $exec_output 0] != 0 } { perror "Couldn't make test case. $exec_output" return -1 } -# HP's assembler has no idea of what to do with .stab directives; detect the -# use of HP compilers and escape from here. (No doubt a better heuristic -# could be devised.) - -if { [ info exists CC ] && [ string first "/opt/ansic/bin/cc" "$CC" ] >= 0 } then { continue } - if { [gdb_compile "${srcfile}" "${binfile}" object ""] != "" } { - gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail." + untested "failed to compile" + return -1 } remote_file build delete ${srcfile} @@ -294,7 +282,9 @@ gdb_exit gdb_start gdb_reinitialize_dir $srcdir/$subdir -set binfile [remote_download host ${binfile} object.o] +set binfile [gdb_remote_download host ${binfile} \ + [standard_output_file object.o]] +set binfile_re [string_to_regexp $binfile] send_gdb "file $binfile\n" # If $binfile is very long, a \r (but not a \n) will echo in the # middle of the echo of the command. So to match the echo, we @@ -307,15 +297,15 @@ gdb_expect 60 { -re "^file (\[^ \]| +\008)*\r*\n" { exp_continue } - -re "A program is being debugged already. Kill it\\? \\(y or n\\)" { + -re "A program is being debugged already.\[\r\n\]+Are you sure you want to change the file\\? \\(y or n\\)" { send_gdb "y\n" exp_continue } - -re "^Reading symbols from $binfile\\.\\.\\.done\.\r*\n$gdb_prompt $" { + -re "^Reading symbols from .*$binfile_re\\.\\.\\.done\.(|\r\nUsing host libthread_db library .*libthread_db.so.*\\.)\r\n$gdb_prompt $" { pass "weirdx.o read without error" } -re ".*$gdb_prompt $" { - fail "Errors reading weirdx.o" + fail "errors reading weirdx.o" } timeout { perror "couldn't load $binfile into $GDB (timed out)." @@ -326,6 +316,4 @@ gdb_expect 60 { do_tests -remote_file host delete ${binfile} - return 0