diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-07-06 18:04:32 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-07-06 18:04:32 +0200 |
commit | a7f89980e5b3f4b9a74c70dbc5ffe8aabd28be28 (patch) | |
tree | 41c4deec1fdfbafd7821b4ca7a9772ac0abd92f5 /test/panicsel-c.sh |
Imported Upstream version 2.9.3upstream/2.9.3
Diffstat (limited to 'test/panicsel-c.sh')
-rwxr-xr-x | test/panicsel-c.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/panicsel-c.sh b/test/panicsel-c.sh new file mode 100755 index 0000000..c668be8 --- /dev/null +++ b/test/panicsel-c.sh @@ -0,0 +1,19 @@ +# ABAT test for panicsel component utilities +# tag: rh71__build +# util=/usr/share/panicsel/showsel +util=/usr/sbin/isel +echo "panicsel component, basic acceptance test" +if [ ! -f $util ] +then + echo "%%FAILURE%%" + exit 1 +fi +$util >/dev/null 2>&1 +if [ $? -eq 0 ] +then + echo "%%SUCCESS%%" + exit 0 +else + echo "%%FAILURE%%" + exit 1 +fi |