]> Zhao Yanbai Git Server - minix.git/commitdiff
blocktest: make script more newbie-friendly
authorDavid van Moolenbroek <david@minix3.org>
Fri, 7 Sep 2012 14:25:03 +0000 (14:25 +0000)
committerDavid van Moolenbroek <david@minix3.org>
Fri, 7 Sep 2012 14:25:46 +0000 (14:25 +0000)
test/blocktest/support.sh
test/blocktest/test.sh

index 6c8d780db07d87a1fd62d91a15dbef28e2722170..eb3dc431c3ace9fbc12176da36ab32fcfd4c0a61 100644 (file)
@@ -7,9 +7,9 @@ devtopair() {
   if [ ! -z "$label" ]; then echo "label=$label,minor=`stat -f '%Lr' $1`"; fi
 }
 
-# usage: blocktest /dev/cXdY.. "params,for,blocktest"
+# usage: block_test /dev/cXdY.. "params,for,blocktest"
 # runs the blocktest driver on the given device with the given parameters
-blocktest() {
+block_test() {
   if [ ! -x blocktest ]; then echo "compile blocktest first!" >&2; exit 1; fi
   if [ ! -b "$1" ]; then echo "$1 is not a block device" >&2; exit 1; fi
   pair=$(devtopair $1)
index ead417ccb3cfbf04b3b3d72d109dfcee204e7f76..ad550b146e15d14a0ac14b4064f98d4c89b7adbd 100755 (executable)
@@ -5,7 +5,7 @@
 # The following commented-out examples of how to run blocktest for certain
 # driver and device pairs. The syntax of the calls is:
 #
-#   blocktest <device> <parameters>
+#   block_test <device> <parameters>
 #
 # <device> is the path to a device to run blocktest on. This may be a full
 # disk, a partition, or a subpartition. If possible, give blocktest the whole
 
 # AT_WINI ATA TEST (for IDE disk devices)
 
-#blocktest /dev/c0d1 "rw,sector=512,min_read=512,element=2,max=16777216"
+#block_test /dev/c0d1 "rw,sector=512,min_read=512,element=2,max=16777216"
 
 # AT_WINI ATAPI TEST (for IDE CD-ROM devices)
 
-#blocktest /dev/c0d2 "ro,sector=2048,min_read=2,element=2,max=16777216"
+#block_test /dev/c0d2 "ro,sector=2048,min_read=2,element=2,max=16777216"
 
 # AHCI ATA TEST (for SATA disk devices)
 
-#blocktest /dev/c2d0 "rw,sector=512,min_read=2,element=2,max=4194304"
+#block_test /dev/c2d0 "rw,sector=512,min_read=2,element=2,max=4194304"
 
 # AHCI ATAPI TEST (for SATA CD-ROM devices)
 
-#blocktest /dev/c2d1 "ro,sector=2048,min_read=2,element=2,max=4194304"
+#block_test /dev/c2d1 "ro,sector=2048,min_read=2,element=2,max=4194304"