summaryrefslogtreecommitdiff
path: root/test/test.block
diff options
context:
space:
mode:
authorchris_friesen@sympatico.ca <chris_friesen@sympatico.ca>2003-11-19 02:39:39 -0800
committerGreg KH <gregkh@suse.de>2005-04-26 21:06:25 -0700
commit8e5d5925254ea60ce487ba8660d99c7a50481ea6 (patch)
tree6ecfbcb5d92c5402af4442c2667f36667f9b47b5 /test/test.block
parent17f73597fe88d60da3d105907dc45f753be42912 (diff)
[PATCH] faster test scripts
I've attached a patch against 005 for both the block and tty scripts. I didn't bother running udev backgrounded, since as you say, the new code runs a lot faster.
Diffstat (limited to 'test/test.block')
-rw-r--r--test/test.block5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/test.block b/test/test.block
index 622a66037f..b806a42aac 100644
--- a/test/test.block
+++ b/test/test.block
@@ -16,14 +16,13 @@ export ACTION=$1 # 'add' or 'remove'
for i in ${SYSFSDIR}/block/*; do
# add each drive
- export DEVPATH="/"`echo $i | cut --delimiter='/' --fields=3-`
+ export DEVPATH=${i#${SYSFSDIR}}
$BIN block
# add each partition, on each device
for j in $i/*; do
if [ -f $j/dev ]; then
- export DEVPATH="/"`echo $j | \
- cut --delimiter='/' --fields=3-`
+ export DEVPATH=${j#${SYSFSDIR}}
$BIN block
fi
done