X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=auto_build.py;h=a31033c9f4b3f1996231e970ed68da99625b9762;hb=cbee1583397ab02ab7d9f34707dcf7b1ec843135;hp=586430627b368c210dd15c41fa6bcc8819f9630c;hpb=c30b6d0ca08ef40121732b6a6876b00cd34719ca;p=platform%2Fupstream%2Fiotivity.git diff --git a/auto_build.py b/auto_build.py index 5864306..a31033c 100644 --- a/auto_build.py +++ b/auto_build.py @@ -75,6 +75,7 @@ def build_linux_unsecured(flag, extra_option_str): print ("*********** Build for linux ************") build_options = { 'RELEASE':flag, + 'SECURED':0, } call_scons(build_options, extra_option_str) @@ -84,7 +85,6 @@ def build_linux_secured_with_tcp(flag, extra_option_str): 'RELEASE':flag, 'WITH_TCP': 1, 'WITH_CLOUD':1, - 'SECURED':1, } call_scons(build_options, extra_option_str) @@ -113,6 +113,7 @@ def build_linux_unsecured_with_tcp(flag, extra_option_str): 'RELEASE':flag, 'WITH_TCP': 1, 'TARGET_TRANSPORT': 'IP', + 'SECURED':0, } call_scons(build_options, extra_option_str) @@ -121,6 +122,7 @@ def build_linux_unsecured_with_rm(flag, extra_option_str): build_options = { 'ROUTING':'GW', 'RELEASE':flag, + 'SECURED':0, } call_scons(build_options, extra_option_str) @@ -128,7 +130,6 @@ def build_linux_secured(flag, extra_option_str): print ("*********** Build for linux with Security *************") build_options = { 'RELEASE':flag, - 'SECURED':1, } call_scons(build_options, extra_option_str) @@ -138,6 +139,7 @@ def build_linux_unsecured_with_ra(flag, extra_option_str): 'RELEASE':flag, 'WITH_RA':1, 'WITH_RA_IBB':1, + 'SECURED':0, } call_scons(build_options, extra_option_str) @@ -147,7 +149,6 @@ def build_linux_secured_with_ra(flag, extra_option_str): 'RELEASE':flag, 'WITH_RA':1, 'WITH_RA_IBB':1, - 'SECURED':1, } call_scons(build_options, extra_option_str) @@ -156,6 +157,7 @@ def build_linux_unsecured_with_rd(flag, extra_option_str): build_options = { 'RELEASE':flag, 'RD_MODE':'all', + 'SECURED':0, } call_scons(build_options, extra_option_str) @@ -164,7 +166,6 @@ def build_linux_secured_with_rd(flag, extra_option_str): build_options = { 'RELEASE':flag, 'RD_MODE':'all', - 'SECURED':1, } call_scons(build_options, extra_option_str) @@ -173,6 +174,7 @@ def build_linux_unsecured_with_mq(flag, extra_option_str): build_options = { 'RELEASE':flag, 'WITH_MQ':'PUB,SUB,BROKER', + 'SECURED':0, } call_scons(build_options, extra_option_str) @@ -181,6 +183,7 @@ def build_linux_unsecured_with_tcp(flag, extra_option_str): build_options = { 'RELEASE':flag, 'WITH_TCP':'1', + 'SECURED':0, } call_scons(build_options, extra_option_str) @@ -383,9 +386,11 @@ def build_tizen(flag, extra_option_str): print ("*********** Build for Tizen *************") cmd_line = "/bin/sh " + os.getcwd() + "/gbsbuild.sh" print ("Running : " + cmd_line) - subprocess.Popen([cmd_line], shell=True).wait() + exit_code = subprocess.Popen([cmd_line], shell=True).wait() + if exit_code != 0: + exit(exit_code) - print ("*********** Build for Tizen octbstack lib and sample *************") + print ("*********** Build for Tizen octbstack lib and sample with security *************") extra_option_str = "-f resource/csdk/stack/samples/tizen/build/SConscript " + extra_option_str build_options = { 'TARGET_OS':'tizen', @@ -395,12 +400,11 @@ def build_tizen(flag, extra_option_str): } call_scons(build_options, extra_option_str) - print ("*********** Build for Tizen octbstack lib and sample with Security*************") - build_options['SECURED'] = 1 + print ("*********** Build for Tizen octbstack lib and sample *************") + build_options['SECURED'] = 0 call_scons(build_options, extra_option_str) print ("*********** Build for Tizen octbstack lib and sample with Routing Manager*************") - del build_options['SECURED'] build_options['ROUTING'] = 'GW' call_scons(build_options, extra_option_str) @@ -449,7 +453,6 @@ def build_windows(flag, extra_option_str): 'RELEASE':flag, 'WITH_RA':0, 'TARGET_TRANSPORT':'IP', - 'SECURED':1, 'WITH_TCP':0, 'BUILD_SAMPLE':'ON', 'LOGGING':'off', @@ -468,7 +471,6 @@ def build_msys(flag, extra_option_str): 'RELEASE':flag, 'WITH_RA':0, 'TARGET_TRANSPORT':'IP', - 'SECURED':1, 'WITH_TCP':0, 'BUILD_SAMPLE':'ON', 'LOGGING':'off', @@ -490,21 +492,22 @@ def unit_tests(): build_options = { 'RELEASE':'false', } - extra_option_str = "resource -c" + extra_option_str = "-c ." call_scons(build_options, extra_option_str) build_options = { - 'LOGGING':'false', + 'TEST':1, 'RELEASE':'false', + 'SECURED':0, } - extra_option_str = "resource" + extra_option_str = "" call_scons(build_options, extra_option_str) build_options = { 'TEST':1, + 'SECURED':1, 'RELEASE':'false', } - extra_option_str = "resource" call_scons(build_options, extra_option_str) print ("*********** Unit test Stop *************")