| Submitter | Dmitri Monakho |
|---|---|
| Date | Feb. 20, 2013, 10:42 a.m. |
| Message ID | <1361356935-29153-7-git-send-email-dmonakhov@openvz.org> |
| Download | mbox | patch |
| Permalink | /patch/222052/ |
| State | Not Applicable |
| Headers | show |
Comments
Looks good, will add the following simple description when this is committed
Move run_check to common.rc
Reviewed-by: Rich Johnston <rjohnston@sgi.com>
--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Patch
diff --git a/276 b/276 index 082f943..c1ce8ac 100755 --- a/276 +++ b/276 @@ -165,12 +165,6 @@ _btrfs_inspect_check() return $ret } -run_check() -{ - echo "# $@" >> $seq.full 2>&1 - "$@" >> $seq.full 2>&1 || _fail "failed: '$@'" -} - workout() { fsz=$1 diff --git a/common.rc b/common.rc index 3635a45..e7ae9bf 100644 --- a/common.rc +++ b/common.rc @@ -1854,7 +1854,13 @@ _scale_fsstress_args() done echo $args } - + +run_check() +{ + echo "# $@" >> $seq.full 2>&1 + "$@" >> $seq.full 2>&1 || _fail "failed: '$@'" +} + ################################################################################ if [ "$iam" != new -a "$iam" != bench ]
Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org> --- 276 | 6 ------ common.rc | 8 +++++++- 2 files changed, 7 insertions(+), 7 deletions(-)