[PATCH] add a test for recently introduced loop-dev-based bug
Soren Hansen
soren at canonical.com
Wed Aug 6 18:15:00 UTC 2008
This also checks for the current behavior when trying to partition
a device that may not be partitioned, like loop devices.
* tests/Makefile.am (TESTS): Add tests/t8000-loop.sh.
* tests/t8000-loop.sh: New file. Test for the above fix.
---
tests/Makefile.am | 3 +-
tests/t8000-loop.sh | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 57 insertions(+), 1 deletions(-)
create mode 100755 tests/t8000-loop.sh
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 1b00cc3..019d1bc 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -15,7 +15,8 @@ TESTS = \
t4200-partprobe.sh \
t5000-tags.sh \
t6000-dm.sh \
- t7000-scripting.sh
+ t7000-scripting.sh \
+ t8000-loop.sh
EXTRA_DIST = \
$(TESTS) test-lib.sh lvm-utils.sh
diff --git a/tests/t8000-loop.sh b/tests/t8000-loop.sh
new file mode 100755
index 0000000..016c715
--- /dev/null
+++ b/tests/t8000-loop.sh
@@ -0,0 +1,55 @@
+#!/bin/sh
+
+# Copyright (C) 2008 Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+test_description='Test usage of loop devices'
+
+privileges_required_=1
+device_mapper_required_=1
+
+: ${srcdir=.}
+. $srcdir/test-lib.sh
+
+cleanup_() {
+ test -n "$d1" && losetup -d "$d1"
+ rm -f "$f1";
+}
+
+emit_expected_diagnostic()
+{
+ printf '%s\n' \
+ 'Error: Error informing the kernel about modifications to partiti' \
+ 'Warning: The kernel was unable to re-read the partition table on'
+}
+
+test_expect_success \
+ "setup: create loop devices" \
+ 'f1=$(pwd)/1 && d1=$(loop_setup_ "$f1")'
+
+test_expect_success \
+ 'run parted -s "$d1" mklabel msdos' \
+ 'parted -s $d1 mklabel msdos > out 2>&1'
+test_expect_success 'check for empty output' '$compare out /dev/null'
+
+test_expect_failure \
+ 'run parted -s "$d1" mkpart primary 1 10' \
+ 'parted -s $d1 mkpart primary 1 10 > out 2>&1'
+test_expect_success 'prepare actual/expected output' \
+ 'emit_expected_diagnostic > exp &&
+ cut -b1-64 out > k && mv k out'
+test_expect_success 'check for expected output' '$compare exp out'
+
+test_done
--
1.6.0.rc2.2.g59bf
More information about the parted-devel
mailing list