update generated cfg tests (aca16e3
)
This commit is contained in:
parent
8cff60b461
commit
3af7aef3f0
|
@ -8885,17 +8885,17 @@ void test___swab__arg1__notnull() {
|
||||||
_swab(NULL, arg2, arg3);
|
_swab(NULL, arg2, arg3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void test___swab__arg1__notuninit() {
|
||||||
|
int x[10];
|
||||||
|
// cppcheck-suppress uninitvar
|
||||||
|
_swab(x, arg2, arg3);
|
||||||
|
}
|
||||||
|
|
||||||
void test___swab__arg2__notnull() {
|
void test___swab__arg2__notnull() {
|
||||||
// cppcheck-suppress nullPointer
|
// cppcheck-suppress nullPointer
|
||||||
_swab(arg1, NULL, arg3);
|
_swab(arg1, NULL, arg3);
|
||||||
}
|
}
|
||||||
|
|
||||||
void test___swab__arg2__notuninit() {
|
|
||||||
int x[10];
|
|
||||||
// cppcheck-suppress uninitvar
|
|
||||||
_swab(arg1, x, arg3);
|
|
||||||
}
|
|
||||||
|
|
||||||
void test___swab__arg3__notbool() {
|
void test___swab__arg3__notbool() {
|
||||||
// cppcheck-suppress invalidFunctionArgBool
|
// cppcheck-suppress invalidFunctionArgBool
|
||||||
_swab(arg1, arg2, !x);
|
_swab(arg1, arg2, !x);
|
||||||
|
|
Loading…
Reference in New Issue