Revised the compression parameter in the test suite helper.
This commit is contained in:
parent
6f96e0039e
commit
a6eb566703
@ -344,7 +344,7 @@ sub write_file($$) {
|
||||
} else {
|
||||
my ($PH, $CMD);
|
||||
$CMD = where_is "gzip";
|
||||
$CMD = "\"$CMD\" -c9f > \"$file\"";
|
||||
$CMD = "\"$CMD\" -cf > \"$file\"";
|
||||
open $PH, "| $CMD" or die this_file . ": $CMD: $!";
|
||||
print $PH $content or die this_file . ": $CMD: $!";
|
||||
close $PH or die this_file . ": $CMD: $!";
|
||||
@ -367,7 +367,7 @@ sub write_file($$) {
|
||||
} else {
|
||||
my ($PH, $CMD);
|
||||
$CMD = where_is "bzip2";
|
||||
$CMD = "\"$CMD\" -9f > \"$file\"";
|
||||
$CMD = "\"$CMD\" -cf > \"$file\"";
|
||||
open $PH, "| $CMD" or die this_file . ": $CMD: $!";
|
||||
print $PH $content or die this_file . ": $CMD: $!";
|
||||
close $PH or die this_file . ": $CMD: $!";
|
||||
@ -390,7 +390,7 @@ sub write_file($$) {
|
||||
} else {
|
||||
my ($PH, $CMD);
|
||||
$CMD = where_is "xz";
|
||||
$CMD = "\"$CMD\" -9f > \"$file\"";
|
||||
$CMD = "\"$CMD\" -cf > \"$file\"";
|
||||
open $PH, "| $CMD" or die this_file . ": $CMD: $!";
|
||||
print $PH $content or die this_file . ": $CMD: $!";
|
||||
close $PH or die this_file . ": $CMD: $!";
|
||||
|
Loading…
Reference in New Issue
Block a user