diff options
Diffstat (limited to 't/synthesis.t')
-rw-r--r-- | t/synthesis.t | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/t/synthesis.t b/t/synthesis.t index a772fa0..8246b36 100644 --- a/t/synthesis.t +++ b/t/synthesis.t @@ -16,9 +16,11 @@ my $s = <<'EOF'; @obsoletes@libc-debug@libc-headers@libc-devel@linuxthreads-devel@glibc-debug @info@glibc-devel-2.2.4-25mdk.i586@6@45692097@Development/C EOF + open my $f, "| gzip -9 >$file1"; print $f $s; close $f; + open $f, "| xz -9 >$file2"; print $f $s; $s =~ s/-devel//g; |