From: Eric Biggers <ebiggers@xxxxxxxxxx> Commit ebbfbefce909 ("test-appliance: add support for xfstests to use EXT_MKFS_OPTIONS") changed the test appliances to set both MKFS_OPTIONS and EXT_MKFS_OPTIONS when starting 'check'. However, MKFS_OPTIONS was not exported into the environment, so it was not actually being recognized. Fix this by exporting it. Signed-off-by: Eric Biggers <ebiggers@xxxxxxxxxx> --- kvm-xfstests/test-appliance/files/root/fs/ext4/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kvm-xfstests/test-appliance/files/root/fs/ext4/config b/kvm-xfstests/test-appliance/files/root/fs/ext4/config index 0dfedf6..cbfbeec 100644 --- a/kvm-xfstests/test-appliance/files/root/fs/ext4/config +++ b/kvm-xfstests/test-appliance/files/root/fs/ext4/config @@ -28,7 +28,7 @@ function format_filesystem() function setup_mount_opts() { - MKFS_OPTIONS="$EXT_MKFS_OPTIONS" + export MKFS_OPTIONS="$EXT_MKFS_OPTIONS" if test -n "$EXT_MOUNT_OPTIONS" ; then EXT_MOUNT_OPTIONS="-o block_validity,$EXT_MOUNT_OPTIONS" else -- 2.11.0.483.g087da7b7c-goog -- 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