Skip to content

Commit

Permalink
Adding a clean target to the tests make file to fix a warning when ru…
Browse files Browse the repository at this point in the history
…nning make clean.

Corrected a typo in the LisaL tests.
  • Loading branch information
rbdavison committed Mar 21, 2012
1 parent d743651 commit 763bd72
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/LisaL/01_With_b2_v1.2.t
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
2 changes: 1 addition & 1 deletion tests/LisaL/02_With_aspirin_v1.5_and_overo.t
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
3 changes: 3 additions & 0 deletions tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,6 @@ endif
test:
$(Q)$(PERLENV) $(PERL) "-e" "$(RUNTESTS)"

clean:
rm -rf results/*

0 comments on commit 763bd72

Please sign in to comment.