1
0
Fork 0
util-linux/tests/ts/libmount/tabdiff
Daniel Baumann c36e531662
Adding upstream version 2.41.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 11:26:35 +02:00

31 lines
802 B
Bash
Executable file

#!/bin/bash
# Copyright (C) 2011 Karel Zak <kzak@redhat.com>
TS_TOPDIR="${0%/*}/../.."
TS_DESC="table diffs"
. "$TS_TOPDIR"/functions.sh
ts_init "$*"
TESTPROG="$TS_HELPER_LIBMOUNT_TABDIFF"
[ -x $TESTPROG ] || ts_skip "test not compiled"
ts_init_subtest "mount"
ts_run $TESTPROG --diff $TS_SELF/files/mountinfo_u $TS_SELF/files/mountinfo &> $TS_OUTPUT
ts_finalize_subtest
ts_init_subtest "umount"
ts_run $TESTPROG --diff $TS_SELF/files/mountinfo $TS_SELF/files/mountinfo_u &> $TS_OUTPUT
ts_finalize_subtest
ts_init_subtest "remount"
ts_run $TESTPROG --diff $TS_SELF/files/mountinfo $TS_SELF/files/mountinfo_re &> $TS_OUTPUT
ts_finalize_subtest
ts_init_subtest "move"
ts_run $TESTPROG --diff $TS_SELF/files/mountinfo $TS_SELF/files/mountinfo_mv &> $TS_OUTPUT
ts_finalize_subtest
ts_finalize