mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 02:18:37 +00:00
Remove system-dependent output from test.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2258
This commit is contained in:
parent
fcad29e364
commit
ec45a3d7e7
@ -19,6 +19,12 @@ main (void)
|
||||
int i;
|
||||
int rc;
|
||||
for (i = 1; i <= 65; i++) {
|
||||
// skip signals 32 and 33: some systems say "warning, ignored attempt
|
||||
// to catch 32 because it's used internally by Valgrind", others say
|
||||
// "invalid argument".
|
||||
if (i == 32 || i == 33) {
|
||||
continue;
|
||||
} // different systems
|
||||
sa.sa_flags = 0;
|
||||
sigemptyset( &sa.sa_mask );
|
||||
sa.sa_handler = abend;
|
||||
|
||||
@ -96,16 +96,6 @@ getting signal 30: Success
|
||||
setting signal 31: Success
|
||||
getting signal 31: Success
|
||||
|
||||
setting signal 32: Warning: ignored attempt to set SIGRT32 handler in sigaction();
|
||||
the SIGRT32 signal is used internally by Valgrind
|
||||
Invalid argument
|
||||
getting signal 32: Success
|
||||
|
||||
setting signal 33: Warning: ignored attempt to set SIGRT33 handler in sigaction();
|
||||
the SIGRT33 signal is used internally by Valgrind
|
||||
Invalid argument
|
||||
getting signal 33: Success
|
||||
|
||||
setting signal 34: Success
|
||||
getting signal 34: Success
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user