]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
tests: suppress warning for old sync(1)
authorroot <root@adsiz>
Tue, 23 Jan 2018 15:59:26 +0000 (16:59 +0100)
committerKarel Zak <kzak@redhat.com>
Wed, 24 Jan 2018 11:53:35 +0000 (12:53 +0100)
Old sync(1) prints a warning which looks ugly among our
test output: "sync: ignoring all arguments"

Seen on travis, Ubuntu <= 14.04 (Trusty).

Signed-off-by: Ruediger Meier <ruediger.meier@ga-group.nl>
tests/functions.sh

index ef11a893e9edb554bf146273dbcda9d9f6be19fd..d1c97e0b6faecec4ca896da93b5ddc333a5f09da 100644 (file)
@@ -635,7 +635,7 @@ function ts_fstab_open {
 
 function ts_fstab_close {
        echo "# -->" >> /etc/fstab
-       sync /etc/fstab
+       sync /etc/fstab 2>/dev/null
 }
 
 function ts_fstab_addline {
@@ -669,7 +669,7 @@ function ts_fstab_clean {
 s/# <!-- util-linux.*-->//;
 /^$/d" /etc/fstab
 
-       sync /etc/fstab
+       sync /etc/fstab 2>/dev/null
        ts_unlock "fstab"
 }