1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
#!/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
|