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