Skip to content

Commit c7d7659

Browse files
stefanvacek-intelalexmucde
authored andcommitted
Cleanup master
- remove compiler warnings - fix file permissions Signed-off-by: Stefan Vacek <[email protected]>
1 parent 9f484fa commit c7d7659

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+35
-35
lines changed

AUTHORS

100755100644
File mode changed.

COPYING

100755100644
File mode changed.

LICENSE

100755100644
File mode changed.

ReleaseNotes.txt

100755100644
File mode changed.

automotive-dlt.pc.in

100755100644
File mode changed.

cmake/config.h.cmake

100755100644
File mode changed.

cmake/dlt_version.h.cmake

100755100644
File mode changed.

distfiles

100755100644
File mode changed.

doc/doxygen.cfg.cmake

100755100644
File mode changed.

doc/extended_network_trace_doxygen.cfg.cmake

100755100644
File mode changed.

doc/images/dlt_architecture.png

100755100644
File mode changed.

doc/images/dlt_message_flow.png

100755100644
File mode changed.

doc/images/dlt_overview.png

100755100644
File mode changed.

doc/images/eclipse-import-links.png

100755100644
File mode changed.

doc/images/genivi_chrome_1_transparent.png

100755100644
File mode changed.

examples/example1/CMakeLists.txt

100755100644
File mode changed.

examples/example2/CMakeLists.txt

100755100644
File mode changed.

examples/example3/CMakeLists.txt

100755100644
File mode changed.

examples/example4/CMakeLists.txt

100755100644
File mode changed.

include/CMakeLists.txt

100755100644
File mode changed.

include/dlt/dlt.h

100755100644
File mode changed.

include/dlt/dlt_client.h

100755100644
File mode changed.

include/dlt/dlt_common.h

100755100644
File mode changed.

include/dlt/dlt_protocol.h

100755100644
File mode changed.

include/dlt/dlt_types.h

100755100644
File mode changed.

src/adaptor/CMakeLists.txt

100755100644
File mode changed.

src/adaptor/dlt-adaptor-stdin.c

100755100644
File mode changed.

src/adaptor/dlt-adaptor-udp.c

100755100644
File mode changed.

src/console/CMakeLists.txt

100755100644
File mode changed.

src/console/dlt-control.c

100755100644
File mode changed.

src/console/dlt-convert.c

100755100644
File mode changed.

src/console/dlt-logstorage-ctrl.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ int dlt_logstorage_message_callback(DltMessage *message, void *data)
250250
char text[DLT_RECEIVE_TEXTBUFSIZE] = {0};
251251
int ret = 0;
252252

253-
(void *)data; /* ignore data */
253+
(void)data; /* ignore data */
254254

255255
if (message == 0)
256256
{

src/console/dlt-receive.c

100755100644
File mode changed.

src/console/filter.txt

100755100644
File mode changed.

src/daemon/CMakeLists.txt

100755100644
File mode changed.

src/daemon/dlt-daemon.h

100755100644
File mode changed.

src/daemon/dlt-daemon_cfg.h

100755100644
File mode changed.

src/daemon/dlt_daemon_common_cfg.h

100755100644
File mode changed.

src/examples/CMakeLists.txt

100755100644
File mode changed.

src/examples/dlt-example-non-verbose-1.xml

100755100644
File mode changed.

src/examples/dlt-example-non-verbose.xml

100755100644
File mode changed.

src/examples/dlt-example-user-func.c

100755100644
File mode changed.

src/examples/dlt-example-user.c

100755100644
File mode changed.

src/lib/dlt_client.c

100755100644
File mode changed.

src/lib/dlt_client_cfg.h

100755100644
File mode changed.

src/lib/dlt_user_cfg.h

100755100644
File mode changed.

src/shared/dlt_common.c

100755100644
File mode changed.

src/shared/dlt_common_cfg.h

100755100644
File mode changed.

src/shared/dlt_user_shared.c

100755100644
File mode changed.

src/shared/dlt_user_shared.h

100755100644
File mode changed.

src/shared/dlt_user_shared_cfg.h

100755100644
File mode changed.

src/tests/dlt-test-client.c

100755100644
File mode changed.

src/tests/dlt-test-filetransfer-image.png

100755100644
File mode changed.

src/tests/dlt-test-multi-process.c

100755100644
File mode changed.

src/tests/dlt-test-stress.c

100755100644
File mode changed.

src/tests/dlt-test-user.c

100755100644
File mode changed.

systemd/dlt-dbus.service.cmake

100755100644
File mode changed.

systemd/dlt-system.service.cmake

100755100644
File mode changed.

systemd/dlt.service.cmake

100755100644
File mode changed.

tests/gtest_dlt_common.cpp

+12-12
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ void dlt_buffer_info(DltBuffer *);
5454
}
5555

