Switch the license of all .exp files to GPLv3.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / bs15503.exp
index ef249516bd671975f6bda66279d791410d60bcef..ebff050b8712bc9aa82f94b3212209f6bc8a4190 100644 (file)
-# Copyright (C) 1992 Free Software Foundation, Inc.
+# Copyright 1992, 2004, 2005, 2007 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.  */
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 # Test case for CLLbs15503
 # This file was written by Sue Kimura (sue_kimura@hp.com)
+# Rewritten by Michael Chastain (mec.gnu@mindspring.com)
 
 if $tracelevel {
     strace $tracelevel
 }
 
-if { [skip_hp_tests] } { continue }
+if { [skip_cplus_tests] } { continue }
+
+# On SPU this test fails because the executable exceeds local storage size.
+if { [istarget "spu*-*-*"] } {
+        return 0
+}
 
 set testfile "bs15503"
 set srcfile ${testfile}.cc
 set binfile ${objdir}/${subdir}/${testfile}
 
-# Create and source the file that provides information about the compiler
-# used to compile the test case.
 if [get_compiler_info ${binfile}] {
     return -1
 }
 
-# The testcode is non-conforming and rejected by GCC.  So bypass this
-# test completely unless we're compiling with HP's compiler.
-if {!$hp_aCC_compiler && !$hp_cc_compiler} {
-  return 0
-}
-    
 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable "debug c++"] != "" } {
     perror "Couldn't compile ${srcfile}"
     return -1
 }
 
-
-# Start with a fresh gdb.
 gdb_exit
 gdb_start
 gdb_reinitialize_dir $srcdir/$subdir
+gdb_load ${binfile}
 
-#  Load $binfile -- there should be no warnings about "Procedure ... spans 
-#  file or module boundaries", "No symbols in psymtab for file ..." or 
-#  "File ... has ending address after starting address of next file..."
-
-if [istarget "hppa64-hp-hpux*" ] {
-    gdb_test "file $binfile" \
-        "Detected 64-bit executable..*Invoking .*gdb64..*Use \"run\" to continue execution." \
-        "loading $binfile"
-} else {
-    gdb_test "file $binfile" \
-        "Reading symbols from $binfile...done." \
-        "loading $binfile"
+if ![runto_main] then {
+    perror "couldn't run to breakpoint"
+    continue
 }
-#  Test setting breakpoint on template function
-#
+
+# Set breakpoint on template function
+
 gdb_test "break StringTest<wchar_t>::testFunction" \
-    "Breakpoint $decimal at $hex: file .*bs15503.cc, line 19." \
-    "break point on function"
+    "Breakpoint $decimal at $hex: file .*${srcfile}, line $decimal."
 
-gdb_test "run" \
-    "Starting program:.*Breakpoint $decimal, StringTest<wchar_t>::testFunction \\(this=$hex\\).*cout << \"in StringTest\" << endl;.*" \
-    "run to function breakpoint"
+gdb_test "continue" \
+    ".*Breakpoint $decimal, StringTest<wchar_t>::testFunction \\(this=$hex\\).*" \
+    "continue to StringTest<wchar_t>"
 
-#restart with fresh gdb
-gdb_exit
-gdb_start
-gdb_reinitialize_dir $srcdir/$subdir
-gdb_load $binfile
+# Run to some random point in the middle of the function.
+
+gdb_breakpoint [gdb_get_line_number "find position where blank needs to be inserted"]
+gdb_continue_to_breakpoint "find position where blank needs to be inserted"
+
+# Call some string methods.
+
+gdb_test "print s.length()"            "\\$\[0-9\]+ = 42"
+gdb_test "print s\[0\]"                        "\\$\[0-9\]+ =.* 'I'"
+gdb_test "print s\[s.length()-1\]"     "\\$\[0-9\]+ =.* 'g'"
+gdb_test "print (const char *) s" \
+    "\\$\[0-9\]+ = $hex \"I am a short stringand now a longer string\""
+
+# TODO: tests that do not work with gcc 2.95.3
+# -- chastain 2004-01-07
+# 
+# gdb_test "print s.compare(s)"                "\\$\[0-9\]+ = 0"
+# gdb_test "print s.compare(\"AAA\")"     "\\$\[0-9\]+ = 1"
+# gdb_test "print s.compare(\"ZZZ\")"     "\\$\[0-9\]+ = -1"
+
+# TODO: tests that do not work with gcc 2.95.3 and gcc 3.3.2.
+# cannot call overloaded non-member operator.  -- chastain 2004-01-07
+# 
+# gdb_test "print s == s"                      "\\$\[0-9\]+ = true"
+# gdb_test "print s > "AAA"                    "\\$\[0-9\]+ = true"
+# gdb_test "print s < "ZZZ"                    "\\$\[0-9\]+ = true"
 
-gdb_test "break 32" \
-    "Breakpoint $decimal at $hex: file .*bs15503.cc, line 32." \
-    "break point on line in function"
+# TODO: GDB doesn't know to convert the string to a const char *, and
+# instead tries to use the string as a structure initializer.
+# 
+# gdb_test "print s == \"I am a short stringand now a longer string\"" \
+#     "\\$\[0-9\]+ = true"
+
+gdb_test "print (const char *) s.substr(0,4)"  "\\$\[0-9\]+ = $hex \"I am\""
+gdb_test "print (const char *) (s=s.substr(0,4))" \
+    "\\$\[0-9\]+ = $hex \"I am\""
 
-gdb_test "run" \
-    ".*32.*string::size_type spos = s.find\\(\"and\"\\);.*" \
-    "run to break point on line in function"
+# TODO: cannot call overloaded non-member operator again.
+# -- chastain 2004-01-07
+# 
+# gdb_test "print (const char *) (s + s)" \
+#    "\\$\[0-9\]+ = $hex \"I amI am\""
+# gdb_test "print (const char *) (s + \" \" + s)" \
+#    "\\$\[0-9\]+ = $hex \"I am I am\""
This page took 0.027847 seconds and 4 git commands to generate.