summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.syscall/rt_signal.c
diff options
context:
space:
mode:
authorhunt <hunt>2007-10-09 17:58:44 +0000
committerhunt <hunt>2007-10-09 17:58:44 +0000
commit91efed6aa599e40be9858e57ae0af03c15a7280b (patch)
treeda1734abb7934b27cb8efe0ad82c05ff355bed13 /testsuite/systemtap.syscall/rt_signal.c
parent577e7ed19be74db082ba058016fd31b643495ebd (diff)
downloadsystemtap-steved-91efed6aa599e40be9858e57ae0af03c15a7280b.tar.gz
systemtap-steved-91efed6aa599e40be9858e57ae0af03c15a7280b.tar.xz
systemtap-steved-91efed6aa599e40be9858e57ae0af03c15a7280b.zip
2007-10-09 Martin Hunt <hunt@redhat.com>
* rt_signal.c: Fix expected results for IA64.
Diffstat (limited to 'testsuite/systemtap.syscall/rt_signal.c')
-rw-r--r--testsuite/systemtap.syscall/rt_signal.c5
1 files changed, 5 insertions, 0 deletions
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;
}