1 # //******************************************************************
3 # // Copyright 2015 Samsung Electronics All Rights Reserved.
5 # //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
7 # // Licensed under the Apache License, Version 2.0 (the "License");
8 # // you may not use this file except in compliance with the License.
9 # // You may obtain a copy of the License at
11 # // http://www.apache.org/licenses/LICENSE-2.0
13 # // Unless required by applicable law or agreed to in writing, software
14 # // distributed under the License is distributed on an "AS IS" BASIS,
15 # // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # // See the License for the specific language governing permissions and
17 # // limitations under the License.
19 # //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
25 sptest_env = env.Clone()
27 src_dir = sptest_env.get('SRC_DIR')
29 ######################################################################
31 ######################################################################
32 sptest_env.PrependUnique(CPPPATH = [
33 '../../../connectivity/inc',
34 '../../../connectivity/api',
36 '../../../../../extlibs/tinydtls',
37 '../include/internal',
39 '../../../logger/include',
40 '../../../stack/include',
41 '../../../../oc_logger/include',
42 '../../../../../extlibs/gtest/gtest-1.7.0/include',
46 sptest_env.AppendUnique(CXXFLAGS = ['-std=c++0x', '-Wall', '-pthread'])
47 sptest_env.AppendUnique(LIBS = ['-lpthread','-ldl'])
48 sptest_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
49 sptest_env.AppendUnique(LIBPATH = [src_dir + '/extlibs/gtest/gtest-1.7.0/lib/.libs'])
50 sptest_env.PrependUnique(LIBS = [ 'ocpmapi',
54 'connectivity_abstraction',
59 if env.get('SECURED') == '1':
60 sptest_env.AppendUnique(LIBS = ['tinydtls'])
62 if not env.get('RELEASE'):
63 sptest_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
65 ######################################################################
66 # Source files and Targets
67 ######################################################################
68 unittest = sptest_env.Program('unittest', ['pmutilitytest.cpp', 'otmunittest.cpp',
69 'secureresourceprovider.cpp',
70 'provisioningdatabasemanager.cpp',
71 'ocprovisioningmanager.cpp' ])
73 Alias("test", [unittest])
75 env.AppendTarget('test')
76 if env.get('TEST') == '1':
77 target_os = env.get('TARGET_OS')
78 if target_os == 'linux':
79 out_dir = env.get('BUILD_DIR')
80 result_dir = env.get('BUILD_DIR') + '/test_out/'
81 if not os.path.isdir(result_dir):
82 os.makedirs(result_dir)
83 sptest_env.AppendENVPath('GTEST_OUTPUT', ['xml:'+ result_dir])
84 sptest_env.AppendENVPath('LD_LIBRARY_PATH', [out_dir])
85 sptest_env.AppendENVPath('LD_LIBRARY_PATH', ['./extlibs/gtest/gtest-1.7.0/lib/.libs'])
86 ut = sptest_env.Command ('ut', None, out_dir + '/resource/csdk/security/unittest/unittest')