There is no signal SIGTLKFLT on mips architecture. Remove SIGTLKFLT from signal set when test on mips arch.
Signed-off-by: Kang Kai <[email protected]> --- .../conformance/interfaces/sigaction/16-1.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/testcases/open_posix_testsuite/conformance/interfaces/sigaction/16-1.c b/testcases/open_posix_testsuite/conformance/interfaces/sigaction/16-1.c index 1eda711..213bda0 100644 --- a/testcases/open_posix_testsuite/conformance/interfaces/sigaction/16-1.c +++ b/testcases/open_posix_testsuite/conformance/interfaces/sigaction/16-1.c @@ -67,7 +67,9 @@ static struct sig_info sigs[] = { {SIGPIPE, "SIGPIPE", 0}, {SIGALRM, "SIGALRM", 0}, {SIGTERM, "SIGTERM", 0}, +#ifndef __mips__ {SIGSTKFLT, "SIGSTKFLT", 0}, +#endif {SIGCHLD, "SIGCHLD", 0}, {SIGCONT, "SIGCONT", 0}, {SIGTSTP, "SIGTSTP", 0}, -- 1.7.5.4 ------------------------------------------------------------------------------ Keep Your Developer Skills Current with LearnDevNow! The most comprehensive online learning library for Microsoft developers is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, Metro Style Apps, more. Free future releases when you subscribe now! http://p.sf.net/sfu/learndevnow-d2d _______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
