We need a source of "filler" that can fill up a 50M file system. Unfortunately, on some systems /lib/modules might not exist at all. In that case, use /usr instead. Signed-off-by: Theodore Ts'o <tytso@xxxxxxx> --- tests/generic/077 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/generic/077 b/tests/generic/077 index 172ce6e..0d6aec7 100755 --- a/tests/generic/077 +++ b/tests/generic/077 @@ -32,6 +32,9 @@ status=1 # Something w/ enough data to fill 50M of fs... filler=/lib/modules/ +# fall back in case /lib/modules doesn't exist +[ -d $filler ] || filler=/usr + _cleanup() { cd / -- 2.0.0 -- To unsubscribe from this list: send the line "unsubscribe fstests" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html