autotest: test_build_options.py: exempt AP_COMPASS_AK8963_ENABLED from check

we recently removed this sensor on CubeOrange, so the test fails
This commit is contained in:
Peter Barker 2024-12-15 19:15:16 +11:00 committed by Peter Barker
parent ee7376afb1
commit 0630b83478
1 changed files with 2 additions and 0 deletions

View File

@ -268,6 +268,8 @@ class TestBuildOptions(object):
'AP_OPTICALFLOW_ONBOARD_ENABLED', # only instantiated on Linux
'HAL_WITH_FRSKY_TELEM_BIDIRECTIONAL', # entirely elided if no user
'AP_PLANE_BLACKBOX_LOGGING', # entirely elided if no user
'AP_COMPASS_AK8963_ENABLED', # probed on a board-by-board basis, not on CubeOrange for example
'AP_COMPASS_LSM303D_ENABLED', # probed on a board-by-board basis, not on CubeOrange for example
])
if target.lower() != "copter":
feature_define_whitelist.add('MODE_ZIGZAG_ENABLED')