Add additional __FreeBSD_version guards around the hsearch_r testcases

The reasoning for this is the same as r276046: to ease MFCing the tests
to ^/stable/10 .

This was accidentally missed in r313439

MFC after:	1 week
X-MFC with:	r313439
Sponsored by:	Dell EMC Isilon
This commit is contained in:
Enji Cooper 2017-03-01 03:31:12 +00:00
parent 43b96a4eb5
commit 13081ad7c6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=314450

View File

@ -287,6 +287,7 @@ ATF_TC_BODY(hsearch_r_basic, tc)
}
#endif
#if defined(__FreeBSD__) && 1100027 <= __FreeBSD_version
ATF_TC(hsearch_r_duplicate);
ATF_TC_HEAD(hsearch_r_duplicate, tc)
{
@ -394,6 +395,7 @@ ATF_TC_BODY(hsearch_r_two, tc)
hdestroy_r(&t);
}
#endif
ATF_TP_ADD_TCS(tp)
{