update generated cfg tests (aca16e3)

This commit is contained in:
Daniel Marjamäki 2018-03-19 16:25:44 +01:00
parent 8cff60b461
commit 3af7aef3f0
1 changed files with 6 additions and 6 deletions

View File

@ -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);