Add unittest for auto coverage
[platform/core/api/connection.git] / unittest / include / tct_common.h
1 //
2 // Copyright (c) 2020 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Apache License, Version 2.0 (the License);
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //     http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16 #ifndef _TCT_COMMON_H_
17 #define _TCT_COMMON_H_
18
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22
23 #include "assert_local.h"
24
25 #include <malloc.h>
26 #include <stdbool.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <unistd.h>
30 #include <string.h>
31 #include <sys/stat.h>
32
33 #ifdef DEBUG_GCOV
34 #define COMMON_DEBUG                                    1
35 #else
36 #define COMMON_DEBUG                                    0
37 #endif
38
39 #define FREE_MEMORY_TC(buffer) { \
40         if ( buffer != NULL ) \
41         { \
42                 free(buffer); \
43                 buffer = NULL; \
44         } \
45 }
46
47 #define PRINT_LOG(type, tag, ...) do { \
48     fprintf(stdout,  ##__VA_ARGS__ ); \
49     fprintf(stdout,  "\n" ); \
50 } while(0)
51
52 #ifdef __cplusplus
53 }
54 #endif
55
56 #endif // _TCT_COMMON_H_