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

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