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

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