#******************************************************************
#
# Copyright 2015 Intel Mobile Communications GmbH All Rights Reserved.
#
#-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
#-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

import os
import os.path

# SConscript file for Local PKI google tests
gtest_env = SConscript('#extlibs/gtest/SConscript')
timetest_env = gtest_env.Clone()
target_os = timetest_env.get('TARGET_OS')

######################################################################
# Build flags
######################################################################
timetest_env.PrependUnique(CPPPATH = [
        '../include'])

timetest_env.AppendUnique(LIBPATH = [os.path.join(timetest_env.get('BUILD_DIR'), 'resource', 'c_common')])
timetest_env.PrependUnique(LIBS = ['c_common'])
timetest_env.Append(LIBS = ['rt']);

if timetest_env.get('LOGGING'):
    timetest_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
#
######################################################################
# Source files and Targets
######################################################################
timetests = timetest_env.Program('timetests', ['linux/oic_time_tests.cpp'])

Alias("test", [timetests])

timetest_env.AppendTarget('test')
if timetest_env.get('TEST') == '1':
    if target_os in ['linux']:
                from tools.scons.RunTest import *
                run_test(timetest_env,
                         'resource_ccommon_time_test.memcheck',
                         'resource/c_common/oic_time/test/timetests')
