Skip to content

Commit

Permalink
test: quieter tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mle86 committed Jan 18, 2020
1 parent a116176 commit 8499aca
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion test/08-test-reenter.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ cd_tmpdir
mkdir t/
cd t/
prepare_standard_archive
find -type f -print0 | xargs -0 tar -vcf ../$ARCHIVE
find -type f -print0 | xargs -0 tar -cf ../$ARCHIVE
cd ../
rm -rf t/

Expand Down
4 changes: 2 additions & 2 deletions test/15-test-7zip.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ARCHIVE='test.7z'

cd_tmpdir
prepare_standard_archive
7zr a -bd $ARCHIVE $STDFILES
7zr a -bd $ARCHIVE $STDFILES >/dev/null
delete_standard_archive_files
rm -fd $RMSTDFILES

Expand All @@ -16,7 +16,7 @@ SH

assertCmd "$WALK -y $ARCHIVE"

7zr x $ARCHIVE
7zr x $ARCHIVE >/dev/null
verify_modified_standard_archive

success
Expand Down
4 changes: 2 additions & 2 deletions test/15-test-cpio.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ARCHIVE='test.cpio'

cd_tmpdir
prepare_standard_archive
find $STDFILES -print0 | cpio -0 -o -B -F $ARCHIVE
find $STDFILES -print0 | cpio -0 -o --quiet -B -F $ARCHIVE
delete_standard_archive_files

prepare_subshell <<SH
Expand All @@ -15,7 +15,7 @@ SH

assertCmd "$WALK -y $ARCHIVE"

cpio -i --no-absolute-filenames -B -F $ARCHIVE
cpio -i --no-absolute-filenames --quiet -B -F $ARCHIVE
verify_modified_standard_archive

success
Expand Down
4 changes: 2 additions & 2 deletions test/15-test-rar.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ARCHIVE='test.zip'

cd_tmpdir
prepare_standard_archive
rar a -r $ARCHIVE $STDFILES
rar a -r $ARCHIVE $STDFILES >/dev/null
delete_standard_archive_files

prepare_subshell <<SH
Expand All @@ -15,7 +15,7 @@ SH

assertCmd "$WALK -y $ARCHIVE"

rar x $ARCHIVE
rar x $ARCHIVE >/dev/null
verify_modified_standard_archive

success
Expand Down
4 changes: 2 additions & 2 deletions test/15-test-zip.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ARCHIVE='test.zip'

cd_tmpdir
prepare_standard_archive
zip -9 -r -q $ARCHIVE $STDFILES
zip -9 -r -q $ARCHIVE $STDFILES >/dev/null
delete_standard_archive_files

prepare_subshell <<SH
Expand All @@ -15,7 +15,7 @@ SH

assertCmd "$WALK -y $ARCHIVE"

unzip $ARCHIVE
unzip $ARCHIVE >/dev/null
verify_modified_standard_archive

success
Expand Down

0 comments on commit 8499aca

Please sign in to comment.