From 6ffdfda8460b1a336165a18b08f0f5946af9cd11 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Tue, 20 Mar 2018 13:34:31 +0100 Subject: [PATCH] tests: add /proc/swaps libmount parser test Signed-off-by: Karel Zak --- tests/expected/libmount/tabfiles-parse-swaps | 22 ++++++++++++++++++++ tests/ts/libmount/files/swaps | 4 ++++ tests/ts/libmount/tabfiles | 5 +++++ 3 files changed, 31 insertions(+) create mode 100644 tests/expected/libmount/tabfiles-parse-swaps create mode 100644 tests/ts/libmount/files/swaps 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 -- 2.47.2