Cleanup of old testcases
This commit is contained in:
parent
c66846353c
commit
6080808878
|
@ -1,10 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
void f()
|
|
||||||
{
|
|
||||||
if (a=b)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
|
|
||||||
void foo(int i)
|
|
||||||
{
|
|
||||||
if (ab)
|
|
||||||
{
|
|
||||||
i = 4;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,28 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class ITEM
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
void CountIO( int &noIn, int &noOut ) const;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
void ITEM::CountIO( int &noIn, int &noOut ) const
|
|
||||||
{
|
|
||||||
noIn = 0;
|
|
||||||
noOut = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
[testfunc4\testfunc4.cpp:5]: Invalid radix in call to strtol or strtoul. Must be 0 or 2-36
|
|
|
@ -1,7 +0,0 @@
|
||||||
|
|
||||||
void f()
|
|
||||||
{
|
|
||||||
// The parameter "1" is invalid!
|
|
||||||
strtoul(str, NULL, 1);
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void f()
|
|
||||||
{
|
|
||||||
if (condition)
|
|
||||||
flag = true;
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
void f()
|
|
||||||
{
|
|
||||||
if (ab);
|
|
||||||
cd = ef;
|
|
||||||
}
|
|
|
@ -1,10 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
void f()
|
|
||||||
{
|
|
||||||
a = b;
|
|
||||||
if ( a != b )
|
|
||||||
{
|
|
||||||
// Something is very wrong
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,11 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
void f()
|
|
||||||
{
|
|
||||||
a = b;
|
|
||||||
#endif
|
|
||||||
if (a == b)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,14 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
void f()
|
|
||||||
{
|
|
||||||
doc = cur->doc;
|
|
||||||
if (doc != NULL)
|
|
||||||
dict = doc->dict;
|
|
||||||
else
|
|
||||||
dict = NULL;
|
|
||||||
if (dict != NULL) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,9 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
void f()
|
|
||||||
{
|
|
||||||
if ( strcmp(str, "abc") == 0 )
|
|
||||||
abc = true;
|
|
||||||
else
|
|
||||||
abc = false;
|
|
||||||
}
|
|
|
@ -1,8 +0,0 @@
|
||||||
|
|
||||||
@ECHO OFF
|
|
||||||
|
|
||||||
FOR /D %%s IN (test*) DO (
|
|
||||||
cppcheck %%s\%%s.cpp 2> %%s\err.msg
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue