cppcheck/test/cfg/generated-cfg-tests-avr.cpp

624 lines
12 KiB
C++
Raw Normal View History

2018-03-18 13:03:19 +01:00
// auto generated tests from cfg/avr.cfg
//
// Generated by command:
// ./generate_cfg_tests cfg/avr.cfg > generated-cfg-tests-avr.cpp
//
// Recommended cppcheck command line:
// $ cppcheck --enable=warning,information --inline-suppr --platform=unix64 generated-cfg-tests-avr.cpp
2018-03-18 13:03:19 +01:00
// => 'unmatched suppression' warnings are false negatives.
//
void test__toascii__noreturn() {
int x = 1;
if (cond) { x=100; toascii(arg1); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__toascii__leakignore() {
char *p = strdup(str);
toascii(p);
// cppcheck-suppress memleak
}
void test__vfprintf_P__noreturn() {
int x = 1;
if (cond) { x=100; vfprintf_P(arg1, arg2); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__vfprintf_P__leakignore() {
char *p = strdup(str);
vfprintf_P(p, arg2);
// cppcheck-suppress memleak
}
void test__vfprintf_P__arg1__notnull() {
const char *p = NULL;
2018-03-18 13:03:19 +01:00
// cppcheck-suppress nullPointer
vfprintf_P(p, arg2);
2018-03-18 13:03:19 +01:00
}
void test__vfprintf_P__arg1__notuninit() {
int x[10];
// cppcheck-suppress uninitvar
vfprintf_P(x, arg2);
}
void test__printf_P__noreturn() {
int x = 1;
if (cond) { x=100; printf_P(arg1); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__printf_P__leakignore() {
char *p = strdup(str);
printf_P(p);
// cppcheck-suppress memleak
}
void test__sprintf_P__noreturn() {
int x = 1;
if (cond) { x=100; sprintf_P(arg1, arg2); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__sprintf_P__leakignore() {
char *p = strdup(str);
sprintf_P(p, arg2);
// cppcheck-suppress memleak
}
void test__snprintf_P__noreturn() {
int x = 1;
if (cond) { x=100; snprintf_P(arg1, arg2, arg3); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__snprintf_P__leakignore() {
char *p = strdup(str);
snprintf_P(p, arg2, arg3);
// cppcheck-suppress memleak
}
void test__vsprintf_P__noreturn() {
int x = 1;
if (cond) { x=100; vsprintf_P(arg1, arg2); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__vsprintf_P__leakignore() {
char *p = strdup(str);
vsprintf_P(p, arg2);
// cppcheck-suppress memleak
}
void test__vsnprintf_P__noreturn() {
int x = 1;
if (cond) { x=100; vsnprintf_P(arg1, arg2, arg3); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__vsnprintf_P__leakignore() {
char *p = strdup(str);
vsnprintf_P(p, arg2, arg3);
// cppcheck-suppress memleak
}
void test__fprintf_P__noreturn() {
int x = 1;
if (cond) { x=100; fprintf_P(arg1, arg2); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__fprintf_P__leakignore() {
char *p = strdup(str);
fprintf_P(p, arg2);
// cppcheck-suppress memleak
}
void test__fprintf_P__arg1__notnull() {
const char *p = NULL;
2018-03-18 13:03:19 +01:00
// cppcheck-suppress nullPointer
fprintf_P(p, arg2);
2018-03-18 13:03:19 +01:00
}
void test__fprintf_P__arg1__notuninit() {
int x[10];
// cppcheck-suppress uninitvar
fprintf_P(x, arg2);
}
void test__fputs_P__noreturn() {
int x = 1;
if (cond) { x=100; fputs_P(arg1, arg2); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__fputs_P__leakignore() {
char *p = strdup(str);
fputs_P(p, arg2);
// cppcheck-suppress memleak
}
void test__fputs_P__arg1__notnull() {
const char *p = NULL;
2018-03-18 13:03:19 +01:00
// cppcheck-suppress nullPointer
fputs_P(p, arg2);
2018-03-18 13:03:19 +01:00
}
void test__fputs_P__arg1__notuninit() {
int x[10];
// cppcheck-suppress uninitvar
fputs_P(x, arg2);
}
void test__fputs_P__arg2__notnull() {
const char *p = NULL;
2018-03-18 13:03:19 +01:00
// cppcheck-suppress nullPointer
fputs_P(arg1, p);
2018-03-18 13:03:19 +01:00
}
void test__fputs_P__arg2__notuninit() {
int x[10];
// cppcheck-suppress uninitvar
fputs_P(arg1, x);
}
void test__puts_P__noreturn() {
int x = 1;
if (cond) { x=100; puts_P(arg1); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__puts_P__leakignore() {
char *p = strdup(str);
puts_P(p);
// cppcheck-suppress memleak
}
void test__puts_P__arg1__notbool() {
// cppcheck-suppress invalidFunctionArgBool
puts_P(!x);
}
void test__puts_P__arg1__notnull() {
const char *p = NULL;
2018-03-18 13:03:19 +01:00
// cppcheck-suppress nullPointer
puts_P(p);
2018-03-18 13:03:19 +01:00
}
void test__puts_P__arg1__notuninit() {
int x[10];
// cppcheck-suppress uninitvar
puts_P(x);
}
void test__scanf_P__noreturn() {
int x = 1;
if (cond) { x=100; scanf_P(arg1, arg2); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__scanf_P__leakignore() {
char *p = strdup(str);
scanf_P(p, arg2);
// cppcheck-suppress memleak
}
void test__scanf_P__arg1__notuninit() {
int x;
// cppcheck-suppress uninitvar
scanf_P(x, arg2);
}
void test__fscanf_P__noreturn() {
int x = 1;
if (cond) { x=100; fscanf_P(arg1, arg2); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__fscanf_P__leakignore() {
char *p = strdup(str);
fscanf_P(p, arg2);
// cppcheck-suppress memleak
}
void test__fscanf_P__arg1__notuninit() {
int x;
// cppcheck-suppress uninitvar
fscanf_P(x, arg2);
}
void test__sscanf_P__noreturn() {
int x = 1;
if (cond) { x=100; sscanf_P(arg1, arg2); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__sscanf_P__leakignore() {
char *p = strdup(str);
sscanf_P(p, arg2);
// cppcheck-suppress memleak
}
void test__fdevopen__noreturn() {
int x = 1;
if (cond) { x=100; fdevopen(arg1, arg2); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__fdevopen__arg1__notnull() {
const char *p = NULL;
2018-03-18 13:03:19 +01:00
// cppcheck-suppress nullPointer
fdevopen(p, arg2);
2018-03-18 13:03:19 +01:00
}
void test__fdevopen__arg1__notuninit() {
int x[10];
// cppcheck-suppress uninitvar
fdevopen(x, arg2);
}
void test__fdevopen__arg2__notnull() {
const char *p = NULL;
2018-03-18 13:03:19 +01:00
// cppcheck-suppress nullPointer
fdevopen(arg1, p);
2018-03-18 13:03:19 +01:00
}
void test__fdevopen__arg2__notuninit() {
int x[10];
// cppcheck-suppress uninitvar
fdevopen(arg1, x);
}
void test__ltoa__noreturn() {
int x = 1;
if (cond) { x=100; ltoa(arg1, arg2, arg3); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__ltoa__leakignore() {
char *p = strdup(str);
ltoa(p, arg2, arg3);
// cppcheck-suppress memleak
}
void test__ltoa__arg1__notuninit() {
int x;
// cppcheck-suppress uninitvar
ltoa(x, arg2, arg3);
}
void test__ltoa__arg2__notnull() {
const char *p = NULL;
2018-03-18 13:03:19 +01:00
// cppcheck-suppress nullPointer
ltoa(arg1, p, arg3);
2018-03-18 13:03:19 +01:00
}
void test__ltoa__arg2__notuninit() {
int x[10];
// cppcheck-suppress uninitvar
ltoa(arg1, x, arg3);
}
void test__ltoa__arg3__notnull() {
const char *p = NULL;
2018-03-18 13:03:19 +01:00
// cppcheck-suppress nullPointer
ltoa(arg1, arg2, p);
2018-03-18 13:03:19 +01:00
}
void test__ltoa__arg3__notuninit() {
int x[10];
// cppcheck-suppress uninitvar
ltoa(arg1, arg2, x);
}
void test__utoa__noreturn() {
int x = 1;
if (cond) { x=100; utoa(arg1, arg2, arg3); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__utoa__leakignore() {
char *p = strdup(str);
utoa(p, arg2, arg3);
// cppcheck-suppress memleak
}
void test__utoa__arg1__notuninit() {
int x;
// cppcheck-suppress uninitvar
utoa(x, arg2, arg3);
}
void test__utoa__arg2__notnull() {
const char *p = NULL;
2018-03-18 13:03:19 +01:00
// cppcheck-suppress nullPointer
utoa(arg1, p, arg3);
2018-03-18 13:03:19 +01:00
}
void test__utoa__arg2__notuninit() {
int x[10];
// cppcheck-suppress uninitvar
utoa(arg1, x, arg3);
}
void test__utoa__arg3__notnull() {
const char *p = NULL;
2018-03-18 13:03:19 +01:00
// cppcheck-suppress nullPointer
utoa(arg1, arg2, p);
2018-03-18 13:03:19 +01:00
}
void test__utoa__arg3__notuninit() {
int x[10];
// cppcheck-suppress uninitvar
utoa(arg1, arg2, x);
}
void test__ultoa__noreturn() {
int x = 1;
if (cond) { x=100; ultoa(arg1, arg2, arg3); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__ultoa__leakignore() {
char *p = strdup(str);
ultoa(p, arg2, arg3);
// cppcheck-suppress memleak
}
void test__ultoa__arg1__notuninit() {
int x;
// cppcheck-suppress uninitvar
ultoa(x, arg2, arg3);
}
void test__ultoa__arg2__notnull() {
const char *p = NULL;
2018-03-18 13:03:19 +01:00
// cppcheck-suppress nullPointer
ultoa(arg1, p, arg3);
2018-03-18 13:03:19 +01:00
}
void test__ultoa__arg2__notuninit() {
int x[10];
// cppcheck-suppress uninitvar
ultoa(arg1, x, arg3);
}
void test__ultoa__arg3__notnull() {
const char *p = NULL;
2018-03-18 13:03:19 +01:00
// cppcheck-suppress nullPointer
ultoa(arg1, arg2, p);
2018-03-18 13:03:19 +01:00
}
void test__ultoa__arg3__notuninit() {
int x[10];
// cppcheck-suppress uninitvar
ultoa(arg1, arg2, x);
}
void test__random__noreturn() {
int x = 1;
if (cond) { x=100; random(); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__random__leakignore() {
char *p = strdup(str);
random();
// cppcheck-suppress memleak
}
void test__random_r__noreturn() {
int x = 1;
if (cond) { x=100; random_r(arg1); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__random_r__leakignore() {
char *p = strdup(str);
random_r(p);
// cppcheck-suppress memleak
}
void test__random_r__arg1__notnull() {
const char *p = NULL;
2018-03-18 13:03:19 +01:00
// cppcheck-suppress nullPointer
random_r(p);
2018-03-18 13:03:19 +01:00
}
void test__srandom__noreturn() {
int x = 1;
if (cond) { x=100; srandom(arg1); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__srandom__leakignore() {
char *p = strdup(str);
srandom(p);
// cppcheck-suppress memleak
}
void test__srandom__arg1__notuninit() {
int x;
// cppcheck-suppress uninitvar
srandom(x);
}
void test__dtostre__noreturn() {
int x = 1;
if (cond) { x=100; dtostre(arg1, arg2); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__dtostre__leakignore() {
char *p = strdup(str);
dtostre(p, arg2);
// cppcheck-suppress memleak
}
void test__dtostre__arg1__notuninit() {
int x;
// cppcheck-suppress uninitvar
dtostre(x, arg2);
}
void test__dtostre__arg2__notnull() {
const char *p = NULL;
2018-03-18 13:03:19 +01:00
// cppcheck-suppress nullPointer
dtostre(arg1, p);
2018-03-18 13:03:19 +01:00
}
void test__dtostrf__noreturn() {
int x = 1;
if (cond) { x=100; dtostrf(arg1, arg2, arg3, arg4); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__dtostrf__leakignore() {
char *p = strdup(str);
dtostrf(p, arg2, arg3, arg4);
// cppcheck-suppress memleak
}
void test__dtostrf__arg1__notuninit() {
int x;
// cppcheck-suppress uninitvar
dtostrf(x, arg2, arg3, arg4);
}
void test__dtostrf__arg2__notuninit() {
int x;
// cppcheck-suppress uninitvar
dtostrf(arg1, x, arg3, arg4);
}
void test__dtostrf__arg3__notuninit() {
int x;
// cppcheck-suppress uninitvar
dtostrf(arg1, arg2, x, arg4);
}
void test__dtostrf__arg4__notnull() {
const char *p = NULL;
2018-03-18 13:03:19 +01:00
// cppcheck-suppress nullPointer
dtostrf(arg1, arg2, arg3, p);
2018-03-18 13:03:19 +01:00
}
void test__ffs__noreturn() {
int x = 1;
if (cond) { x=100; ffs(arg1); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__ffs__leakignore() {
char *p = strdup(str);
ffs(p);
// cppcheck-suppress memleak
}
void test__ffs__arg1__notuninit() {
int x;
// cppcheck-suppress uninitvar
ffs(x);
}
void test__ffsl__noreturn() {
int x = 1;
if (cond) { x=100; ffsl(arg1); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__ffsl__leakignore() {
char *p = strdup(str);
ffsl(p);
// cppcheck-suppress memleak
}
void test__ffsl__arg1__notuninit() {
int x;
// cppcheck-suppress uninitvar
ffsl(x);
}
void test__ffsll__noreturn() {
int x = 1;
if (cond) { x=100; ffsll(arg1); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__ffsll__leakignore() {
char *p = strdup(str);
ffsll(p);
// cppcheck-suppress memleak
}
void test__ffsll__arg1__notuninit() {
int x;
// cppcheck-suppress uninitvar
ffsll(x);
}
void test__memccpy__noreturn() {
int x = 1;
if (cond) { x=100; memccpy(arg1, arg2, arg3, arg4); }
2018-03-18 13:03:19 +01:00
// cppcheck-suppress shiftTooManyBits
x = 1 << x;
}
void test__memccpy__leakignore() {
char *p = strdup(str);
memccpy(p, arg2, arg3, arg4);
// cppcheck-suppress memleak
}
void test__memccpy__arg1__notnull() {
const char *p = NULL;
2018-03-18 13:03:19 +01:00
// cppcheck-suppress nullPointer
memccpy(p, arg2, arg3, arg4);
2018-03-18 13:03:19 +01:00
}
void test__memccpy__arg2__notuninit() {
int x;
// cppcheck-suppress uninitvar
memccpy(arg1, x, arg3, arg4);
}
void test__memccpy__arg3__notuninit() {
int x;
// cppcheck-suppress uninitvar
memccpy(arg1, arg2, x, arg4);
}
void test__memccpy__arg4__notuninit() {
int x;
// cppcheck-suppress uninitvar
memccpy(arg1, arg2, arg3, x);
}