mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
e97f5d8012
fixed test_math_double the wrap check needs to be wrap_PI() as otherwise rounding of 2*PI if just over 6.28 will give a large error ensure double tests are double test_vector2
9 lines
184 B
Python
9 lines
184 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
def build(bld):
|
|
bld.ap_find_tests(
|
|
use='ap',
|
|
DOUBLE_PRECISION_SOURCES = ['test_math_double.cpp', 'test_vector3.cpp']
|
|
)
|