Check error code of fork(2).

Index: conformance/interfaces/sigaction/25-11.c
--- conformance/interfaces/sigaction/25-11.c.orig
+++ conformance/interfaces/sigaction/25-11.c
@@ -59,7 +59,13 @@ void handler(int signo)
 
 int main()
 {
-	if (fork() == 0) {
+	pid_t pid;
+
+	pid = fork();
+	if (pid == -1) {
+		perror("fork");
+		return PTS_UNRESOLVED;
+	} else if (pid == 0) {
 		/* child */
 
 		struct sigaction act;
