From d7436518320d31b6ff057dbaeceebe905be17661 Mon Sep 17 00:00:00 2001 From: Bernard Davison Date: Wed, 21 Mar 2012 15:03:31 +1100 Subject: [PATCH] Correctly targeting the Microjet when starting the launchsitl process. --- tests/sim/01_Microjet.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/sim/01_Microjet.t b/tests/sim/01_Microjet.t index 84959ebdba..13d04f89c0 100644 --- a/tests/sim/01_Microjet.t +++ b/tests/sim/01_Microjet.t @@ -27,7 +27,7 @@ ok($server->alive(), "The server process started successfully"); # Start the launchsitl process my $launchsitl_command = "$ENV{'PAPARAZZI_HOME'}/sw/simulator/launchsitl"; -my @launchsitl_options = qw(-a -boot -norc); +my @launchsitl_options = qw(-a Microjet -boot -norc); sleep 2; # The service should die in this time if there's an error my $launchsitl = Proc::Background->new($launchsitl_command, @launchsitl_options); ok($launchsitl->alive(), "The launchsitl process started successfully");