Skip to content

Commit

Permalink
debugging info
Browse files Browse the repository at this point in the history
svn path=/bioperl-run/trunk/; revision=13650
  • Loading branch information
hyphaltip committed Sep 30, 2005
1 parent f923619 commit e6fd78e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/Genewise.t
Expand Up @@ -24,14 +24,14 @@ END {
}

ok(1);
my $verbose = -1;
my $verbose = $ENV{BIOPERLDEBUG} ? 1 : -1;
my @params = ('-verbose' => $verbose,
'silent' => 1,
'quiet' => 1);

my $factory = Bio::Tools::Run::Genewise->new(@params);
my $version = $factory->version;
warn("version is $version\n");
warn("version is $version\n") if $verbose > 0;
ok $factory->isa('Bio::Tools::Run::Genewise');
unless ($factory->executable) {
warn("Genewise program not found. Skipping tests $Test::ntest to $NTESTS.\n");
Expand Down

0 comments on commit e6fd78e

Please sign in to comment.