csdk: Avoid to overlap memcheck files for UT
[platform/upstream/iotivity.git] / resource / csdk / stack / test / SConscript
1 #******************************************************************
2 #
3 # Copyright 2014 Intel Mobile Communications GmbH 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 os
22 import os.path
23 from tools.scons.RunTest import run_test
24
25 Import('test_env')
26
27 # SConscript file for Local PKI google tests
28 stacktest_env = test_env.Clone()
29 target_os = stacktest_env.get('TARGET_OS')
30 rd_mode = stacktest_env.get('RD_MODE')
31
32 ######################################################################
33 # Build flags
34 ######################################################################
35 stacktest_env.PrependUnique(CPPPATH=[
36     '../../security/include',
37     '../../ocsocket/include',
38     '../../logger/include',
39     '../../../c_common/ocrandom/include',
40     '../../include',
41     '../../stack/include',
42     '../../stack/include/internal',
43     '../../connectivity/api',
44     '../../connectivity/inc/pkix',
45     '../../connectivity/external/inc',
46     '../../../oc_logger/include',
47     '#resource/csdk/connectivity/inc',
48     '#resource/csdk/connectivity/lib/libcoap-4.1.1/include',
49     '#resource/csdk/connectivity/common/inc',
50 ])
51
52 stacktest_env.PrependUnique(LIBS=[
53     'octbstack_internal',
54     'ocsrm',
55     'routingmanager',
56     'connectivity_abstraction_internal',
57     'coap',
58 ])
59
60 if stacktest_env.get('SECURED') == '1':
61     stacktest_env.AppendUnique(LIBS=['mbedtls', 'mbedx509'])
62
63 # c_common calls into mbedcrypto.
64 stacktest_env.AppendUnique(LIBS=['mbedcrypto'])
65
66 if 'CLIENT' in rd_mode and target_os not in [
67         'arduino', 'darwin', 'ios', 'windows', 'winrt'
68 ]:
69     stacktest_env.PrependUnique(LIBS=['oc', 'oc_logger'])
70 if 'SERVER' in rd_mode:
71     if target_os in ['linux', 'tizen']:
72         stacktest_env.ParseConfig('pkg-config --cflags --libs sqlite3')
73     elif target_os in ['msys_nt', 'windows']:
74         stacktest_env.PrependUnique(LIBS=['sqlite3'])
75
76 if target_os not in ['msys_nt', 'windows']:
77     stacktest_env.PrependUnique(LIBS=['m'])
78
79     if target_os in ['tizen', 'linux']:
80         stacktest_env.ParseConfig(
81             "pkg-config --cflags --libs gobject-2.0 gio-2.0 glib-2.0")
82
83 ######################################################################
84 # Source files and Targets
85 ######################################################################
86 stacktests = stacktest_env.Program('stacktests', ['stacktests.cpp'])
87 cbortests = stacktest_env.Program('cbortests', ['cbortests.cpp'])
88
89 Alias("test", [stacktests, cbortests])
90
91 stacktest_env.AppendTarget('test')
92 if stacktest_env.get('TEST') == '1':
93     if target_os in ['linux', 'windows']:
94         run_test(stacktest_env,
95                  'resource_csdk_stack_test_stacktests.memcheck',
96                  'resource/csdk/stack/test/stacktests')
97         run_test(stacktest_env,
98                  'resource_csdk_stack_test_cbortests.memcheck',
99                  'resource/csdk/stack/test/cbortests')