summaryrefslogtreecommitdiff
path: root/tests/df
diff options
context:
space:
mode:
authorPádraig Brady <P@draigBrady.com>2014-07-02 10:16:04 +0100
committerPádraig Brady <P@draigBrady.com>2014-07-02 19:45:17 +0100
commit39e2a4cff85cd37797c062a6196d4ce465398d00 (patch)
treeaf474c0c12cfdce268c39672fd5dc25ae4fec79d /tests/df
parent04fc32f7e038e92e033c770211749be683c74973 (diff)
downloadcoreutils-39e2a4cff85cd37797c062a6196d4ce465398d00.tar.xz
tests: avoid errors on systems without getmntent
* tests/df/no-mtab-status.sh: Skip if getmntent() not available. * tests/df/skip-duplicates.sh: Likewise. Fixes http://bugs.gnu.org/17863
Diffstat (limited to 'tests/df')
-rwxr-xr-xtests/df/no-mtab-status.sh6
-rwxr-xr-xtests/df/skip-duplicates.sh6
2 files changed, 12 insertions, 0 deletions
diff --git a/tests/df/no-mtab-status.sh b/tests/df/no-mtab-status.sh
index f2fda5e65..9ea2036dd 100755
--- a/tests/df/no-mtab-status.sh
+++ b/tests/df/no-mtab-status.sh
@@ -23,6 +23,12 @@ require_gcc_shared_
df || skip_ "df fails"
+grep '^#define HAVE_MNTENT_H 1' $CONFIG_HEADER > /dev/null \
+ || skip_ "no mntent.h available to confirm the interface"
+
+grep '^#define HAVE_GETMNTENT 1' $CONFIG_HEADER > /dev/null \
+ || skip_ "getmntent is not used on this system"
+
# Simulate "mtab" failure.
cat > k.c <<'EOF' || framework_failure_
#include <stdio.h>
diff --git a/tests/df/skip-duplicates.sh b/tests/df/skip-duplicates.sh
index 9f0f749fe..52b9014a3 100755
--- a/tests/df/skip-duplicates.sh
+++ b/tests/df/skip-duplicates.sh
@@ -28,6 +28,12 @@ df --local || skip_ "df fails"
export CU_NONROOT_FS=$(df --local --output=target 2>&1 | grep /. | head -n1)
test -z "$CU_NONROOT_FS" && unique_entries=1 || unique_entries=2
+grep '^#define HAVE_MNTENT_H 1' $CONFIG_HEADER > /dev/null \
+ || skip_ "no mntent.h available to confirm the interface"
+
+grep '^#define HAVE_GETMNTENT 1' $CONFIG_HEADER > /dev/null \
+ || skip_ "getmntent is not used on this system"
+
# Simulate an mtab file to test various cases.
cat > k.c <<'EOF' || framework_failure_
#include <stdio.h>