5656

57-
/* Beginn Method: dlt_common::dlt_buffer_init_dynamic */
57+
/* Begin Method: dlt_common::dlt_buffer_init_dynamic */
5858
TEST(t_dlt_buffer_init_dynamic, normal)
5959
{
6060
DltBuffer init_dynamic;
@@ -118,7 +118,7 @@ TEST(t_dlt_buffer_init_dynamic, nullpointer)
118118

119119

120120

121-
/* Beginn Method: dlt_common::dlt_buffer_free_dynamic */
121+
/* Begin Method: dlt_common::dlt_buffer_free_dynamic */
122122
TEST(t_dlt_buffer_free_dynamic, normal)
123123
{
124124
DltBuffer buf;
@@ -154,7 +154,7 @@ TEST(t_dlt_buffer_free_dynamic, nullpointer)
154154

155155

156156

157-
/* Beginn Method: dlt_common::dlt_buffer_increase_size */
157+
/* Begin Method: dlt_common::dlt_buffer_increase_size */
158158
TEST(t_dlt_buffer_increase_size, normal)
159159
{
160160
DltBuffer buf;
@@ -204,7 +204,7 @@ TEST(t_dlt_buffer_increase_size, nullpointer)
204204

205205

206206

207-
/* Beginn Method: dlt_common::dlt_buffer_minimize_size */
207+
/* Begin Method: dlt_common::dlt_buffer_minimize_size */
208208
TEST(t_dlt_buffer_minimize_size, normal)
209209
{
210210
DltBuffer buf;
@@ -254,7 +254,7 @@ TEST(t_dlt_buffer_minimize_size, nullpointer)
254254

255255

256256

257-
/* Beginn Method: dlt_common::dlt_buffer_reset */
257+
/* Begin Method: dlt_common::dlt_buffer_reset */
258258
TEST(t_dlt_buffer_reset, normal)
259259
{
260260
DltBuffer buf;
@@ -281,7 +281,7 @@ TEST(t_dlt_buffer_reset, nullpointer)
281281

282282

283283

284-
/* Beginn Method: dlt_common::dlt_buffer_push*/
284+
/* Begin Method: dlt_common::dlt_buffer_push*/
285285
TEST(t_dlt_buffer_push, normal)
286286
{
287287
DltBuffer buf;
@@ -295,7 +295,7 @@ TEST(t_dlt_buffer_push, normal)
295295

296296
// Push till buffer is full, expected 0
297297
EXPECT_LE(0,dlt_buffer_init_dynamic(&buf, DLT_USER_RINGBUFFER_MIN_SIZE, DLT_USER_RINGBUFFER_MAX_SIZE, DLT_USER_RINGBUFFER_STEP_SIZE));
298-
for(int i=0; i<= (DLT_USER_RINGBUFFER_MIN_SIZE/size); i++)
298+
for(unsigned int i=0; i<= (DLT_USER_RINGBUFFER_MIN_SIZE/size); i++)
299299
{
300300
EXPECT_LE(0, dlt_buffer_push(&buf,(unsigned char *)&test,size));
301301
}
@@ -343,7 +343,7 @@ TEST(t_dlt_buffer_push, abnormal)
343343
}
344344
TEST(t_dlt_buffer_push, nullpointer)
345345
{
346-
DltBuffer buf;
346+
// DltBuffer buf;
347347
char * test;
348348
int size = sizeof(test);
349349

@@ -587,7 +587,7 @@ TEST(t_dlt_buffer_push3, abnormal)
587587
}
588588
TEST(t_dlt_buffer_push3, nullpointer)
589589
{
590-
DltBuffer buf;
590+
// DltBuffer buf;
591591
char * test;
592592
int size = sizeof(test);
593593

@@ -1097,7 +1097,7 @@ TEST(t_dlt_buffer_get_used_size, nullpointer)
10971097
TEST(t_dlt_buffer_write_block, normal)
10981098
{
10991099
DltBuffer buf;
1100-
unsigned char * data;
1100+
unsigned char * data = NULL;
11011101
int write;
11021102
int size1 = 516;
11031103
int size2 = 1024;
@@ -1169,7 +1169,7 @@ TEST(t_dlt_buffer_write_block, nullpointer)
11691169
TEST(t_dlt_buffer_read_block, normal)
11701170
{
11711171
DltBuffer buf;
1172-
unsigned char * data;
1172+
unsigned char * data = NULL;
11731173
int write, read;
11741174
int size1 = 516;
11751175
int size2 = 1024;
@@ -3002,7 +3002,7 @@ TEST(t_dlt_message_read, normal)
30023002
/*---------------------------------------*/
30033003

30043004
DltBuffer buf;
3005-
char *buffer;
3005+
char *buffer = NULL;
30063006

30073007
EXPECT_LE(0, dlt_buffer_init_dynamic(&buf, DLT_USER_RINGBUFFER_MIN_SIZE, DLT_USER_RINGBUFFER_MAX_SIZE, DLT_USER_RINGBUFFER_STEP_SIZE));
30083008
EXPECT_LE(0, dlt_file_init(&file, 0));

tests/gtest_dlt_daemon_common.cpp

+20-20
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ TEST(t_dlt_daemon_application_del, normal)
155155
}
156156
TEST(t_dlt_daemon_application_del, abnormal)
157157
{
158-
DltDaemon daemon;
158+
// DltDaemon daemon;
159159
// const char * apid = "TEST";
160160
// pid_t pid = 0;
161161
// const char * desc = "HELLO_TEST";
@@ -182,11 +182,11 @@ TEST(t_dlt_daemon_application_del, abnormal)
182182
TEST(t_dlt_daemon_application_del, nullpointer)
183183
{
184184
DltDaemon daemon;
185-
DltDaemonApplication *app;
185+
DltDaemonApplication app;
186186

187187
// NULL-Pointer
188188
EXPECT_GE(-1, dlt_daemon_application_del(NULL,NULL, 0));
189-
EXPECT_GE(-1, dlt_daemon_application_del(NULL, app , 0));
189+
EXPECT_GE(-1, dlt_daemon_application_del(NULL, &app , 0));
190190
EXPECT_GE(-1, dlt_daemon_application_del(&daemon,NULL, 0));
191191
}
192192
/* End Method: dlt_daemon_common::dlt_daemon_application_del */
@@ -654,12 +654,12 @@ TEST(t_dlt_daemon_context_del, normal)
654654
}
655655
TEST(t_dlt_daemon_context_del, abnormal)
656656
{
657-
DltDaemon daemon;
658-
ID4 apid = "TES";
659-
ID4 ctid = "CON";
660-
char desc[255] = "TEST dlt_daemon_context_add";
661-
DltDaemonContext *daecontext;
662-
DltDaemonApplication *app;
657+
// DltDaemon daemon;
658+
// ID4 apid = "TES";
659+
// ID4 ctid = "CON";
660+
// char desc[255] = "TEST dlt_daemon_context_add";
661+
// DltDaemonContext *daecontext;
662+
// DltDaemonApplication *app;
663663

664664
// Context uninitialized
665665
// EXPECT_EQ(0, dlt_daemon_init(&daemon, DLT_DAEMON_RINGBUFFER_MIN_SIZE, DLT_DAEMON_RINGBUFFER_MAX_SIZE, DLT_DAEMON_RINGBUFFER_STEP_SIZE, DLT_RUNTIME_DEFAULT_DIRECTORY,0));
@@ -691,11 +691,11 @@ TEST(t_dlt_daemon_context_del, abnormal)
691691
TEST(t_dlt_daemon_context_del, nullpointer)
692692
{
693693
DltDaemon daemon;
694-
DltDaemonContext *daecontext;
694+
DltDaemonContext daecontext;
695695

696696
//NULL-Pointer
697697
EXPECT_GE(-1, dlt_daemon_context_del(NULL, NULL, 0));
698-
EXPECT_GE(-1, dlt_daemon_context_del(NULL, daecontext, 0));
698+
EXPECT_GE(-1, dlt_daemon_context_del(NULL, &daecontext, 0));
699699
EXPECT_GE(-1, dlt_daemon_context_del(&daemon, NULL, 0));
700700
}
701701
/* End Method: dlt_daemon_common::dlt_daemon_context_del */
@@ -1155,11 +1155,11 @@ TEST(t_dlt_daemon_user_send_log_level, abnormal)
11551155
TEST(t_dlt_daemon_user_send_log_level, nullpointer)
11561156
{
11571157
DltDaemon daemon;
1158-
DltDaemonContext *daecontext;
1158+
DltDaemonContext daecontext;
11591159

11601160
// NULL-Pointer
11611161
EXPECT_GE(-1, dlt_daemon_user_send_log_level(NULL, NULL, 0));
1162-
EXPECT_GE(-1, dlt_daemon_user_send_log_level(NULL, daecontext, 0));
1162+
EXPECT_GE(-1, dlt_daemon_user_send_log_level(NULL, &daecontext, 0));
11631163
EXPECT_GE(-1, dlt_daemon_user_send_log_level(&daemon, NULL, 0));
11641164
}
11651165
/* End Method: dlt_daemon_common::dlt_daemon_user_send_log_level */
@@ -1171,11 +1171,11 @@ TEST(t_dlt_daemon_user_send_log_level, nullpointer)
11711171
TEST(t_dlt_daemon_user_send_log_state, normal)
11721172
{
11731173
DltDaemon daemon;
1174-
ID4 apid = "TES";
1175-
ID4 ctid = "CON";
1176-
char desc[255] = "TEST dlt_daemon_context_add";
1177-
DltDaemonContext *daecontext;
1178-
DltDaemonApplication *app;
1174+
// ID4 apid = "TES";
1175+
// ID4 ctid = "CON";
1176+
// char desc[255] = "TEST dlt_daemon_context_add";
1177+
// DltDaemonContext *daecontext;
1178+
// DltDaemonApplication *app;
11791179
pid_t pid = 18166;
11801180
char filename[DLT_DAEMON_COMMON_TEXTBUFSIZE+1];
11811181
snprintf(filename,DLT_DAEMON_COMMON_TEXTBUFSIZE,"%s/dlt%d",DLT_USER_DIR,pid);
@@ -1241,10 +1241,10 @@ TEST(t_dlt_daemon_user_send_log_state, abnormal)
12411241
TEST(t_dlt_daemon_user_send_log_state, nullpointer)
12421242
{
12431243
DltDaemon daemon;
1244-
DltDaemonApplication *app;
1244+
DltDaemonApplication app;
12451245

12461246
EXPECT_GE(0, dlt_daemon_user_send_log_state(NULL, NULL, 0));
1247-
EXPECT_GE(0, dlt_daemon_user_send_log_state(NULL, app, 0));
1247+
EXPECT_GE(0, dlt_daemon_user_send_log_state(NULL, &app, 0));
12481248
EXPECT_GE(0, dlt_daemon_user_send_log_state(&daemon, NULL, 0));
12491249
}
12501250
/* End Method: dlt_daemon_common::dlt_daemon_user_send_log_state */

tests/gtest_dlt_user.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ int dlt_nonverbose_mode(void);
141141
#endif
142142

143143
#ifndef UINT64_MAX
144-
#define UINT64_MAX 18446744073709551615
144+
#define UINT64_MAX 18446744073709551615UL
145145
#endif
146146

147147
#ifndef INT8_MIN
@@ -157,7 +157,7 @@ int dlt_nonverbose_mode(void);
157157
#endif
158158

159159
#ifndef INT64_MIN
160-
#define INT64_MIN -9223372036854775808
160+
#define INT64_MIN -9223372036854775807
161161
#endif
162162

163163
#ifndef INT8_MAX

tests/testfile.dlt

100755100644
File mode changed.

testscripts/CMakeLists.txt

100755100644
File mode changed.

testscripts/Meego/dlt-daemon.cmake

100755100644
File mode changed.

testscripts/Ubuntu/dlt-daemon.cmake

100755100644
File mode changed.

0 commit comments

Comments
 (0)