[Win32] Change libcoap bitfield structure to use ushort
[platform/upstream/iotivity.git] / service / things-manager / unittests / 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 ##
22 # ThingsManager Unit Test build script
23 ##
24 import os
25 Import('env')
26
27 if env.get('RELEASE'):
28         env.AppendUnique(CCFLAGS = ['-Os'])
29         env.AppendUnique(CPPDEFINES = ['NDEBUG'])
30 else:
31         env.AppendUnique(CCFLAGS = ['-g'])
32
33 if env.get('LOGGING'):
34         env.AppendUnique(CPPDEFINES = ['TB_LOG'])
35
36 # Add third party libraries
37 lib_env = env.Clone()
38 SConscript(env.get('SRC_DIR') + '/service/third_party_libs.scons', 'lib_env')
39
40 target_os = env.get('TARGET_OS')
41 if target_os == 'linux':
42         # Verify that 'google unit test' library is installed.  If not,
43         # get it and install it
44         SConscript(env.get('SRC_DIR') + '/extlibs/gtest/SConscript')
45
46         # Verify that 'hippomocks' mocking code is installed.  If not,
47         # get it and install it
48         SConscript(env.get('SRC_DIR') + '/extlibs/hippomocks.scons')
49
50 ThingsManager_gtest_env = lib_env.Clone()
51
52 ######################################################################
53 #unit test setting
54 ######################################################################
55 src_dir = lib_env.get('SRC_DIR')
56 gtest_dir = src_dir + '/extlibs/gtest/gtest-1.7.0'
57
58 ######################################################################
59 # Build flags
60 ######################################################################
61 gtest = File(gtest_dir + '/lib/.libs/libgtest.a')
62 gtest_main = File(gtest_dir + '/lib/.libs/libgtest_main.a')
63
64 ThingsManager_gtest_env.AppendUnique(
65         CPPPATH = [
66                 src_dir + '/extlibs/hippomocks-master',
67                 src_dir + '/extlibs/gtest/gtest-1.7.0/include',
68                 '../sdk/inc',
69                 '../../../extlibs/timer'
70         ])
71
72 if target_os not in ['windows', 'winrt']:
73         ThingsManager_gtest_env.AppendUnique(CXXFLAGS = ['-std=c++0x', '-Wall'])
74         if target_os != 'android':
75                 ThingsManager_gtest_env.AppendUnique(CXXFLAGS = ['-pthread'])
76                 ThingsManager_gtest_env.AppendUnique(LIBS = ['pthread'])
77
78 ThingsManager_gtest_env.PrependUnique(LIBS = [
79     'libTGMSDKLibrary',
80     'oc',
81     'octbstack',
82     'oc_logger',
83     'oc_logger_core',
84     'connectivity_abstraction',
85     gtest,
86     gtest_main])
87
88 ThingsManager_gtest_env.AppendUnique(LIBS = ['dl'])
89
90 ######################################################################
91 # Build Test
92 ######################################################################
93 ThingsManager_gtest_src = env.Glob('./*.cpp')
94
95 ThingsManagerTest = ThingsManager_gtest_env.Program('ThingsManagerTest', ThingsManager_gtest_src)
96 Alias("ThingsManagerTest", ThingsManagerTest)
97 env.AppendTarget('ThingsManagerTest')
98
99 if env.get('TEST') == '1':
100     target_os = env.get('TARGET_OS')
101     if target_os == 'linux':
102         from tools.scons.RunTest import *
103         run_test(ThingsManager_gtest_env, '',
104                 'service/things-manager/unittests/ThingsManagerTest')