Adding a clean target to the tests make file to fix a warning when running make clean.

Corrected a typo in the LisaL tests.
This commit is contained in:
Bernard Davison
2012-03-21 15:21:42 +11:00
parent d743651832
commit 763bd7234d
3 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ unlike($upload_output, '/\bError\b/i', "The upload output does not contain the w
# Start the server process
my $server_command = "$ENV{'PAPARAZZI_HOME'}/sw/ground_segment/tmtc/server";
my @server_options = qw(-n)
my @server_options = qw(-n);
my $server = Proc::Background->new($server_command, @server_options);
sleep 2; # The service should die in this time if there's an error
ok($server->alive(), "The server process started successfully");
+1 -1
View File
@@ -30,7 +30,7 @@ unlike($upload_output, '/\bError\b/i', "The upload output does not contain the w
# Start the server process
my $server_command = "$ENV{'PAPARAZZI_HOME'}/sw/ground_segment/tmtc/server";
my @server_options = qw(-n)
my @server_options = qw(-n);
my $server = Proc::Background->new($server_command, @server_options);
sleep 2; # The service should die in this time if there's an error
ok($server->alive(), "The server process started successfully");