Handle void * conversions in FreeBSD/x86 native code to fix C++ build.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / derivation.exp
index 984219e1c64af878bd6c6d8fb3995c35231add46..645c2b8769ee821bb2ce9ee59a41a2a4d95a3020 100644 (file)
@@ -1,22 +1,17 @@
-# Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004
-# Free Software Foundation, Inc.
+# Copyright 1998-2016 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 <http://www.gnu.org/licenses/>.
 
 # This file was written by Elena Zannoni (ezannoni@cygnus.com)
 # And rewritten by Michael Chastain <mec.gnu@mindspring.com>
 set ws "\[\r\n\t \]+"
 set nl "\[\r\n\]+"
 
-if $tracelevel then {
-    strace $tracelevel
-}
-
 # Start program.
 
-set prms_id 0
-set bug_id 0
 
 if { [skip_cplus_tests] } { continue }
 
-set testfile "derivation"
-set srcfile ${testfile}.cc
-set binfile ${objdir}/${subdir}/${testfile}
+load_lib "cp-support.exp"
 
-if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug c++}] != "" } {
-     gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
+standard_testfile derivation.cc derivation2.cc
+
+if {[prepare_for_testing $testfile.exp $testfile \
+       [list $srcfile $srcfile2] {debug c++}]} {
+    return -1
 }
 
-gdb_exit
-gdb_start
-gdb_reinitialize_dir $srcdir/$subdir
-gdb_load ${binfile}
+# Check inheritance of typedefs.
+with_test_prefix "before run" {
+    foreach klass {"A" "D" "E" "F" "A2" "D2"} {
+       gdb_test "ptype ${klass}::value_type" "type = int"
+       gdb_test "whatis ${klass}::value_type" "type = int"
+       gdb_test "p (${klass}::value_type) 0" " = 0"
+    }
+    foreach klass {"Z" "ZZ"} {
+       gdb_test "ptype ${klass}::value_type" "type = float"
+       gdb_test "whatis ${klass}::value_type" "type = float"
+       gdb_test "p (${klass}::value_type) 0" " = 0"
+    }
+}
 
 # Set it up at a breakpoint so we can play with the variable values.
 
@@ -61,68 +60,60 @@ if ![runto 'marker1'] then {
     continue
 }
 
+# Check inheritance of typedefs again, but this time with an active block.
+with_test_prefix "at marker1" {
+    foreach klass {"A" "D" "A2" "D2"} {
+       gdb_test "ptype ${klass}::value_type" "type = int"
+       gdb_test "whatis ${klass}::value_type" "type = int"
+       gdb_test "p (${klass}::value_type) 0" " = 0"
+    }
+}
+
 gdb_test "up" ".*main.*" "up from marker1"
 
 # Print class types and values.
-# See virtfunc.exp for a discussion of ptype.
 
 # class A
 
-set re_class           "((struct|class) A \{${ws}public:|struct A \{)"
-set re_fields          "int a;${ws}int aa;"
-set re_methods         "A\\((void|)\\);${ws}int afoo\\((void|)\\);${ws}int foo\\((void|)\\);"
-set re_synth_gcc_23    "A & operator=\\(A const ?&\\);${ws}A\\(A const ?&\\);"
-set re_all_methods     "($re_methods|$re_methods${ws}$re_synth_gcc_23|$re_synth_gcc_23${ws}$re_methods)"
+gdb_test "print a_instance" "\\$\[0-9\]+ = \{a = 1, aa = 2\}" "print value of a_instance"
 
-gdb_test_multiple "ptype a_instance" "ptype a_instance" {
-    -re "type = $re_class${ws}$re_fields${ws}$re_all_methods$nl\}$nl$gdb_prompt $" {
-       pass "ptype a_instance"
+cp_test_ptype_class \
+    "a_instance" "" "class" "A" \
+    {
+       { field  public "A::value_type a;" }
+       { field  public "A::value_type aa;" }
+       { method public "A();" }
+       { method public "A::value_type afoo();" }
+       { method public "A::value_type foo();" }
+       { typedef public "typedef int value_type;" }
     }
-}
-
-gdb_test "print a_instance" "\\$\[0-9\]+ = \{a = 1, aa = 2\}" "print value of a_instance"
 
 # class D
 
-set re_class           "class D : private A, public B, protected C \{${ws}public:"
-set re_class_BAD       "class D : private A, public B, private C \{${ws}public:"
-set re_fields          "int d;${ws}int dd;"
-set re_methods         "D\\((void|)\\);${ws}int dfoo\\((void|)\\);${ws}int foo\\((void|)\\);"
-set re_synth_gcc_23    "D & operator=\\(D const ?&\\);${ws}D\\(D const ?&\\);"
-set re_all_methods     "($re_methods|$re_methods${ws}$re_synth_gcc_23|$re_synth_gcc_23${ws}$re_methods)"
-
-gdb_test_multiple "ptype d_instance" "ptype d_instance" {
-    -re "type = $re_class${ws}$re_fields${ws}$re_all_methods$nl\}$nl$gdb_prompt $" {
-       pass "ptype d_instance"
-    }
-    -re "type = $re_class_BAD${ws}$re_fields${ws}$re_all_methods$nl\}$nl$gdb_prompt $" {
-       kfail "gdb/1498" "ptype d_instance"
-    }
-}
-
 gdb_test_multiple "print d_instance" "print value of d_instance" {
     -re "\\$\[0-9\]+ = \{<(class A|A)> = \{a = 1, aa = 2\}, <(class B|B)> = \{b = 3, bb = 4\}, <(class C|C)> = \{c = 5, cc = 6\}, d = 7, dd = 8\}$nl$gdb_prompt $" {
        pass "print value of d_instance"
     }
 }
 
-# class E
-
-set re_class           "class E : public A, private B, protected C \{${ws}public:"
-set re_class_BAD       "class E : public A, private B, private C \{${ws}public:"
-set re_fields          "int e;${ws}int ee;"
-set re_methods         "E\\((void|)\\);${ws}int efoo\\((void|)\\);${ws}int foo\\((void|)\\);"
-set re_synth_gcc_23    "E & operator=\\(E const ?&\\);${ws}E\\(E const ?&\\);"
-set re_all_methods     "($re_methods|$re_methods${ws}$re_synth_gcc_23|$re_synth_gcc_23${ws}$re_methods)"
-
-gdb_test_multiple "ptype e_instance" "ptype e_instance" {
-    -re "type = $re_class${ws}$re_fields${ws}$re_all_methods$nl\}$nl$gdb_prompt $" {
-       pass "ptype e_instance"
-    }
-    -re "type = $re_class_BAD${ws}$re_fields${ws}$re_all_methods$nl\}$nl$gdb_prompt $" {
-       kfail "gdb/1498" "ptype e_instance"
+cp_test_ptype_class \
+    "d_instance" "" "class" "D" \
+    {
+       { base          "private A" }
+       { base          "public B" }
+       { base          "protected C" }
+       { field  public "A::value_type d;" }
+       { field  public "A::value_type dd;" }
+       { method public "D();" }
+       { method public "A::value_type dfoo();" }
+       { method public "A::value_type foo();" }
+    } \
+    "" \
+    {
+       { "protected C" "private C" { setup_xfail "*-*-*" "gcc/13539" } }
     }
-}
+
+# class E
 
 gdb_test_multiple "print e_instance" "print value of e_instance" {
     -re "\\$\[0-9\]+ = \{<(class A|A)> = \{a = 1, aa = 2\}, <(class B|B)> = \{b = 3, bb = 4\}, <(class C|C)> = \{c = 5, cc = 6\}, e = 9, ee = 10\}$nl$gdb_prompt $" {
@@ -130,19 +121,24 @@ gdb_test_multiple "print e_instance" "print value of e_instance" {
     }
 }
 
-# class F
-
-set re_class           "class F : private A, public B, private C \{${ws}public:"
-set re_fields          "int f;${ws}int ff;"
-set re_methods         "F\\((void|)\\);${ws}int ffoo\\((void|)\\);${ws}int foo\\((void|)\\);"
-set re_synth_gcc_23    "F & operator=\\(F const ?&\\);${ws}F\\(F const ?&\\);"
-set re_all_methods     "($re_methods|$re_methods${ws}$re_synth_gcc_23|$re_synth_gcc_23${ws}$re_methods)"
-
-gdb_test_multiple "ptype f_instance" "ptype f_instance" {
-    -re "type = $re_class${ws}$re_fields${ws}$re_all_methods$nl\}$nl$gdb_prompt $" {
-       pass "ptype f_instance"
+cp_test_ptype_class \
+    "e_instance" "" "class" "E" \
+    {
+       { base          "public A" }
+       { base          "private B" }
+       { base          "protected C" }
+       { field  public "A::value_type e;" }
+       { field  public "A::value_type ee;" }
+       { method public "E();" }
+       { method public "A::value_type efoo();" }
+       { method public "A::value_type foo();" }
+    } \
+    "" \
+    {
+       { "protected C" "private C" { setup_xfail "*-*-*" "gcc/13539" } }
     }
-}
+
+# class F
 
 gdb_test_multiple "print f_instance" "print value of f_instance" {
     -re "\\$\[0-9\]+ = \{<(class A|A)> = \{a = 1, aa = 2\}, <(class B|B)> = \{b = 3, bb = 4\}, <(class C|C)> = \{c = 5, cc = 6\}, f = 11, ff = 12\}$nl$gdb_prompt $" {
@@ -150,6 +146,35 @@ gdb_test_multiple "print f_instance" "print value of f_instance" {
     }
 }
 
+cp_test_ptype_class \
+    "f_instance" "" "class" "F" \
+    {
+       { base          "private A" }
+       { base          "public B" }
+       { base          "private C" }
+       { field  public "A::value_type f;" }
+       { field  public "A::value_type ff;" }
+       { method public "F();" }
+       { method public "A::value_type ffoo();" }
+       { method public "A::value_type foo();" }
+    }
+
+# class G
+cp_test_ptype_class \
+    "g_instance" "" "class" "G" \
+    {
+       { base          "private A" }
+       { base          "public B" }
+       { base          "protected C" }
+       { field public "int g;" }
+       { field public "int gg;" }
+       { field public "int a;" }
+       { field public "int b;" }
+       { field public "int c;" }
+       { method public "int gfoo();" }
+       { method public "int foo();" }
+    }
+
 # Print individual fields.
 
 gdb_test "print d_instance.a"  "\\$\[0-9\]+ = 1" "print value of d_instance.a"
@@ -192,3 +217,53 @@ gdb_test_multiple "frame" "re-selected 'main' frame after inferior call" {
 
 gdb_test "print g_instance.bfoo()" "\\$\[0-9\]+ = 2" "print value of g_instance.bfoo()"
 gdb_test "print g_instance.cfoo()" "\\$\[0-9\]+ = 3" "print value of g_instance.cfoo()"
+
+# Check typedefs of fields
+foreach Klass {"C" "G"} {
+    set klass [string tolower $Klass]
+    set instance "${klass}_instance"
+    set var "${instance}.$klass"
+    gdb_test "whatis $var" "int"
+    gdb_test "ptype $var" "int"
+}
+
+foreach Klass {"A" "B" "D" "E" "F"} {
+    set klass [string tolower $Klass]
+    set instance "${klass}_instance"
+    set var "${instance}.$klass"
+    gdb_test "whatis $var" "A::value_type"
+    gdb_test "ptype $var" "int"
+    if {![string equal $Klass "B"]} {
+       gdb_test "p (${Klass}::value_type) 0" " = 0"
+    }
+}
+
+foreach Klass {"Z" "ZZ"} {
+    set klass [string tolower $Klass]
+    set instance "${klass}_instance"
+    set var "${instance}.$klass"
+    gdb_test "whatis $var" "Z::value_type"
+    gdb_test "ptype $var" "float"
+    gdb_test "p (${Klass}::value_type) 0" " = 0"
+}
+
+# This is a regression test for a bug that caused a crash when trying
+# to print the vtbl pointer.  We don't care about the output so much
+# here (it is tested elsewhere), just that gdb doesn't crash.  We test
+# "ptype" first because, before the gdb fix, that was the only code
+# path calling get_vptr_fieldno.
+gdb_test "ptype vderived" "type = .*"
+gdb_test "print vderived" " = {.* inter = 0.*x = 0}"
+
+# Test whether inheritance of typedefs is properly
+# reported when stopped.
+gdb_test "ptype N::value_type" "type = double"
+gdb_test "ptype N::Derived::value_type" "type = int"
+
+# Now run to N::Derived::doit and get the type of "value_type"
+if {![runto "N::Derived::doit"]} {
+    perror "couldn't run to N::Derived::doit"
+    continue
+}
+
+gdb_test "ptype value_type" "type = int"
This page took 0.026925 seconds and 4 git commands to generate.