From: Philippe Coval Date: Fri, 9 Dec 2016 23:05:33 +0000 (+0100) Subject: build: Enable unit testing in SECURED=1 mode for resource X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=feb0f93c28f301dbb1e4be4617ce92bf95f718dc;p=contrib%2Fiotivity.git build: Enable unit testing in SECURED=1 mode for resource Bug: https://jira.iotivity.org/browse/IOT-1486 Change-Id: I38e593d49401f7e14bfa26dd980938d36e66ac68 Signed-off-by: Philippe Coval Reviewed-on: https://gerrit.iotivity.org/gerrit/14903 Tested-by: jenkins-iotivity Reviewed-by: Nivedita Singhvi Reviewed-by: Uze Choi (cherry picked from commit 7be23fe785dffb5bf4ce022c882bdd235434ebb8) Origin: https://gerrit.iotivity.org/gerrit/#/c/14691/ Reviewed-on: https://gerrit.iotivity.org/gerrit/14691 Reviewed-by: George Nash --- diff --git a/auto_build.py b/auto_build.py index 5864306..0db8d3b 100644 --- a/auto_build.py +++ b/auto_build.py @@ -504,7 +504,12 @@ def unit_tests(): 'TEST':1, 'RELEASE':'false', } - extra_option_str = "resource" + call_scons(build_options, extra_option_str) + build_options = { + 'TEST':1, + 'SECURED':1, + 'RELEASE':'false', + } call_scons(build_options, extra_option_str) print ("*********** Unit test Stop *************")