From: Karel Zak Date: Tue, 20 Mar 2018 12:34:31 +0000 (+0100) Subject: tests: add /proc/swaps libmount parser test X-Git-Tag: v2.32~19 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6ffdfda8460b1a336165a18b08f0f5946af9cd11;p=thirdparty%2Futil-linux.git tests: add /proc/swaps libmount parser test Signed-off-by: Karel Zak --- diff --git a/tests/expected/libmount/tabfiles-parse-swaps b/tests/expected/libmount/tabfiles-parse-swaps new file mode 100644 index 0000000000..bd781d4e3d --- /dev/null +++ b/tests/expected/libmount/tabfiles-parse-swaps @@ -0,0 +1,22 @@ +------ fs: +source: /dev/dm-2 +target: (null) +fstype: swap +swaptype: partition +size: 8151036 +usedsize: 2283436 +priority: -2 +------ fs: +source: /some/swapfile +target: (null) +fstype: swap +swaptype: file +size: 111 +usedsize: 111 +------ fs: +source: /some/swapfile2 +target: (null) +fstype: swap +swaptype: file +size: 111 +usedsize: 111 diff --git a/tests/ts/libmount/files/swaps b/tests/ts/libmount/files/swaps new file mode 100644 index 0000000000..13ce933cb6 --- /dev/null +++ b/tests/ts/libmount/files/swaps @@ -0,0 +1,4 @@ +Filename Type Size Used Priority +/dev/dm-2 partition 8151036 2283436 -2 +/some/swapfile file 111 111 0 +/some/swapfile2\040(deleted) file 111 111 0 diff --git a/tests/ts/libmount/tabfiles b/tests/ts/libmount/tabfiles index ba424b24da..a45c286060 100755 --- a/tests/ts/libmount/tabfiles +++ b/tests/ts/libmount/tabfiles @@ -37,6 +37,11 @@ ts_run $TESTPROG --parse "$TS_SELF/files/mountinfo" &> $TS_OUTPUT sed -i -e 's/fs: 0x.*/fs:/g' $TS_OUTPUT ts_finalize_subtest +ts_init_subtest "parse-swaps" +ts_run $TESTPROG --parse "$TS_SELF/files/swaps" &> $TS_OUTPUT +sed -i -e 's/fs: 0x.*/fs:/g' $TS_OUTPUT +ts_finalize_subtest + ts_init_subtest "copy" ts_run $TESTPROG --copy-fs "$TS_SELF/files/fstab" &> $TS_OUTPUT sed -i -e 's/fs: 0x.*/fs:/g' $TS_OUTPUT