2008-08-28 08:36:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "tokenize.h"
|
|
|
|
#include "CommonCheck.h"
|
|
|
|
#include "CheckOther.h"
|
2008-10-13 08:42:40 +02:00
|
|
|
#include "testsuite.h"
|
2008-08-28 08:36:30 +02:00
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
extern std::ostringstream errout;
|
|
|
|
extern bool ShowAll;
|
|
|
|
|
2008-10-13 08:42:40 +02:00
|
|
|
class TestCharVar : public TestFixture
|
2008-08-28 08:36:30 +02:00
|
|
|
{
|
2008-10-13 08:42:40 +02:00
|
|
|
public:
|
|
|
|
TestCharVar() : TestFixture("TestCharVar")
|
|
|
|
{ }
|
|
|
|
|
2008-08-28 08:36:30 +02:00
|
|
|
private:
|
2008-10-13 08:42:40 +02:00
|
|
|
void run()
|
|
|
|
{
|
|
|
|
TEST_CASE( array_index );
|
|
|
|
TEST_CASE( bitop );
|
|
|
|
}
|
|
|
|
|
2008-08-28 08:36:30 +02:00
|
|
|
void check( const char code[] )
|
|
|
|
{
|
|
|
|
// Tokenize..
|
|
|
|
tokens = tokens_back = NULL;
|
|
|
|
std::istringstream istr(code);
|
|
|
|
TokenizeCode( istr );
|
|
|
|
|
|
|
|
// Fill function list
|
|
|
|
FillFunctionList(0);
|
|
|
|
|
|
|
|
// Clear the error buffer..
|
|
|
|
errout.str("");
|
|
|
|
|
|
|
|
// Check for memory leaks..
|
|
|
|
ShowAll = true;
|
|
|
|
CheckCharVariable();
|
|
|
|
}
|
|
|
|
|
|
|
|
void array_index()
|
|
|
|
{
|
|
|
|
check( "void foo()\n"
|
|
|
|
"{\n"
|
|
|
|
" unsigned char ch = 0x80;\n"
|
|
|
|
" buf[ch] = 0;\n"
|
|
|
|
"}\n" );
|
|
|
|
ASSERT_EQUALS( std::string(""), errout.str() );
|
|
|
|
|
|
|
|
check( "void foo()\n"
|
|
|
|
"{\n"
|
|
|
|
" char ch = 0x80;\n"
|
|
|
|
" buf[ch] = 0;\n"
|
|
|
|
"}\n" );
|
|
|
|
ASSERT_EQUALS( std::string("[test.cpp:4]: Warning - using char variable as array index\n"), errout.str() );
|
2008-09-16 07:57:57 +02:00
|
|
|
|
|
|
|
check( "void foo(char ch)\n"
|
|
|
|
"{\n"
|
|
|
|
" buf[ch] = 0;\n"
|
|
|
|
"}\n" );
|
|
|
|
ASSERT_EQUALS( std::string("[test.cpp:3]: Warning - using char variable as array index\n"), errout.str() );
|
2008-08-28 08:36:30 +02:00
|
|
|
}
|
|
|
|
|
2008-09-16 07:57:57 +02:00
|
|
|
|
|
|
|
void bitop()
|
|
|
|
{
|
|
|
|
check( "void foo()\n"
|
|
|
|
"{\n"
|
|
|
|
" char ch;\n"
|
|
|
|
" result = a | ch;\n"
|
|
|
|
"}\n" );
|
|
|
|
ASSERT_EQUALS( std::string("[test.cpp:4]: Warning - using char variable in bit operation\n"), errout.str() );
|
|
|
|
}
|
2008-08-28 08:36:30 +02:00
|
|
|
};
|
|
|
|
|
2008-10-16 19:22:26 +02:00
|
|
|
REGISTER_TEST( TestCharVar )
|
2008-08-28 08:36:30 +02:00
|
|
|
|