diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-12-02 08:55:34 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-12-02 08:55:34 +0000 |
commit | 7ab3699b58176c9affff17ca05c9f4b004cdeb34 (patch) | |
tree | e97a027329aa9afde0194fa3bbafe676c6af7661 /testsuite/mkfs.minix.tests | |
parent | ab801874f852312787c049272c20b14e06ed8195 (diff) | |
download | busybox-w32-7ab3699b58176c9affff17ca05c9f4b004cdeb34.tar.gz busybox-w32-7ab3699b58176c9affff17ca05c9f4b004cdeb34.tar.bz2 busybox-w32-7ab3699b58176c9affff17ca05c9f4b004cdeb34.zip |
mkfs.minix: add testsuite; disable code which makes images variable
Diffstat (limited to 'testsuite/mkfs.minix.tests')
-rwxr-xr-x | testsuite/mkfs.minix.tests | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/testsuite/mkfs.minix.tests b/testsuite/mkfs.minix.tests new file mode 100755 index 000000000..90df9316d --- /dev/null +++ b/testsuite/mkfs.minix.tests | |||
@@ -0,0 +1,22 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | # mkfs.minix tests. | ||
4 | # Copyright 2007 by Denys Vlasenko | ||
5 | # Licensed under GPL v2, see file LICENSE for details. | ||
6 | |||
7 | . testing.sh | ||
8 | |||
9 | # testing "test name" "options" "expected result" "file input" "stdin" | ||
10 | |||
11 | testing "mkfs.minix" \ | ||
12 | "dd if=/dev/zero of=input bs=1k count=1024 2>/dev/null; mkfs.minix input; md5sum <input" \ | ||
13 | "352 inodes\n"\ | ||
14 | "1024 blocks\n"\ | ||
15 | "Firstdatazone=15 (15)\n"\ | ||
16 | "Zonesize=1024\n"\ | ||
17 | "Maxsize=268966912\n"\ | ||
18 | "4f35f7afeba07d56055bed1f29ae20b7 -\n" \ | ||
19 | "" \ | ||
20 | "" | ||
21 | |||
22 | exit $FAILCOUNT | ||