2008-10-26 08:55:15 +01:00
|
|
|
/*
|
|
|
|
* c++check - c/c++ syntax checking
|
|
|
|
* Copyright (C) 2007 Daniel Marjamäki
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/
|
|
|
|
*/
|
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 );
|
2008-11-02 17:29:36 +01:00
|
|
|
TEST_CASE( bitop1 );
|
|
|
|
TEST_CASE( bitop2 );
|
2008-10-13 08:42:40 +02:00
|
|
|
}
|
|
|
|
|
2008-08-28 08:36:30 +02:00
|
|
|
void check( const char code[] )
|
|
|
|
{
|
|
|
|
// Tokenize..
|
|
|
|
tokens = tokens_back = NULL;
|
2008-11-09 08:19:53 +01:00
|
|
|
std::istringstream istr(code);
|
|
|
|
Tokenizer tokenizer;
|
|
|
|
tokenizer.TokenizeCode( istr );
|
2008-08-28 08:36:30 +02:00
|
|
|
|
|
|
|
// Fill function list
|
|
|
|
FillFunctionList(0);
|
|
|
|
|
|
|
|
// Clear the error buffer..
|
|
|
|
errout.str("");
|
|
|
|
|
|
|
|
// Check for memory leaks..
|
2008-11-11 07:42:09 +01:00
|
|
|
ShowAll = true;
|
2008-11-12 22:34:47 +01:00
|
|
|
CheckOther checkOther( &tokenizer );
|
2008-11-11 07:42:09 +01:00
|
|
|
checkOther.CheckCharVariable();
|
2008-11-03 08:54:59 +01:00
|
|
|
|
2008-11-09 08:19:53 +01:00
|
|
|
tokenizer.DeallocateTokens();
|
2008-08-28 08:36:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
2008-11-02 17:29:36 +01:00
|
|
|
void bitop1()
|
2008-09-16 07:57:57 +02:00
|
|
|
{
|
|
|
|
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-11-02 17:29:36 +01:00
|
|
|
|
|
|
|
void bitop2()
|
|
|
|
{
|
|
|
|
check( "void foo()\n"
|
|
|
|
"{\n"
|
|
|
|
" char ch;\n"
|
|
|
|
" func(&ch);\n"
|
|
|
|
"}\n" );
|
|
|
|
ASSERT_EQUALS( std::string(""), 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
|
|
|
|