mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
13 lines
245 B
Python
13 lines
245 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
def build(bld):
|
|
bld.ap_find_tests(
|
|
use='ap',
|
|
)
|
|
|
|
# location test needs double precision
|
|
def configure(cfg):
|
|
cfg.env.DOUBLE_PRECISION_SOURCES['AP_Common'] = ['tests/test_location.cpp']
|
|
|