Add key-manager tests to test runner 67/37267/1
authorPawel Wieczorek <p.wieczorek2@samsung.com>
Mon, 23 Mar 2015 16:18:48 +0000 (17:18 +0100)
committerPawel Wieczorek <p.wieczorek2@samsung.com>
Mon, 23 Mar 2015 16:29:55 +0000 (17:29 +0100)
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

src/security-tests.sh

index db3221c..f99127b 100644 (file)
@@ -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 <module> <args_for_module>"
     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