aboutsummaryrefslogtreecommitdiff
path: root/ubi-utils/tests/runtests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ubi-utils/tests/runtests.sh')
-rwxr-xr-xubi-utils/tests/runtests.sh8
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