summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-12-26 22:56:58 +0000
committerLars Wirzenius <liw@liw.fi>2011-12-26 22:56:58 +0000
commitc3f465ff77628c0ef7b2fed5b18209c902c15e79 (patch)
tree25a2bdafb884b158c52ceec8e0a7e4bd0c416b89
parent9631015fea5af019bf90f4a96aa2867ba89d0ac8 (diff)
downloadgenbackupdata-c3f465ff77628c0ef7b2fed5b18209c902c15e79.tar.gz
silence genbackupdata
The progress output does not do any good for the tests.
-rwxr-xr-xtests/create-right-amount.script2
-rwxr-xr-xtests/reproducible-data.script4
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/create-right-amount.script b/tests/create-right-amount.script
index 8ccfaf8..c8b1fc8 100755
--- a/tests/create-right-amount.script
+++ b/tests/create-right-amount.script
@@ -17,7 +17,7 @@
set -e
data="$DATADIR/create-right-amount"
-./genbackupdata --create=12765 "$data"
+./genbackupdata --quiet --create=12765 "$data"
find "$DATADIR" -type f -print0 |
du --files0-from=- -cs --bytes --apparent-size |
tail -n1
diff --git a/tests/reproducible-data.script b/tests/reproducible-data.script
index 679bb7d..6d9136d 100755
--- a/tests/reproducible-data.script
+++ b/tests/reproducible-data.script
@@ -19,6 +19,6 @@ set -e
amount=1m
data1="$DATADIR/reproducible-data-1"
data2="$DATADIR/reproducible-data-2"
-./genbackupdata --create="$amount" "$data1"
-./genbackupdata --create="$amount" "$data2"
+./genbackupdata --quiet --create="$amount" "$data1"
+./genbackupdata --quiet --create="$amount" "$data2"
diff -rq "$data1" "$data2"