source: MondoRescue/branches/2.2.9/mindi-busybox/testsuite/mkfs.minix.tests@ 2725

Last change on this file since 2725 was 2725, checked in by Bruno Cornec, 13 years ago
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
  • Property svn:executable set to *
File size: 503 bytes
Line 
1#!/bin/sh
2
3# mkfs.minix tests.
4# Copyright 2007 by Denys Vlasenko
5# Licensed under GPLv2, see file LICENSE in this source tree.
6
7. ./testing.sh
8
9# testing "test name" "options" "expected result" "file input" "stdin"
10
11testing "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
22exit $FAILCOUNT
Note: See TracBrowser for help on using the repository browser.