diff options
author | Stephane Desneux <stephane.desneux@iot.bzh> | 2016-06-14 11:51:43 +0200 |
---|---|---|
committer | Stephane Desneux <stephane.desneux@iot.bzh> | 2016-06-14 11:51:51 +0200 |
commit | e2472c7b1d061aef8bb05a4d7940fd8159c4a329 (patch) | |
tree | d02452b65c994c373f88199028f53020722d9815 /dung-3.4.25-m2/common/unbind-bind-write.sh | |
parent | 87cdfd4626c0cb47fc22f328867e49d6268df85c (diff) |
add dung-3.4.25-m2, required by some JTA Functional.* testsblowfish_2.0.12.0.1
collection of shell scripts Used in multiple tests:
* Functional.arch_timer/arch_timer.sh
* Functional.scifab/scifab.sh
* Functional.cmt/cmt.sh
* Functional.sdhi_0/sdhi_0.sh
Change-Id: I268c426071890554518e8b4927620fe6df587c34
Signed-off-by: Stephane Desneux <stephane.desneux@iot.bzh>
Diffstat (limited to 'dung-3.4.25-m2/common/unbind-bind-write.sh')
-rwxr-xr-x | dung-3.4.25-m2/common/unbind-bind-write.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/dung-3.4.25-m2/common/unbind-bind-write.sh b/dung-3.4.25-m2/common/unbind-bind-write.sh new file mode 100755 index 0000000..a858aa3 --- /dev/null +++ b/dung-3.4.25-m2/common/unbind-bind-write.sh @@ -0,0 +1,27 @@ +#!/bin/sh +# unbind-bind-write.sh +# +# Simple test of unbinding and re-binding a device followed +# by writing to an associated block device +# +# Copyright (C) 2013 Horms Soltutions Ltd. +# +# Contact: Simon Horman <horms@verge.net.au> +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. + +set -e +#set -x + +if [ $# -ne 3 ]; then + echo "usage: $(basename $0) DRIVER DEVICE_NAME BLOCK_DEVICE" >& 2 + exit 1 +fi + +$(dirname $0)/../common/unbind-bind.sh "$@" + +echo "Perform write test" +exec $(dirname $0)/../common/write-dd.sh "$3" 1M 10 + |