[prev in list] [next in list] [prev in thread] [next in thread] 

List:       strace
Subject:    Re: [PATCH v2] tests: add signal_receive.test
From:       "Dmitry V. Levin" <ldv () altlinux ! org>
Date:       2016-05-30 17:06:41
Message-ID: 20160530170641.GA5684 () altlinux ! org
[Download RAW message or body]

[Attachment #2 (multipart/signed)]


On Mon, May 30, 2016 at 03:57:51PM +0800, Fei Jie wrote:
> * tests/signal_receive.c: New file.
> * tests/signal_receive.test: New test.
> * tests/.gitignore: Add signal_receive.
> * tests/Makefile.am (check_PROGRAMS): Likewise.
> (MISC_TESTS): Add signal_receive.test.
> ---
> tests/.gitignore          |  1 +
> tests/Makefile.am         |  2 ++
> tests/signal_receive.c    | 89 +++++++++++++++++++++++++++++++++++++++++++++++
> tests/signal_receive.test |  8 +++++
> 4 files changed, 100 insertions(+)
> create mode 100644 tests/signal_receive.c
> create mode 100755 tests/signal_receive.test
> 
> diff --git a/tests/.gitignore b/tests/.gitignore
> index 8f4d6f0..f5c1af0 100644
> --- a/tests/.gitignore
> +++ b/tests/.gitignore
> @@ -227,6 +227,7 @@ setuid32
> shmxt
> sigaction
> sigaltstack
> +signal_receive
> signalfd
> sigreturn
> sleep
> diff --git a/tests/Makefile.am b/tests/Makefile.am
> index 9eba306..aabcc3c 100644
> --- a/tests/Makefile.am
> +++ b/tests/Makefile.am
> @@ -279,6 +279,7 @@ check_PROGRAMS = \
> 	setuid32 \
> 	shmxt \
> 	sigaction \
> +	signal_receive \
> 	sigaltstack \
> 	signalfd \
> 	sigreturn \
> @@ -643,6 +644,7 @@ MISC_TESTS = \
> 	qual_syscall.test \
> 	redirect.test \
> 	restart_syscall.test \
> +	signal_receive.test \
> 	strace-S.test \
> 	strace-T.test \
> 	strace-V.test \
> diff --git a/tests/signal_receive.c b/tests/signal_receive.c
> new file mode 100644
> index 0000000..5a8a154
> --- /dev/null
> +++ b/tests/signal_receive.c
> @@ -0,0 +1,89 @@
> +#include "tests.h"
> +#include <assert.h>
> +#include <signal.h>
> +#include <string.h>
> +#include <stdio.h>
> +#include <unistd.h>
> +
> +#if defined ALPHA
> +const char *const signalent[] =
> +{"SIGHUP", "SIGINT", "SIGQUIT", "SIGILL", "SIGTRAP", "SIGABRT", "SIGEMT",
> +"SIGFPE", "SIGKILL", "SIGBUS", "SIGSEGV", "SIGSYS", "SIGPIPE", "SIGALRM",
> +"SIGTERM", "SIGURG", "SIGSTOP", "SIGTSTP", "SIGCONT", "SIGCHLD", "SIGTTIN",
> +"SIGTTOU", "SIGIO", "SIGXCPU", "SIGXFSZ", "SIGVTALRM", "SIGPROF", "SIGWINCH",
> +"SIGINFO", "SIGUSR1", "SIGUSR2"
> +};
> +#elif defined HPPA
> +const char *const signalent[] =
> +{"SIGHUP", "SIGINT", "SIGQUIT", "SIGILL", "SIGTRAP", "SIGABRT", "SIGSTKFLT",
> +"SIGFPE", "SIGKILL", "SIGBUS", "SIGSEGV", "SIGXCPU", "SIGPIPE", "SIGALRM",
> +"SIGTERM", "SIGUSR1", "SIGUSR2", "SIGCHLD", "SIGPWR", "SIGVTALRM", "SIGPROF",
> +"SIGIO", "SIGWINCH", "SIGSTOP", "SIGTSTP", "SIGCONT", "SIGTTIN", "SIGTTOU",
> +"SIGURG", "SIGXFSZ", "SIGSYS"
> +};
> +#elif defined MIPS
> +const char *const signalent[] =
> +{"SIGHUP", "SIGINT", "SIGQUIT", "SIGILL", "SIGTRAP", "SIGIOT", "SIGEMT",
> +"SIGFPE", "SIGKILL", "SIGBUS", "SIGSEGV", "SIGSYS", "SIGPIPE", "SIGALRM",
> +"SIGTERM", "SIGUSR1", "SIGUSR2", "SIGCHLD", "SIGPWR", "SIGWINCH", "SIGURG",
> +"SIGIO", "SIGSTOP", "SIGTSTP", "SIGCONT", "SIGTTIN", "SIGTTOU", "SIGVTALRM",
> +"SIGPROF", "SIGXCPU", "SIGXFSZ"
> +};
> +#elif defined SPARC || defined SPARC64
> +const char *const signalent[] =
> +{"SIGHUP", "SIGINT", "SIGQUIT", "SIGILL", "SIGTRAP", "SIGABRT", "SIGEMT",
> +"SIGFPE", "SIGKILL", "SIGBUS", "SIGSEGV", "SIGSYS", "SIGPIPE", "SIGALRM",
> +"SIGTERM", "SIGURG", "SIGSTOP", "SIGTSTP", "SIGCONT", "SIGCHLD", "SIGTTIN",
> +"SIGTTOU", "SIGIO", "SIGXCPU", "SIGXFSZ", "SIGVTALRM", "SIGPROF", "SIGWINCH",
> +"SIGLOST", "SIGUSR1", "SIGUSR2"
> +};
> +#else
> +const char *const signalent[] =
> +{"SIGHUP", "SIGINT", "SIGQUIT", "SIGILL", "SIGTRAP", "SIGABRT", "SIGBUS",
> +"SIGFPE", "SIGKILL", "SIGUSR1", "SIGSEGV", "SIGUSR2", "SIGPIPE", "SIGALRM",
> +"SIGTERM", "SIGSTKFLT", "SIGCHLD", "SIGCONT", "SIGSTOP", "SIGTSTP", "SIGTTIN",
> +"SIGTTOU", "SIGURG", "SIGXCPU", "SIGXFSZ", "SIGVTALRM", "SIGPROF", "SIGWINCH",
> +"SIGIO", "SIGPWR", "SIGSYS"
> +};
> +#endif

Could you write this without arch specific ifdefs at all?
See e.g. tests/errno2name.c.

Some constants are not common, they need ifdefs:

$ sed -n 's/^[[:space:]]*"\(SIG[^"]\+\)".*/\1/p' linux/{*/,}signalent*.h |sort |uniq \
-c |awk '$1<5{print $2}' SIGABRT
SIGEMT
SIGINFO
SIGIOT
SIGLOST
SIGPWR
SIGSTKFLT


-- 
ldv


[Attachment #5 (application/pgp-signature)]

------------------------------------------------------------------------------
What NetFlow Analyzer can do for you? Monitors network bandwidth and traffic
patterns at an interface-level. Reveals which users, apps, and protocols are 
consuming the most bandwidth. Provides multi-vendor support for NetFlow, 
J-Flow, sFlow and other flows. Make informed decisions using capacity 
planning reports. https://ad.doubleclick.net/ddm/clk/305295220;132659582;e

_______________________________________________
Strace-devel mailing list
Strace-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/strace-devel


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic