Blame SOURCES/gdb-rhbz947564-findvar-assertion-frame-failed-testcase.patch

4c2ad1
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
4c2ad1
From: Fedora GDB patches <invalid@email.com>
4c2ad1
Date: Fri, 27 Oct 2017 21:07:50 +0200
4c2ad1
Subject: gdb-rhbz947564-findvar-assertion-frame-failed-testcase.patch
4c2ad1
4c2ad1
;; Import regression test for `gdb/findvar.c:417: internal-error:
4c2ad1
;; read_var_value: Assertion `frame' failed.' (RH BZ 947564) from RHEL 6.5.
4c2ad1
;;=fedoratest
4c2ad1
4c2ad1
diff --git a/gdb/testsuite/gdb.threads/tls-rhbz947564.cc b/gdb/testsuite/gdb.threads/tls-rhbz947564.cc
4c2ad1
new file mode 100644
4c2ad1
--- /dev/null
4c2ad1
+++ b/gdb/testsuite/gdb.threads/tls-rhbz947564.cc
4c2ad1
@@ -0,0 +1,53 @@
4c2ad1
+#include <iostream>
4c2ad1
+#include <pthread.h>
4c2ad1
+
4c2ad1
+class x
4c2ad1
+  {
4c2ad1
+  public:
4c2ad1
+    int n;
4c2ad1
+
4c2ad1
+    x() : n(0) {}
4c2ad1
+  };
4c2ad1
+
4c2ad1
+class y
4c2ad1
+  {
4c2ad1
+  public:
4c2ad1
+    int v;
4c2ad1
+
4c2ad1
+    y() : v(0) {}
4c2ad1
+    static __thread x *xp;
4c2ad1
+  };
4c2ad1
+
4c2ad1
+__thread x *y::xp;
4c2ad1
+
4c2ad1
+static void
4c2ad1
+foo (y *yp)
4c2ad1
+{
4c2ad1
+  yp->v = 1;   /* foo_marker */
4c2ad1
+}
4c2ad1
+
4c2ad1
+static void *
4c2ad1
+bar (void *unused)
4c2ad1
+{
4c2ad1
+  x xinst;
4c2ad1
+  y::xp= &xinst;
4c2ad1
+
4c2ad1
+  y yy;
4c2ad1
+  foo(&yy;;
4c2ad1
+
4c2ad1
+  return NULL;
4c2ad1
+}
4c2ad1
+
4c2ad1
+int
4c2ad1
+main(int argc, char *argv[])
4c2ad1
+{
4c2ad1
+  pthread_t t[2];
4c2ad1
+
4c2ad1
+  pthread_create (&t[0], NULL, bar, NULL);
4c2ad1
+  pthread_create (&t[1], NULL, bar, NULL);
4c2ad1
+
4c2ad1
+  pthread_join (t[0], NULL);
4c2ad1
+  pthread_join (t[1], NULL);
4c2ad1
+
4c2ad1
+  return 0;
4c2ad1
+}
4c2ad1
diff --git a/gdb/testsuite/gdb.threads/tls-rhbz947564.exp b/gdb/testsuite/gdb.threads/tls-rhbz947564.exp
4c2ad1
new file mode 100644
4c2ad1
--- /dev/null
4c2ad1
+++ b/gdb/testsuite/gdb.threads/tls-rhbz947564.exp
4c2ad1
@@ -0,0 +1,75 @@
4c2ad1
+# Copyright (C) 2013 Free Software Foundation, Inc.
4c2ad1
+
4c2ad1
+# This program is free software; you can redistribute it and/or modify
4c2ad1
+# it under the terms of the GNU General Public License as published by
4c2ad1
+# the Free Software Foundation; either version 3 of the License, or
4c2ad1
+# (at your option) any later version.
4c2ad1
+#
4c2ad1
+# This program is distributed in the hope that it will be useful,
4c2ad1
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
4c2ad1
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4c2ad1
+# GNU General Public License for more details.
4c2ad1
+#
4c2ad1
+# You should have received a copy of the GNU General Public License
4c2ad1
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
4c2ad1
+
4c2ad1
+set testfile tls-rhbz947564
4c2ad1
+set srcfile ${testfile}.cc
4c2ad1
+set binfile [standard_output_file ${testfile}]
4c2ad1
+
4c2ad1
+if [istarget "*-*-linux"] then {
4c2ad1
+    set target_cflags "-D_MIT_POSIX_THREADS"
4c2ad1
+} else {
4c2ad1
+    set target_cflags ""
4c2ad1
+}
4c2ad1
+
4c2ad1
+if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list c++ debug]] != "" } {
4c2ad1
+    return -1
4c2ad1
+}
4c2ad1
+
4c2ad1
+gdb_exit
4c2ad1
+gdb_start
4c2ad1
+gdb_reinitialize_dir $srcdir/$subdir
4c2ad1
+
4c2ad1
+gdb_load ${binfile}
4c2ad1
+
4c2ad1
+if { ![runto_main] } {
4c2ad1
+    fail "Can't run to function main"
4c2ad1
+    return 0
4c2ad1
+}
4c2ad1
+
4c2ad1
+gdb_breakpoint "foo"
4c2ad1
+gdb_continue_to_breakpoint "foo" ".* foo_marker .*"
4c2ad1
+
4c2ad1
+proc get_xp_val {try} {
4c2ad1
+    global expect_out
4c2ad1
+    global gdb_prompt
4c2ad1
+    global hex
4c2ad1
+
4c2ad1
+    set xp_val ""
4c2ad1
+    gdb_test_multiple "print *yp" "print yp value" {
4c2ad1
+	-re { = \{v = 0, static xp = (0x[0-9a-f]+)\}.* } {
4c2ad1
+	    pass "print $try value of *yp"
4c2ad1
+	    set xp_val $expect_out(1,string)
4c2ad1
+	}
4c2ad1
+	-re "$gdb_prompt $" {
4c2ad1
+	    fail "print $try value of *yp"
4c2ad1
+	}
4c2ad1
+	timeout {
4c2ad1
+	    fail "print $try value of *yp (timeout)"
4c2ad1
+	}
4c2ad1
+    }
4c2ad1
+    return $xp_val
4c2ad1
+}
4c2ad1
+
4c2ad1
+set first_run [get_xp_val "first"]
4c2ad1
+
4c2ad1
+gdb_test "continue" "Breakpoint \[0-9\]+, foo \\\(yp=$hex\\\) at.*"
4c2ad1
+
4c2ad1
+set second_run [get_xp_val "second"]
4c2ad1
+
4c2ad1
+if { $first_run != $second_run } {
4c2ad1
+    pass "different values for TLS variable"
4c2ad1
+} else {
4c2ad1
+    fail "different values for TLS variable"
4c2ad1
+}