Abort the create_socket test if socket creation fails.

MFC after:	1 week
Reported by:	Coverity
CID:		1232756
This commit is contained in:
Alan Somers 2014-09-10 14:57:26 +00:00
parent 9196891fc9
commit 6addc01e8f

View File

@ -397,7 +397,7 @@ ATF_TC_BODY(create_socket, tc)
int s;
s = socket(PF_LOCAL, SOCK_SEQPACKET, 0);
ATF_CHECK(s >= 0);
ATF_REQUIRE(s >= 0);
close(s);
}