fdgrowtable tests: Address a set-but-not-used warning

MFC after:	1 week
This commit is contained in:
Mark Johnston 2023-03-30 13:53:48 -04:00
parent 5ea1e35d7d
commit 889b5662ce

View File

@ -233,6 +233,7 @@ ATF_TC_BODY(oldtables_shared_via_process, tc)
/* get current status of child */
wpid = waitpid(child, &status, WUNTRACED);
ATF_REQUIRE(wpid == child);
/* child should be stopped */
ATF_REQUIRE(WIFSTOPPED(status));
@ -254,6 +255,7 @@ ATF_TC_BODY(oldtables_shared_via_process, tc)
/* child should have exited */
wpid = waitpid(child, &status, 0);
ATF_REQUIRE(wpid == child);
ATF_REQUIRE(WIFEXITED(status));
ATF_REQUIRE(WEXITSTATUS(status) == 127);
}