diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2007-12-20 17:28:32 +0200 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2007-12-20 17:29:33 +0200 |
commit | b722adcdb1eb8d0321eb5c4112db925c815450fc (patch) | |
tree | 641c0f49048f898d2dba333e5b2c16f820e2a1cb /ubi-utils/tests/runtests.sh | |
parent | eded3e909d8d7122ea1652940bb41bf5eef3ed55 (diff) |
ubi-utils: add one more UBI test
Add rmvol test
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'ubi-utils/tests/runtests.sh')
-rwxr-xr-x | ubi-utils/tests/runtests.sh | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/ubi-utils/tests/runtests.sh b/ubi-utils/tests/runtests.sh index f993bc0..7072e03 100755 --- a/ubi-utils/tests/runtests.sh +++ b/ubi-utils/tests/runtests.sh @@ -1,10 +1,10 @@ #!/bin/sh ubidev="$1" -ubiloadcmd="$2" -tests="mkvol_basic mkvol_bad mkvol_paral rsvol io_basic io_read io_update io_paral" +tests="mkvol_basic mkvol_bad mkvol_paral rsvol io_basic io_read io_update +io_paral rmvol" -if test -z "$ubidev" || test -z "$ubiloadcmd"; +if test -z "$ubidev"; then echo "Usage:" echo "$0 <UBI device> <ubi module load command>" @@ -34,8 +34,6 @@ do "./$t" "$ubidev" || exit 1 done -./integ "$ubiloadcmd" || exit 1 - echo SUCCESS exit 0 |