aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-06-13 12:49:46 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-06-13 12:49:46 +0000
commit26017b1b048900fa994029d492987fbef2eb3b43 (patch)
tree4181e3ce865b221df93d06633b7d976e587a142b
parent1fd46215b2567bfb2d659859796920a0b0637550 (diff)
downloadbusybox-w32-26017b1b048900fa994029d492987fbef2eb3b43.tar.gz
busybox-w32-26017b1b048900fa994029d492987fbef2eb3b43.tar.bz2
busybox-w32-26017b1b048900fa994029d492987fbef2eb3b43.zip
minix.h: add very simple test script
-rw-r--r--util-linux/minix.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/util-linux/minix.h b/util-linux/minix.h
index 476f32735..e630fe033 100644
--- a/util-linux/minix.h
+++ b/util-linux/minix.h
@@ -74,3 +74,25 @@ enum {
74 MINIX2_INODES_PER_BLOCK = BLOCK_SIZE / sizeof(struct minix2_inode), 74 MINIX2_INODES_PER_BLOCK = BLOCK_SIZE / sizeof(struct minix2_inode),
75}; 75};
76 76
77/*
78Basic test script for regressions in mkfs/fsck.
79Copies current dir into image (typically bbox build tree).
80
81#!/bin/sh
82tmpdir=/tmp/minixtest-$$
83tmpimg=/tmp/minix-img-$$
84
85mkdir $tmpdir
86dd if=/dev/zero of=$tmpimg bs=1M count=20 || exit
87./busybox mkfs.minix $tmpimg || exit
88mount -o loop $tmpimg $tmpdir || exit
89cp -a "$PWD" $tmpdir
90umount $tmpdir || exit
91./busybox fsck.minix -vfm $tmpimg || exit
92echo "Continue?"
93read junk
94./busybox fsck.minix -vfml $tmpimg || exit
95rmdir $tmpdir
96rm $tmpimg
97
98*/