From 91efed6aa599e40be9858e57ae0af03c15a7280b Mon Sep 17 00:00:00 2001 From: hunt Date: Tue, 9 Oct 2007 17:58:44 +0000 Subject: 2007-10-09 Martin Hunt * rt_signal.c: Fix expected results for IA64. --- testsuite/systemtap.syscall/rt_signal.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'testsuite/systemtap.syscall/rt_signal.c') diff --git a/testsuite/systemtap.syscall/rt_signal.c b/testsuite/systemtap.syscall/rt_signal.c index 1029a5c0..f25633b7 100644 --- a/testsuite/systemtap.syscall/rt_signal.c +++ b/testsuite/systemtap.syscall/rt_signal.c @@ -39,7 +39,12 @@ int main() sa.sa_handler = sig_act_handler; sigaction(SIGUSR1, &sa, NULL); + +#ifdef __ia64__ + // rt_sigaction (SIGUSR1, {XXXX, [^,]+, \[SIGALRM\]}, 0x[0]+, 8) = 0 +#else // rt_sigaction (SIGUSR1, {XXXX, [^,]+, XXXX, \[SIGALRM\]}, 0x[0]+, 8) = 0 +#endif return 0; } -- cgit