Added the OCStackResult code related 'RESOURCE_CHANGED' in OCToCAStackResult
[platform/upstream/iotivity.git] / resource / unit_tests.scons
index 50a38cc..b2d758d 100644 (file)
@@ -29,14 +29,14 @@ target_os = env.get('TARGET_OS')
 src_dir = env.get('SRC_DIR')
 build_dir = env.get('BUILD_DIR')
 
-if target_os == 'linux':
+if target_os in ['linux']:
        # Verify that 'google unit test' library is installed.  If not,
        # get it and install it
-       SConscript(src_dir + '/extlibs/gtest/SConscript')
+       SConscript('#extlibs/gtest/SConscript')
 
        # Verify that 'hippomocks' mocking code is installed.  If not,
        # get it and install it
-       SConscript(src_dir + '/extlibs/hippomocks.scons')
+       SConscript('#extlibs/hippomocks.scons')
 
     # Build Common unit tests
        SConscript('c_common/oic_string/test/SConscript')
@@ -63,7 +63,7 @@ if target_os == 'linux':
 elif target_os == 'windows' and env.get('TEST') == '1':
        # Verify that 'google unit test' library is installed.  If not,
        # get it and install it
-       SConscript(src_dir + '/extlibs/gtest/SConscript')
+       SConscript('#extlibs/gtest/SConscript')
 
        # Build C stack's unit tests.
        SConscript('csdk/stack/test/SConscript')
@@ -79,7 +79,7 @@ elif target_os == 'windows' and env.get('TEST') == '1':
 elif target_os in ['darwin', 'msys_nt']:
        # Verify that 'google unit test' library is installed.  If not,
        # get it and install it
-       SConscript(src_dir + '/extlibs/gtest/SConscript')
+       SConscript('#extlibs/gtest/SConscript')
 
        # Build C stack's unit tests.
        SConscript('csdk/stack/test/SConscript')