Fix #if conditional added in r319008

I committed an earlier version of the file by accident

This is a no-op on ^/head and ^/stable/11.

MFC after:	now
Sponsored by:	Dell EMC Isilon
This commit is contained in:
Enji Cooper 2017-05-27 23:23:22 +00:00
parent fbf8ca6df8
commit 9f825b1b1d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=319010

View file

@ -56,6 +56,8 @@ ATF_TC_BODY(kvm_geterr_negative_test_NULL, tc)
ATF_REQUIRE(!errbuf_has_error(kvm_geterr(NULL)));
}
/* 1100090 was where kvm_open2(3) was introduced. */
#if __FreeBSD_version >= 1100091
ATF_TC(kvm_geterr_positive_test_error);
ATF_TC_HEAD(kvm_geterr_positive_test_error, tc)
{
@ -65,8 +67,6 @@ ATF_TC_HEAD(kvm_geterr_positive_test_error, tc)
atf_tc_set_md_var(tc, "require.user", "root");
}
/* 1100090 was where kvm_open2(3) was introduced. */
#if __FreeBSD_version >= 1100091
ATF_TC_BODY(kvm_geterr_positive_test_error, tc)
{
kvm_t *kd;