Imported Upstream version 0.9.2
[platform/upstream/iotivity.git] / resource / csdk / connectivity / test / SConscript
1 #******************************************************************
2 #
3 # Copyright 2015 Samsung Electronics All Rights Reserved.
4 #
5 #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 #
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
10 #
11 #      http://www.apache.org/licenses/LICENSE-2.0
12 #
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.
18 #
19 #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21 Import('env')
22 import os
23 import os.path
24 catest_env = env.Clone()
25
26 src_dir = catest_env.get('SRC_DIR')
27
28 ######################################################################
29 # Build flags
30 ######################################################################
31 catest_env.PrependUnique(CPPPATH = [
32                 '../../ocsocket/include',
33                 '../../logger/include',
34                 '../../stack/include',
35                 '../../extlibs/cjson',
36                 '../../../oc_logger/include',
37                 '../../../../extlibs/gtest/gtest-1.7.0/include'
38                ])
39
40 tmplist = catest_env['LINKFLAGS'][:]
41 if '-lpthread' in tmplist:
42     tmplist.remove('-lpthread')
43     catest_env.Replace(LINKFLAGS = tmplist)
44
45 catest_env.AppendUnique(CXXFLAGS = ['-std=c++0x', '-Wall', '-pthread'])
46 catest_env.AppendUnique(LIBS = ['pthread'])
47 catest_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
48 catest_env.AppendUnique(LIBPATH = [src_dir + '/extlibs/gtest/gtest-1.7.0/lib/.libs'])
49 catest_env.PrependUnique(LIBS = ['m',
50                                     'octbstack',
51                                     'connectivity_abstraction',
52                                     'coap',
53                                     'gtest',
54                                     'gtest_main'])
55
56 target_os = env.get('TARGET_OS')
57
58 if target_os not in ['arduino', 'darwin', 'ios']:
59         catest_env.AppendUnique(LIBS=['rt'])
60
61 if target_os != 'darwin':
62     catest_env.PrependUnique(LIBS = ['oc_logger'])
63
64 if env.get('SECURED') == '1':
65     catest_env.AppendUnique(LIBS = ['tinydtls'])
66
67 if env.get('LOGGING'):
68         catest_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
69
70 ######################################################################
71 # Source files and Targets
72 ######################################################################
73 catests = catest_env.Program('catests', ['catests.cpp',
74                                          'caprotocolmessagetest.cpp',
75                                                'ca_api_unittest.cpp',
76                                                'camutex_tests.cpp'
77                                                ])
78
79 Alias("test", [catests])
80
81 env.AppendTarget('test')
82 if env.get('TEST') == '1':
83         target_os = env.get('TARGET_OS')
84         if target_os == 'linux':
85                 from tools.scons.RunTest import *
86                 run_test(catest_env,
87                          'resource_csdk_connectivity_test.memcheck',
88                          'resource/csdk/connectivity/test/catests')