From: Pawel Wieczorek
Date: Mon, 23 Mar 2015 16:18:48 +0000 (+0100)
Subject: Add key-manager tests to test runner
X-Git-Tag: security-manager_5.5_testing~122^2~6
X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f6697d4b546b0085bc161a4c9caef4e3976b709b;p=platform%2Fcore%2Ftest%2Fsecurity-tests.git
Add key-manager tests to test runner
Passing "ckm" argument to security-tests.sh script will result in
execution of "ckm-tests" binary. Previously it had to be called
explicitly.
Change-Id: Icacefde32d99832295ddaad045ae31be3d085ca8
---
diff --git a/src/security-tests.sh b/src/security-tests.sh
index db3221c9..f99127bc 100644
--- a/src/security-tests.sh
+++ b/src/security-tests.sh
@@ -88,13 +88,19 @@ case $1 in
echo
cynara-test "${@:2}"
;;
+"ckm")
+ echo "========================================================================="
+ echo "KEY MANAGER TESTS"
+ echo
+ ckm-tests "${@:2}"
+ ;;
*)
echo "Correct using:"
echo " security_test.sh "
echo
echo "modules: smack, smack-dbus, libprivilege-control, ss-clientsmack"
echo " ss-server, ss-api-speed, ss-password, ss-stress"
- echo " ss-privilege, security-manager, cynara"
+ echo " ss-privilege, security-manager, cynara, ckm"
;;
esac