IOT-1583: Removing /W4 warning from resource/c_common.
[platform/upstream/iotivity.git] / resource / c_common / oic_malloc / 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 *
24
25 Import('test_env')
26
27 # SConscript file for Local PKI google tests
28 malloctest_env = test_env.Clone()
29 target_os = malloctest_env.get('TARGET_OS')
30
31 ######################################################################
32 # Build flags
33 ######################################################################
34 malloctest_env.PrependUnique(CPPPATH = [
35         '../include'])
36
37 malloctest_env.AppendUnique(LIBPATH = [os.path.join(malloctest_env.get('BUILD_DIR'), 'resource', 'c_common')])
38 malloctest_env.PrependUnique(LIBS = ['c_common'])
39
40 if malloctest_env.get('LOGGING'):
41         malloctest_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
42 #
43 ######################################################################
44 # Source files and Targets
45 ######################################################################
46 malloctests = malloctest_env.Program('malloctests', ['linux/oic_malloc_tests.cpp'])
47
48 Alias("test", [malloctests])
49
50 malloctest_env.AppendTarget('test')
51 if malloctest_env.get('TEST') == '1':
52         if target_os in ['linux', 'windows']:
53                 run_test(malloctest_env,
54                          'resource_ccommon_malloc_test.memcheck',
55                          'resource/c_common/oic_malloc/test/malloctests')