public inbox for libc-hacker@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] signal/tst-raise.c test
@ 2003-12-29 15:47 Jakub Jelinek
  2003-12-29 17:49 ` Ulrich Drepper
  0 siblings, 1 reply; 2+ messages in thread
From: Jakub Jelinek @ 2003-12-29 15:47 UTC (permalink / raw)
  To: Ulrich Drepper; +Cc: Glibc hackers

Hi!

The tst-raise* test was failing when not linked against -lpthread.
It doesn't hurt to check it with -lpthread too though.

2003-12-29  Jakub Jelinek  <jakub@redhat.com>

	* signal/Makefile (tests): Add tst-raise.
	* signa/tst-raise.c: New test.
nptl/
	* tst-raise1.c: Include stdio.h.

--- libc/nptl/tst-raise1.c.jj	2003-12-27 08:37:49.000000000 +0100
+++ libc/nptl/tst-raise1.c	2003-12-29 15:30:34.000000000 +0100
@@ -1,7 +1,27 @@
+/* Copyright (C) 2003 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+   Contributed by Jakub Jelinek <jakub@redhat.com>, 2003.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library 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
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
+
 #include <errno.h>
 #include <error.h>
 #include <signal.h>
 #include <stdlib.h>
+#include <stdio.h>
 
 volatile int count;
 
--- libc/signal/Makefile.jj	2003-06-15 23:09:48.000000000 +0200
+++ libc/signal/Makefile	2003-12-29 15:25:58.000000000 +0100
@@ -38,7 +38,7 @@ routines	:= signal raise killpg \
 		   allocrtsig sigtimedwait sigwaitinfo sigqueue \
 		   sighold sigrelse sigignore sigset
 
-tests		:= tst-signal tst-sigset tst-sigsimple
+tests		:= tst-signal tst-sigset tst-sigsimple tst-raise
 
 distribute	:= sigsetops.h testrtsig.h sigset-cvt-mask.h
 
--- libc/signal/tst-raise.c.jj	2003-12-29 15:24:17.000000000 +0100
+++ libc/signal/tst-raise.c	2003-12-29 15:30:57.000000000 +0100
@@ -0,0 +1,62 @@
+/* Copyright (C) 2003 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+   Contributed by Jakub Jelinek <jakub@redhat.com>, 2003.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library 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
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
+
+#include <errno.h>
+#include <error.h>
+#include <signal.h>
+#include <stdlib.h>
+#include <stdio.h>
+
+volatile int count;
+
+void
+sh (int sig)
+{
+  ++count;
+}
+
+int
+main (void)
+{
+  struct sigaction sa;
+  sa.sa_handler = sh;
+  sigemptyset (&sa.sa_mask);
+  sa.sa_flags = 0;
+  if (sigaction (SIGUSR1, &sa, NULL) < 0)
+    {
+      printf ("sigaction failed: %m\n");
+      exit (1);
+    }
+  if (raise (SIGUSR1) < 0)
+    {
+      printf ("first raise failed: %m\n");
+      exit (1);
+    }
+  if (raise (SIGUSR1) < 0)
+    {
+      printf ("second raise failed: %m\n");
+      exit (1);
+    }
+  if (count != 2)
+    {
+      printf ("signal handler not called 2 times\n");
+      exit (1);
+    }
+  exit (0);
+}

	Jakub

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] signal/tst-raise.c test
  2003-12-29 15:47 [PATCH] signal/tst-raise.c test Jakub Jelinek
@ 2003-12-29 17:49 ` Ulrich Drepper
  0 siblings, 0 replies; 2+ messages in thread
From: Ulrich Drepper @ 2003-12-29 17:49 UTC (permalink / raw)
  To: Jakub Jelinek; +Cc: Glibc hackers

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Jakub Jelinek wrote:

> 	* signal/Makefile (tests): Add tst-raise.
> 	* signa/tst-raise.c: New test.
> nptl/
> 	* tst-raise1.c: Include stdio.h.

Applied.

- -- 
➧ Ulrich Drepper ➧ Red Hat, Inc. ➧ 444 Castro St ➧ Mountain View, CA ❖
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.3 (GNU/Linux)

iD8DBQE/8Gi02ijCOnn/RHQRAr4hAKCoOqn4ulLvgnzcpDvaM80iIn1TIwCeJMnh
Ggsv1epBMuovpIiEUyBkjjA=
=1uNV
-----END PGP SIGNATURE-----

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2003-12-29 17:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-12-29 15:47 [PATCH] signal/tst-raise.c test Jakub Jelinek
2003-12-29 17:49 ` Ulrich Drepper

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).