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);
|
||||
}
|
||||
|
||||
void test___swab__arg1__notuninit() {
|
||||
int x[10];
|
||||
// cppcheck-suppress uninitvar
|
||||
_swab(x, arg2, arg3);
|
||||
}
|
||||
|
||||
void test___swab__arg2__notnull() {
|
||||
// cppcheck-suppress nullPointer
|
||||
_swab(arg1, NULL, arg3);
|
||||
}
|
||||
|
||||
void test___swab__arg2__notuninit() {
|
||||
int x[10];
|
||||
// cppcheck-suppress uninitvar
|
||||
_swab(arg1, x, arg3);
|
||||
}
|
||||
|
||||
void test___swab__arg3__notbool() {
|
||||
// cppcheck-suppress invalidFunctionArgBool
|
||||
_swab(arg1, arg2, !x);
|
||||
|
|
Loading…
Reference in New Issue