diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-13 12:49:46 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-13 12:49:46 +0000 |
commit | 26017b1b048900fa994029d492987fbef2eb3b43 (patch) | |
tree | 4181e3ce865b221df93d06633b7d976e587a142b | |
parent | 1fd46215b2567bfb2d659859796920a0b0637550 (diff) | |
download | busybox-26017b1b048900fa994029d492987fbef2eb3b43.tar.gz |
minix.h: add very simple test script
-rw-r--r-- | util-linux/minix.h | 22 |
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 { MINIX2_INODES_PER_BLOCK = BLOCK_SIZE / sizeof(struct minix2_inode), }; +/* +Basic test script for regressions in mkfs/fsck. +Copies current dir into image (typically bbox build tree). + +#!/bin/sh +tmpdir=/tmp/minixtest-$$ +tmpimg=/tmp/minix-img-$$ + +mkdir $tmpdir +dd if=/dev/zero of=$tmpimg bs=1M count=20 || exit +./busybox mkfs.minix $tmpimg || exit +mount -o loop $tmpimg $tmpdir || exit +cp -a "$PWD" $tmpdir +umount $tmpdir || exit +./busybox fsck.minix -vfm $tmpimg || exit +echo "Continue?" +read junk +./busybox fsck.minix -vfml $tmpimg || exit +rmdir $tmpdir +rm $tmpimg + +*/ |