| To: | xfs@xxxxxxxxxxx |
|---|---|
| Subject: | [PATCH 2/3] xfstests: keep newlines out of SCRATCH_DEV_POOL |
| From: | Eric Sandeen <sandeen@xxxxxxxxxx> |
| Date: | Wed, 13 Mar 2013 09:57:02 -0500 |
| Cc: | Eric Sandeen <sandeen@xxxxxxxxxx>, linux-btrfs@xxxxxxxxxxxxxxx |
| Delivered-to: | xfs@xxxxxxxxxxx |
| In-reply-to: | <1363186623-1378-1-git-send-email-sandeen@xxxxxxxxxx> |
| References: | <1363186623-1378-1-git-send-email-sandeen@xxxxxxxxxx> |
SCRATCH_DEV_POOL processing actually takes the first
device out for SCRATCH_DEV and leaves the rest in
SCRATCH_DEV_POOL.
I'm not totally sold on that behavior, but for now,
at least don't populate SCRATCH_DEV_POOL with newlines.
Cc: linux-btrfs@xxxxxxxxxxxxxxx
Signed-off-by: Eric Sandeen <sandeen@xxxxxxxxxx>
---
common.config | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/common.config b/common.config
index ed0f44c..5ac58bf 100644
--- a/common.config
+++ b/common.config
@@ -258,7 +258,7 @@ if [ ! -z "$SCRATCH_DEV_POOL" ]; then
exit 1
fi
SCRATCH_DEV=`echo $SCRATCH_DEV_POOL | awk '{print $1}'`
- SCRATCH_DEV_POOL=`echo $SCRATCH_DEV_POOL | awk '{ for (i = 2; i <= NF;
i++) print $i}'`
+ SCRATCH_DEV_POOL=`echo $SCRATCH_DEV_POOL | awk '{ ORS=" "; for (i = 2; i
<= NF; i++) print $i}'`
fi
echo $SCRATCH_DEV | grep -q ":" > /dev/null 2>&1
--
1.7.1
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH 1/3] xfstests: add 274 to the prealloc group, Eric Sandeen |
|---|---|
| Next by Date: | [PATCH 3/3] xfstests: btrfs tests for basic informational commands, Eric Sandeen |
| Previous by Thread: | Re: [PATCH 1/3] xfstests: add 274 to the prealloc group, Rich Johnston |
| Next by Thread: | Re: [PATCH 2/3] xfstests: keep newlines out of SCRATCH_DEV_POOL, Rich Johnston |
| Indexes: | [Date] [Thread] [Top] [All Lists] |