mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-06-02 20:28:37 +08:00
mavsdk_tests: enable VTOL, fix TEST_CASE name
We can't use commas in the TEST_CASE name. With the comma, the test did not run and displayed: Filters: Takeoff, transition and RTL No test cases matched 'Takeoff' No test cases matched 'transition and RTL' ========================================== No tests ran
This commit is contained in:
@@ -17,11 +17,11 @@ test_matrix = [
|
|||||||
"test_filter": "[multicopter]",
|
"test_filter": "[multicopter]",
|
||||||
"timeout_min": 20,
|
"timeout_min": 20,
|
||||||
},
|
},
|
||||||
#{
|
{
|
||||||
# "model": "standard_vtol",
|
"model": "standard_vtol",
|
||||||
# "test_filter": "[vtol]",
|
"test_filter": "[vtol]",
|
||||||
# "timeout_min": 20,
|
"timeout_min": 20,
|
||||||
#},
|
},
|
||||||
# {
|
# {
|
||||||
# "model": "standard_plane",
|
# "model": "standard_plane",
|
||||||
# "test_filter": "[plane]",
|
# "test_filter": "[plane]",
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
#include "autopilot_tester.h"
|
#include "autopilot_tester.h"
|
||||||
|
|
||||||
|
|
||||||
TEST_CASE("Takeoff, transition and RTL", "[vtol]")
|
TEST_CASE("Takeoff and transition and RTL", "[vtol]")
|
||||||
{
|
{
|
||||||
AutopilotTester tester;
|
AutopilotTester tester;
|
||||||
tester.connect(connection_url);
|
tester.connect(connection_url);
|
||||||
|
|||||||
Reference in New Issue
Block a user