Show
Ignore:
Timestamp:
03/05/08 17:05:22 (9 months ago)
Author:
joshr
Message:

actually show the command we're running when env var TEST_VERBOSE is set,
not the output of the command.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Swishetest/trunk/BuildIndex.pm

    r2039 r2043  
    1414    my $cmd = "swish-e -c $config -i '$input' -f '$index' -v 1 $extra_options"; 
    1515    my $output = `$cmd`; 
    16     print STDERR "$0: Running '$output'\n" if $ENV{TEST_VERBOSE}; 
     16    print STDERR "$0: Running '$cmd'\n" if $ENV{TEST_VERBOSE}; 
    1717        # -v 1 is important, we use it to test the indexer  
    1818    die "$0: Didn't get any output from $cmd\n" unless $output;