aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.python/py-type.exp
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2010-07-30 18:46:27 +0000
committerDoug Evans <dje@google.com>2010-07-30 18:46:27 +0000
commit999adef4d955013fd14ea9b54a15c2443b82d99b (patch)
tree47efeb79f29a7321d4c65bdc5ed3cb22d24117c1 /gdb/testsuite/gdb.python/py-type.exp
parentd3765805ec56713fc0af2aad01b1246bec4ca184 (diff)
downloadfsf-binutils-gdb-999adef4d955013fd14ea9b54a15c2443b82d99b.zip
fsf-binutils-gdb-999adef4d955013fd14ea9b54a15c2443b82d99b.tar.gz
fsf-binutils-gdb-999adef4d955013fd14ea9b54a15c2443b82d99b.tar.bz2
* gdb.python/py-type.exp (test_template): Mark as xfail tests
"python print ttype.template_argument(1)" and "python print isinstance(ttype.template_argument(1), gdb.Value)" if using gcc 4.4 or earlier.
Diffstat (limited to 'gdb/testsuite/gdb.python/py-type.exp')
-rw-r--r--gdb/testsuite/gdb.python/py-type.exp14
1 files changed, 14 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.python/py-type.exp b/gdb/testsuite/gdb.python/py-type.exp
index 1cdb1c1..6e5bd0e 100644
--- a/gdb/testsuite/gdb.python/py-type.exp
+++ b/gdb/testsuite/gdb.python/py-type.exp
@@ -24,6 +24,10 @@ set testfile "py-type"
set srcfile ${testfile}.c
set binfile ${objdir}/${subdir}/${testfile}
+if [get_compiler_info not-used c++] {
+ return -1;
+}
+
# Build inferior to language specification.
proc build_inferior {lang} {
global srcdir subdir srcfile binfile testfile hex
@@ -136,10 +140,20 @@ proc test_template {} {
gdb_test "python print ttype.template_argument(0)" "D"
gdb_test "python print isinstance(ttype.template_argument(0), gdb.Type)" \
"True"
+
# The next two tests require a GCC that emits DW_TAG_template_*.
+ # GCC 4.4 does not emit it, 4.5 and 6 do emit it.
+ set have_older_gcc 0
+ if {[test_compiler_info {gcc-[0-3]-*}]
+ || [test_compiler_info {gcc-4-[0-4]-*}]} {
+ set have_older_gcc 1
+ }
+ if $have_older_gcc { setup_xfail *-*-* }
gdb_test "python print ttype.template_argument(1)" "23"
+ if $have_older_gcc { setup_xfail *-*-* }
gdb_test "python print isinstance(ttype.template_argument(1), gdb.Value)" \
"True"
+
setup_kfail "gcc/41736" *-*-*
gdb_test "python print ttype.template_argument(2)" "&C::c"
}