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-k.sh |
Imported Upstream version 2.9.3upstream/2.9.3
Diffstat (limited to 'test/panicsel-k.sh')
-rwxr-xr-x | test/panicsel-k.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/panicsel-k.sh b/test/panicsel-k.sh new file mode 100755 index 0000000..6737698 --- /dev/null +++ b/test/panicsel-k.sh @@ -0,0 +1,13 @@ +# ABAT test for panicsel kernel patch +# tag: panicsel__build +echo "panicsel kernel patch (BMC_PANIC), basic acceptance test" +# dmesg |grep "BMC IPMI" >/dev/null 2>&1 +dmesg |grep bmc_panic >/dev/null 2>&1 +if [ $? -eq 0 ] +then + echo "%%SUCCESS%%" + exit 0 +else + echo "%%FAILURE%%" + exit 1 +fi |