Blame SOURCES/gdb-6.3-bz202689-exec-from-pthread-test.patch

4a80f0
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
4a80f0
From: Jan Kratochvil <jan.kratochvil@redhat.com>
4a80f0
Date: Fri, 27 Oct 2017 21:07:50 +0200
4a80f0
Subject: gdb-6.3-bz202689-exec-from-pthread-test.patch
4a80f0
4a80f0
;; Testcase for exec() from threaded program (BZ 202689).
4a80f0
;;=fedoratest
4a80f0
4a80f0
2007-01-17  Jan Kratochvil <jan.kratochvil@redhat.com>
4a80f0
4a80f0
	* gdb.threads/threaded-exec.exp, gdb.threads/threaded-exec.c: New files.
4a80f0
4a80f0
diff --git a/gdb/testsuite/gdb.threads/threaded-exec.c b/gdb/testsuite/gdb.threads/threaded-exec.c
4a80f0
new file mode 100644
4a80f0
--- /dev/null
4a80f0
+++ b/gdb/testsuite/gdb.threads/threaded-exec.c
4a80f0
@@ -0,0 +1,46 @@
4a80f0
+/* This testcase is part of GDB, the GNU debugger.
4a80f0
+
4a80f0
+   Copyright 2007 Free Software Foundation, Inc.
4a80f0
+
4a80f0
+   This program is free software; you can redistribute it and/or modify
4a80f0
+   it under the terms of the GNU General Public License as published by
4a80f0
+   the Free Software Foundation; either version 2 of the License, or
4a80f0
+   (at your option) any later version.
4a80f0
+
4a80f0
+   This program is distributed in the hope that it will be useful,
4a80f0
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
4a80f0
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4a80f0
+   GNU General Public License for more details.
4a80f0
+
4a80f0
+   You should have received a copy of the GNU General Public License
4a80f0
+   along with this program; if not, write to the Free Software
4a80f0
+   Foundation, Inc., 59 Temple Place - Suite 330,
4a80f0
+   Boston, MA 02111-1307, USA.  */
4a80f0
+
4a80f0
+#include <stddef.h>
4a80f0
+#include <pthread.h>
4a80f0
+#include <assert.h>
4a80f0
+#include <stdlib.h>
4a80f0
+#include <unistd.h>
4a80f0
+
4a80f0
+
4a80f0
+static void *
4a80f0
+threader (void *arg)
4a80f0
+{
4a80f0
+	return NULL;
4a80f0
+}
4a80f0
+
4a80f0
+int
4a80f0
+main (void)
4a80f0
+{
4a80f0
+	pthread_t t1;
4a80f0
+	int i;
4a80f0
+
4a80f0
+	i = pthread_create (&t1, NULL, threader, (void *) NULL);
4a80f0
+	assert (i == 0);
4a80f0
+	i = pthread_join (t1, NULL);
4a80f0
+	assert (i == 0);
4a80f0
+
4a80f0
+	execl ("/bin/true", "/bin/true", NULL);
4a80f0
+	abort ();
4a80f0
+}
4a80f0
diff --git a/gdb/testsuite/gdb.threads/threaded-exec.exp b/gdb/testsuite/gdb.threads/threaded-exec.exp
4a80f0
new file mode 100644
4a80f0
--- /dev/null
4a80f0
+++ b/gdb/testsuite/gdb.threads/threaded-exec.exp
4a80f0
@@ -0,0 +1,41 @@
4a80f0
+# threaded-exec.exp -- Check reset of the tracked threads on exec*(2)
4a80f0
+# Copyright (C) 2007 Free Software Foundation, Inc.
4a80f0
+
4a80f0
+# This program is free software; you can redistribute it and/or modify
4a80f0
+# it under the terms of the GNU General Public License as published by
4a80f0
+# the Free Software Foundation; either version 2 of the License, or
4a80f0
+# (at your option) any later version.
4a80f0
+#
4a80f0
+# This program is distributed in the hope that it will be useful,
4a80f0
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
4a80f0
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4a80f0
+# GNU General Public License for more details.
4a80f0
+#
4a80f0
+# You should have received a copy of the GNU General Public License
4a80f0
+# along with this program; if not, write to the Free Software
4a80f0
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
4a80f0
+
4a80f0
+# Please email any bugs, comments, and/or additions to this file to:
4a80f0
+# bug-gdb@prep.ai.mit.edu
4a80f0
+
4a80f0
+set testfile threaded-exec
4a80f0
+set srcfile ${testfile}.c
4a80f0
+set binfile [standard_output_file ${testfile}]
4a80f0
+
4a80f0
+if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable []] != "" } {
4a80f0
+    return -1
4a80f0
+}
4a80f0
+
4a80f0
+gdb_exit
4a80f0
+gdb_start
4a80f0
+gdb_reinitialize_dir $srcdir/$subdir
4a80f0
+
4a80f0
+gdb_load ${binfile}
4a80f0
+
4a80f0
+gdb_run_cmd
4a80f0
+
4a80f0
+gdb_test_multiple {} "Program exited" {
4a80f0
+   -re "\r\n\\\[Inferior .* exited normally\\\]\r\n$gdb_prompt $" {
4a80f0
+       pass "Program exited"
4a80f0
+   }
4a80f0
+}