2008-12-19 22:15:18 +01:00
/*
2009-01-21 21:04:20 +01:00
* Cppcheck - A tool for static C / C + + code analysis
2014-02-15 07:45:39 +01:00
* Copyright ( C ) 2007 - 2014 Daniel Marjamäki and Cppcheck team .
2008-12-19 22:15:18 +01:00
*
* 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
2009-09-27 17:08:31 +02:00
* along with this program . If not , see < http : //www.gnu.org/licenses/>.
2008-12-19 22:15:18 +01:00
*/
2011-02-19 09:33:29 +01:00
# include "preprocessor.h"
2009-10-25 12:49:06 +01:00
# include "tokenize.h"
2013-12-31 12:30:17 +01:00
# include "symboldatabase.h"
2009-10-25 12:49:06 +01:00
# include "checkother.h"
2008-12-19 22:15:18 +01:00
# include "testsuite.h"
2014-08-27 09:42:09 +02:00
# include "testutils.h"
2008-12-19 22:15:18 +01:00
# include <sstream>
2013-12-31 12:30:17 +01:00
# include <tinyxml2.h>
2008-12-19 22:15:18 +01:00
extern std : : ostringstream errout ;
2011-10-13 20:53:06 +02:00
class TestOther : public TestFixture {
2008-12-19 22:15:18 +01:00
public :
2013-08-07 16:27:37 +02:00
TestOther ( ) : TestFixture ( " TestOther " ) {
}
2008-12-19 22:15:18 +01:00
private :
2014-09-27 21:31:04 +02:00
Settings settings_std ;
2008-12-19 22:15:18 +01:00
2011-10-13 20:53:06 +02:00
void run ( ) {
2014-09-27 21:31:04 +02:00
LOAD_LIB_2 ( settings_std . library , " std.cfg " ) ;
2012-12-28 20:16:51 +01:00
TEST_CASE ( emptyBrackets ) ;
2011-07-28 08:12:21 +02:00
2009-03-28 07:49:47 +01:00
TEST_CASE ( zeroDiv1 ) ;
TEST_CASE ( zeroDiv2 ) ;
2009-08-23 05:34:19 +02:00
TEST_CASE ( zeroDiv3 ) ;
2009-08-30 21:02:09 +02:00
TEST_CASE ( zeroDiv4 ) ;
2011-08-24 02:12:29 +02:00
TEST_CASE ( zeroDiv5 ) ;
2011-09-10 16:12:53 +02:00
TEST_CASE ( zeroDiv6 ) ;
2013-07-28 12:32:18 +02:00
TEST_CASE ( zeroDiv7 ) ; // #4930
2014-03-20 16:12:58 +01:00
TEST_CASE ( zeroDiv8 ) ;
2009-03-28 07:49:47 +01:00
2013-09-07 07:40:10 +02:00
TEST_CASE ( zeroDivCond ) ; // division by zero / useless condition
2013-06-10 08:13:08 +02:00
TEST_CASE ( nanInArithmeticExpression ) ;
2013-12-23 10:06:45 +01:00
TEST_CASE ( invalidFunctionUsage1 ) ;
2009-03-24 20:24:03 +01:00
TEST_CASE ( varScope1 ) ;
2009-03-24 20:59:56 +01:00
TEST_CASE ( varScope2 ) ;
2009-05-27 19:38:26 +02:00
TEST_CASE ( varScope3 ) ;
2009-06-12 16:17:51 +02:00
TEST_CASE ( varScope4 ) ;
2009-08-16 21:12:57 +02:00
TEST_CASE ( varScope5 ) ;
2009-09-17 21:05:12 +02:00
TEST_CASE ( varScope6 ) ;
2009-10-06 17:45:28 +02:00
TEST_CASE ( varScope7 ) ;
2010-01-21 18:50:56 +01:00
TEST_CASE ( varScope8 ) ;
2011-10-05 20:30:36 +02:00
TEST_CASE ( varScope9 ) ; // classes may have extra side-effects
2010-08-26 21:57:48 +02:00
TEST_CASE ( varScope10 ) ; // Undefined macro FOR
2011-10-05 20:30:36 +02:00
TEST_CASE ( varScope11 ) ; // #2475 - struct initialization is not inner scope
2012-05-24 15:34:59 +02:00
TEST_CASE ( varScope12 ) ;
TEST_CASE ( varScope13 ) ; // variable usage in inner loop
2012-07-29 15:39:43 +02:00
TEST_CASE ( varScope14 ) ;
2013-02-12 21:16:57 +01:00
TEST_CASE ( varScope15 ) ; // #4573 if-else-if
2013-03-03 19:35:33 +01:00
TEST_CASE ( varScope16 ) ;
2013-03-15 13:00:51 +01:00
TEST_CASE ( varScope17 ) ;
2013-03-23 11:28:33 +01:00
TEST_CASE ( varScope18 ) ;
2013-08-31 14:22:06 +02:00
TEST_CASE ( varScope19 ) ; // Ticket #4994
2013-10-19 17:27:02 +02:00
TEST_CASE ( varScope20 ) ; // Ticket #5103
2014-03-17 12:34:39 +01:00
TEST_CASE ( varScope21 ) ; // Ticket #5382
2014-04-17 21:32:56 +02:00
TEST_CASE ( varScope22 ) ; // Ticket #5684
2014-09-10 20:56:34 +02:00
TEST_CASE ( varScope23 ) ; // Ticket #6154
2009-03-27 17:19:34 +01:00
2009-06-18 22:26:21 +02:00
TEST_CASE ( oldStylePointerCast ) ;
2012-02-26 11:56:32 +01:00
TEST_CASE ( invalidPointerCast ) ;
2009-07-25 00:36:15 +02:00
2009-10-04 10:05:58 +02:00
TEST_CASE ( passedByValue ) ;
2010-04-02 02:19:38 +02:00
2013-10-09 16:48:46 +02:00
TEST_CASE ( mathfunctionCall_fmod ) ;
TEST_CASE ( mathfunctionCall_sqrt ) ;
TEST_CASE ( mathfunctionCall_log ) ;
TEST_CASE ( mathfunctionCall_acos ) ;
TEST_CASE ( mathfunctionCall_asin ) ;
TEST_CASE ( mathfunctionCall_pow ) ;
TEST_CASE ( mathfunctionCall_atan2 ) ;
2014-09-07 11:37:58 +02:00
TEST_CASE ( mathfunctionCall_precision ) ;
2010-04-13 19:30:25 +02:00
2010-06-30 09:10:30 +02:00
TEST_CASE ( switchRedundantAssignmentTest ) ;
2012-08-22 14:40:57 +02:00
TEST_CASE ( switchRedundantOperationTest ) ;
2012-05-29 06:19:22 +02:00
TEST_CASE ( switchRedundantBitwiseOperationTest ) ;
2011-02-19 09:33:29 +01:00
TEST_CASE ( switchFallThroughCase ) ;
2011-12-07 18:20:52 +01:00
TEST_CASE ( unreachableCode ) ;
2010-08-14 15:15:12 +02:00
2012-12-07 21:27:32 +01:00
TEST_CASE ( suspiciousCase ) ;
2013-01-18 08:03:04 +01:00
TEST_CASE ( suspiciousEqualityComparison ) ;
2012-12-07 21:27:32 +01:00
2010-08-15 06:28:22 +02:00
TEST_CASE ( selfAssignment ) ;
2010-10-01 17:23:22 +02:00
TEST_CASE ( trac1132 ) ;
2011-03-20 09:55:26 +01:00
TEST_CASE ( testMisusedScopeObjectDoesNotPickFunction1 ) ;
TEST_CASE ( testMisusedScopeObjectDoesNotPickFunction2 ) ;
2010-10-01 17:23:22 +02:00
TEST_CASE ( testMisusedScopeObjectPicksClass ) ;
TEST_CASE ( testMisusedScopeObjectPicksStruct ) ;
TEST_CASE ( testMisusedScopeObjectDoesNotPickIf ) ;
TEST_CASE ( testMisusedScopeObjectDoesNotPickConstructorDeclaration ) ;
2010-10-02 10:43:12 +02:00
TEST_CASE ( testMisusedScopeObjectDoesNotPickFunctor ) ;
2010-10-02 14:59:04 +02:00
TEST_CASE ( testMisusedScopeObjectDoesNotPickLocalClassConstructors ) ;
2010-10-02 12:26:29 +02:00
TEST_CASE ( testMisusedScopeObjectDoesNotPickUsedObject ) ;
2010-12-25 08:43:52 +01:00
TEST_CASE ( testMisusedScopeObjectDoesNotPickPureC ) ;
2011-01-31 20:07:41 +01:00
TEST_CASE ( testMisusedScopeObjectDoesNotPickNestedClass ) ;
2013-07-22 07:25:53 +02:00
TEST_CASE ( testMisusedScopeObjectInConstructor ) ;
2013-10-22 19:37:11 +02:00
TEST_CASE ( testMisusedScopeObjectNoCodeAfter ) ;
2010-10-03 23:16:11 +02:00
TEST_CASE ( trac2071 ) ;
2010-10-13 11:31:41 +02:00
TEST_CASE ( trac2084 ) ;
2012-04-12 14:02:09 +02:00
TEST_CASE ( trac3693 ) ;
2011-07-17 04:06:23 +02:00
2011-01-06 11:31:58 +01:00
TEST_CASE ( memsetZeroBytes ) ;
2014-02-15 19:06:00 +01:00
TEST_CASE ( memsetInvalid2ndParam ) ;
2011-01-22 19:21:56 +01:00
2013-02-11 20:26:27 +01:00
TEST_CASE ( redundantGetAndSetUserId ) ;
2011-01-24 21:40:49 +01:00
TEST_CASE ( clarifyCalculation ) ;
2012-08-24 11:28:50 +02:00
TEST_CASE ( clarifyStatement ) ;
2011-02-08 19:49:29 +01:00
2011-04-09 23:05:27 +02:00
TEST_CASE ( duplicateBranch ) ;
2012-07-31 23:35:56 +02:00
TEST_CASE ( duplicateBranch1 ) ; // tests extracted by http://www.viva64.com/en/b/0149/ ( Comparison between PVS-Studio and cppcheck ): Errors detected in Quake 3: Arena by PVS-Studio: Fragement 2
2013-02-18 17:18:33 +01:00
TEST_CASE ( duplicateBranch2 ) ; // empty macro
2011-04-19 01:20:27 +02:00
TEST_CASE ( duplicateExpression1 ) ;
TEST_CASE ( duplicateExpression2 ) ; // ticket #2730
2011-11-10 21:49:14 +01:00
TEST_CASE ( duplicateExpression3 ) ; // ticket #3317
2011-12-01 17:46:33 +01:00
TEST_CASE ( duplicateExpression4 ) ; // ticket #3354 (++)
2012-05-17 07:26:57 +02:00
TEST_CASE ( duplicateExpression5 ) ; // ticket #3749 (macros with same values)
2013-03-14 19:11:29 +01:00
TEST_CASE ( duplicateExpression6 ) ; // ticket #4639
2011-04-26 07:45:27 +02:00
2011-08-07 01:23:09 +02:00
TEST_CASE ( checkSignOfUnsignedVariable ) ;
2012-08-21 12:28:02 +02:00
TEST_CASE ( checkSignOfPointer ) ;
2011-10-11 08:41:39 +02:00
TEST_CASE ( checkForSuspiciousSemicolon1 ) ;
TEST_CASE ( checkForSuspiciousSemicolon2 ) ;
2012-01-15 01:19:34 +01:00
2012-08-24 00:03:22 +02:00
TEST_CASE ( checkDoubleFree ) ;
2012-09-05 08:31:23 +02:00
TEST_CASE ( checkInvalidFree ) ;
2012-07-22 09:17:00 +02:00
TEST_CASE ( checkRedundantCopy ) ;
2012-08-22 15:44:20 +02:00
TEST_CASE ( checkNegativeShift ) ;
2014-09-10 17:02:18 +02:00
2012-08-24 11:28:50 +02:00
TEST_CASE ( incompleteArrayFill ) ;
2012-09-02 13:09:32 +02:00
TEST_CASE ( redundantVarAssignment ) ;
TEST_CASE ( redundantMemWrite ) ;
2013-01-13 12:02:10 +01:00
TEST_CASE ( varFuncNullUB ) ;
2013-02-17 17:33:32 +01:00
TEST_CASE ( checkPipeParameterSize ) ; // ticket #3521
2013-02-27 21:02:12 +01:00
TEST_CASE ( checkCastIntToCharAndBack ) ; // ticket #160
2013-03-11 17:04:30 +01:00
TEST_CASE ( checkSleepTimeIntervall )
2013-06-15 17:49:10 +02:00
TEST_CASE ( checkCommaSeparatedReturn ) ;
2013-09-26 07:07:48 +02:00
TEST_CASE ( checkComparisonFunctionIsAlwaysTrueOrFalse ) ;
2014-06-05 16:41:10 +02:00
2014-09-27 21:31:04 +02:00
TEST_CASE ( integerOverflow ) ; // #5895
TEST_CASE ( testReturnIgnoredReturnValue ) ;
2008-12-19 22:15:18 +01:00
}
2014-02-16 10:32:10 +01:00
void check ( const char code [ ] , const char * filename = nullptr , bool experimental = false , bool inconclusive = true , bool posix = false , bool runSimpleChecks = true , Settings * settings = 0 ) {
2010-12-01 18:00:55 +01:00
// Clear the error buffer..
errout . str ( " " ) ;
2013-08-06 11:11:59 +02:00
if ( ! settings ) {
static Settings _settings ;
settings = & _settings ;
}
settings - > addEnabled ( " style " ) ;
settings - > addEnabled ( " warning " ) ;
settings - > addEnabled ( " portability " ) ;
settings - > addEnabled ( " performance " ) ;
settings - > inconclusive = inconclusive ;
settings - > experimental = experimental ;
settings - > standards . posix = posix ;
2010-12-01 18:00:55 +01:00
2013-12-23 10:06:45 +01:00
if ( posix ) {
const char cfg [ ] = " <?xml version= \" 1.0 \" ?> \n "
" <def> \n "
2014-06-08 18:12:11 +02:00
" <function name= \" usleep \" > <arg nr= \" 1 \" ><valid>0:999999</valid></arg> </function> \n "
2013-12-23 10:06:45 +01:00
" </def> " ;
tinyxml2 : : XMLDocument xmldoc ;
xmldoc . Parse ( cfg , sizeof ( cfg ) ) ;
settings - > library . load ( xmldoc ) ;
}
2008-12-19 22:15:18 +01:00
// Tokenize..
2013-08-06 11:11:59 +02:00
Tokenizer tokenizer ( settings , this ) ;
2008-12-19 22:15:18 +01:00
std : : istringstream istr ( code ) ;
2010-12-25 08:43:52 +01:00
tokenizer . tokenize ( istr , filename ? filename : " test.cpp " ) ;
2008-12-19 22:15:18 +01:00
2010-04-21 08:38:25 +02:00
// Check..
2013-08-06 11:11:59 +02:00
CheckOther checkOther ( & tokenizer , settings , this ) ;
checkOther . runChecks ( & tokenizer , settings , this ) ;
2010-05-15 14:06:45 +02:00
2013-04-13 20:17:53 +02:00
if ( runSimpleChecks ) {
const std : : string str1 ( tokenizer . tokens ( ) - > stringifyList ( 0 , true ) ) ;
2013-12-30 17:45:28 +01:00
tokenizer . simplifyTokenList2 ( ) ;
2013-04-13 20:17:53 +02:00
const std : : string str2 ( tokenizer . tokens ( ) - > stringifyList ( 0 , true ) ) ;
if ( str1 ! = str2 )
2014-09-13 12:59:32 +02:00
warnUnsimplified ( str1 , str2 ) ;
2013-08-06 11:11:59 +02:00
checkOther . runSimplifiedChecks ( & tokenizer , settings , this ) ;
2013-04-13 20:17:53 +02:00
}
2008-12-19 22:15:18 +01:00
}
2014-02-16 10:32:10 +01:00
void check_preprocess_suppress ( const char precode [ ] , const char * filename = nullptr ) {
2011-02-19 09:33:29 +01:00
// Clear the error buffer..
errout . str ( " " ) ;
2014-02-16 10:32:10 +01:00
if ( filename = = nullptr )
2011-02-19 09:33:29 +01:00
filename = " test.cpp " ;
Settings settings ;
2013-03-03 11:41:59 +01:00
settings . addEnabled ( " warning " ) ;
2011-08-07 09:28:08 +02:00
settings . addEnabled ( " style " ) ;
2011-09-03 15:30:30 +02:00
settings . addEnabled ( " performance " ) ;
2011-04-10 15:55:08 +02:00
settings . experimental = true ;
2011-02-19 09:33:29 +01:00
// Preprocess file..
2012-01-06 08:01:50 +01:00
SimpleSuppressor logger ( settings , this ) ;
Preprocessor preprocessor ( & settings , & logger ) ;
2011-02-19 09:33:29 +01:00
std : : list < std : : string > configurations ;
std : : string filedata = " " ;
std : : istringstream fin ( precode ) ;
preprocessor . preprocess ( fin , filedata , configurations , filename , settings . _includePaths ) ;
2012-01-06 08:01:50 +01:00
const std : : string code = preprocessor . getcode ( filedata , " " , filename ) ;
2011-02-19 09:33:29 +01:00
// Tokenize..
Tokenizer tokenizer ( & settings , & logger ) ;
std : : istringstream istr ( code ) ;
tokenizer . tokenize ( istr , filename ) ;
// Check..
CheckOther checkOther ( & tokenizer , & settings , & logger ) ;
checkOther . checkSwitchCaseFallThrough ( ) ;
2011-02-19 20:02:28 +01:00
2014-09-01 10:13:03 +02:00
logger . reportUnmatchedSuppressions ( settings . nomsg . getUnmatchedLocalSuppressions ( filename , false ) ) ;
2011-02-19 09:33:29 +01:00
}
2009-03-27 17:19:34 +01:00
2012-12-28 20:16:51 +01:00
void emptyBrackets ( ) {
check ( " { \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2011-07-28 07:28:24 +02:00
2011-10-13 20:53:06 +02:00
void zeroDiv1 ( ) {
2013-04-13 20:17:53 +02:00
check ( " void foo() { \n "
" cout << 1. / 0; \n "
2009-03-28 07:49:47 +01:00
" } " ) ;
2013-04-13 20:17:53 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (error) Division by zero. \n " , errout . str ( ) ) ;
2009-03-28 07:49:47 +01:00
}
2011-10-13 20:53:06 +02:00
void zeroDiv2 ( ) {
2009-03-28 07:49:47 +01:00
check ( " void foo() \n "
" { \n "
" int sum = 0; \n "
" for(int i = 0; i < n; i ++) \n "
" { \n "
2012-12-06 19:19:22 +01:00
" sum += i; \n "
2009-03-28 07:49:47 +01:00
" } \n "
" cout<<b/sum; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2009-06-05 02:39:36 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2009-06-05 23:33:13 +02:00
}
2009-03-28 07:49:47 +01:00
2011-10-13 20:53:06 +02:00
void zeroDiv3 ( ) {
2009-08-23 05:34:19 +02:00
check ( " void f() \n "
" { \n "
2013-09-23 18:01:15 +02:00
" div_t divresult = div (1,0); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (error) Division by zero. \n " , errout . str ( ) ) ;
2013-09-29 11:13:49 +02:00
// #4929 - if there is a user function with the name "div" don't warn
check ( " void div(int a, int b); \n "
" void f() { \n "
" div (1,0); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-09-22 09:52:12 +02:00
}
2009-08-30 21:02:09 +02:00
2013-09-22 09:52:12 +02:00
void zeroDiv4 ( ) {
2009-08-30 21:02:09 +02:00
check ( " void f() \n "
" { \n "
2013-09-22 09:52:12 +02:00
" long a = b / 0x6; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2013-09-22 09:52:12 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2009-08-30 21:02:09 +02:00
check ( " void f() \n "
" { \n "
2013-09-22 09:52:12 +02:00
" long a = b / 0x0; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (error) Division by zero. \n " , errout . str ( ) ) ;
2009-08-30 21:02:09 +02:00
check ( " void f() \n "
" { \n "
2013-09-22 09:52:12 +02:00
" long a = b / 0L; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (error) Division by zero. \n " , errout . str ( ) ) ;
2009-08-30 21:02:09 +02:00
check ( " void f() \n "
" { \n "
2013-09-22 09:52:12 +02:00
" long a = b / 0ul; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2013-09-22 09:52:12 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (error) Division by zero. \n " , errout . str ( ) ) ;
2009-09-01 16:00:26 +02:00
2013-09-23 18:01:15 +02:00
check ( " void f() \n "
" { \n "
" div_t divresult = div (1,0L); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3]: (error) Division by zero. \n " , errout . str ( ) ) ;
check ( " void f() \n "
" { \n "
" div_t divresult = div (1,0x5); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2009-09-01 21:06:46 +02:00
// Don't warn about floating points (gcc doesn't warn either)
// and floating points are handled differently than integers.
2009-09-01 16:00:26 +02:00
check ( " void f() \n "
" { \n "
" long a = b / 0.0; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2009-09-01 21:06:46 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2009-09-01 16:00:26 +02:00
check ( " void f() \n "
" { \n "
" long a = b / 0.5; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2009-09-01 16:00:26 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2009-09-01 21:06:46 +02:00
// Don't warn about 0.0
2009-09-01 16:00:26 +02:00
check ( " void f() \n "
" { \n "
" div_t divresult = div (1,0.0); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2009-09-01 21:06:46 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2009-09-01 16:00:26 +02:00
check ( " void f() \n "
" { \n "
" div_t divresult = div (1,0.5); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2009-09-01 16:00:26 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2009-08-30 21:02:09 +02:00
}
2011-10-13 20:53:06 +02:00
void zeroDiv5 ( ) {
2011-08-24 02:12:29 +02:00
check ( " void f() \n "
" { { { \n "
" long a = b / 0; \n "
2013-03-20 15:36:16 +01:00
" } } } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (error) Division by zero. \n " , errout . str ( ) ) ;
2011-08-24 02:12:29 +02:00
}
2011-10-13 20:53:06 +02:00
void zeroDiv6 ( ) {
2011-09-10 16:12:53 +02:00
check ( " void f() \n "
" { { { \n "
" int a = b % 0; \n "
2013-03-20 15:36:16 +01:00
" } } } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (error) Division by zero. \n " , errout . str ( ) ) ;
2011-09-10 16:12:53 +02:00
}
2013-07-28 13:17:46 +02:00
2013-07-28 12:32:18 +02:00
void zeroDiv7 ( ) {
check ( " void f() { \n "
2013-11-07 14:38:08 +01:00
" int a = x/2*3/0; \n "
" int b = y/2*3%0; \n "
2013-07-28 12:32:18 +02:00
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (error) Division by zero. \n "
" [test.cpp:3]: (error) Division by zero. \n " , errout . str ( ) ) ;
}
2011-09-10 16:12:53 +02:00
2014-03-20 16:12:58 +01:00
void zeroDiv8 ( ) {
// #5584 - FP when function is unknown
check ( " void f() { \n "
" int a = 0; \n "
" do_something(a); \n "
" return 4 / a; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:4]: (error, inconclusive) Division by zero. \n " , errout . str ( ) ) ;
}
2013-09-07 07:40:10 +02:00
void zeroDivCond ( ) {
check ( " void f(unsigned int x) { \n "
" int y = 17 / x; \n "
" if (x > 0) {} \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3] -> [test.cpp:2]: (warning) Either the condition 'x>0' is useless or there is division by zero at line 2. \n " , errout . str ( ) ) ;
check ( " void f(unsigned int x) { \n "
" int y = 17 / x; \n "
" if (x >= 1) {} \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3] -> [test.cpp:2]: (warning) Either the condition 'x>=1' is useless or there is division by zero at line 2. \n " , errout . str ( ) ) ;
check ( " void f(int x) { \n "
" int y = 17 / x; \n "
" if (x == 0) {} \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3] -> [test.cpp:2]: (warning) Either the condition 'x==0' is useless or there is division by zero at line 2. \n " , errout . str ( ) ) ;
check ( " void f(unsigned int x) { \n "
" int y = 17 / x; \n "
" if (x != 0) {} \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3] -> [test.cpp:2]: (warning) Either the condition 'x!=0' is useless or there is division by zero at line 2. \n " , errout . str ( ) ) ;
2013-09-15 17:46:52 +02:00
// function call
check ( " void f1(int x, int y) { c=x/y; } \n "
" void f2(unsigned int y) { \n "
" f1(123,y); \n "
" if (y>0){} \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:4] -> [test.cpp:1]: (warning) Either the condition 'y>0' is useless or there is division by zero at line 1. \n " , errout . str ( ) ) ;
2013-09-07 07:40:10 +02:00
// avoid false positives when variable is changed after division
check ( " void f() { \n "
" unsigned int x = do_something(); \n "
" int y = 17 / x; \n "
" x = some+calculation; \n "
" if (x != 0) {} \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
{
// function is called that might modify global variable
check ( " void do_something(); \n "
" int x; \n "
" void f() { \n "
" int y = 17 / x; \n "
" do_something(); \n "
" if (x != 0) {} \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
// function is called. but don't care, variable is local
check ( " void do_something(); \n "
" void f() { \n "
" int x = some + calculation; \n "
" int y = 17 / x; \n "
" do_something(); \n "
" if (x != 0) {} \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:6] -> [test.cpp:4]: (warning) Either the condition 'x!=0' is useless or there is division by zero at line 4. \n " , errout . str ( ) ) ;
}
2013-09-07 16:18:11 +02:00
check ( " void do_something(int value); \n "
" void f(int x) { \n "
" int y = 17 / x; \n "
" do_something(x); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-09-07 07:40:10 +02:00
check ( " int x; \n "
" void f() { \n "
" int y = 17 / x; \n "
" while (y || x == 0) { x--; } \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-09-21 17:44:25 +02:00
// ticket 5033 segmentation fault (valid code) in CheckOther::checkZeroDivisionOrUselessCondition
check ( " void f() { \n "
" double* p1= new double[1]; \n "
" double* p2= new double[1]; \n "
" double* p3= new double[1]; \n "
" double* pp[3] = {p1,p2,p3}; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-10-10 22:23:52 +02:00
2013-10-22 16:18:42 +02:00
// #5105 - FP
check ( " int f(int a, int b) { \n "
" int r = a / b; \n "
" if (func(b)) {} \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-10-30 16:51:00 +01:00
// ?:
check ( " int f(int d) { \n "
" int r = (a?b:c) / d; \n "
" if (d == 0) {} \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3] -> [test.cpp:2]: (warning) Either the condition 'd==0' is useless or there is division by zero at line 2. \n " , errout . str ( ) ) ;
check ( " int f(int a) { \n "
" int r = a ? 1 / a : 0; \n "
" if (a == 0) {} \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " int f(int a) { \n "
" int r = (a == 0) ? 0 : 1 / a; \n "
" if (a == 0) {} \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-09-07 07:40:10 +02:00
}
2013-06-10 08:13:08 +02:00
void nanInArithmeticExpression ( ) {
check ( " void f() \n "
" { \n "
" double x = 3.0 / 0.0 + 1.0 \n "
" printf( \" %f \n \" , x); \n "
" } " ) ;
ASSERT_EQUALS (
" [test.cpp:3]: (style) Using NaN/Inf in a computation. \n " , errout . str ( ) ) ;
check ( " void f() \n "
" { \n "
" double x = 3.0 / 0.0 - 1.0 \n "
" printf( \" %f \n \" , x); \n "
" } " ) ;
ASSERT_EQUALS (
" [test.cpp:3]: (style) Using NaN/Inf in a computation. \n " , errout . str ( ) ) ;
check ( " void f() \n "
" { \n "
" double x = 1.0 + 3.0 / 0.0 \n "
" printf( \" %f \n \" , x); \n "
" } " ) ;
ASSERT_EQUALS (
" [test.cpp:3]: (style) Using NaN/Inf in a computation. \n " , errout . str ( ) ) ;
check ( " void f() \n "
" { \n "
" double x = 1.0 - 3.0 / 0.0 \n "
" printf( \" %f \n \" , x); \n "
" } " ) ;
ASSERT_EQUALS (
" [test.cpp:3]: (style) Using NaN/Inf in a computation. \n " , errout . str ( ) ) ;
check ( " void f() \n "
" { \n "
" double x = 3.0 / 0.0 \n "
" printf( \" %f \n \" , x); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2009-01-08 22:08:14 +01:00
2013-12-23 10:06:45 +01:00
void invalidFunctionUsage ( const char code [ ] ) {
2010-12-01 18:00:55 +01:00
// Clear the error buffer..
errout . str ( " " ) ;
2013-12-23 10:06:45 +01:00
const char cfg [ ] = " <?xml version= \" 1.0 \" ?> \n "
" <def> \n "
" <function name= \" memset \" > <arg nr= \" 3 \" ><not-bool/></arg> </function> \n "
2014-06-08 18:12:11 +02:00
" <function name= \" strtol \" > <arg nr= \" 3 \" ><valid>0,2:36</valid></arg> </function> \n "
2013-12-23 10:06:45 +01:00
" </def> " ;
tinyxml2 : : XMLDocument xmldoc ;
xmldoc . Parse ( cfg , sizeof ( cfg ) ) ;
2010-12-01 18:00:55 +01:00
Settings settings ;
2013-12-23 10:06:45 +01:00
settings . library . load ( xmldoc ) ;
2010-12-01 18:00:55 +01:00
2009-01-08 07:24:08 +01:00
// Tokenize..
2010-12-01 18:00:55 +01:00
Tokenizer tokenizer ( & settings , this ) ;
2009-01-08 07:24:08 +01:00
std : : istringstream istr ( code ) ;
tokenizer . tokenize ( istr , " test.cpp " ) ;
// Check for redundant code..
2009-03-20 18:16:21 +01:00
CheckOther checkOther ( & tokenizer , & settings , this ) ;
2009-07-05 22:16:43 +02:00
checkOther . invalidFunctionUsage ( ) ;
2009-01-08 07:24:08 +01:00
}
2009-01-08 22:08:14 +01:00
2013-12-23 10:06:45 +01:00
void invalidFunctionUsage1 ( ) {
invalidFunctionUsage ( " int f() { memset(a,b,sizeof(a)!=12); } " ) ;
ASSERT_EQUALS ( " [test.cpp:1]: (error) Invalid memset() argument nr 3. A non-boolean value is required. \n " , errout . str ( ) ) ;
invalidFunctionUsage ( " int f() { memset(a,b,sizeof(a)!=0); } " ) ;
TODO_ASSERT_EQUALS ( " error " , " " , errout . str ( ) ) ;
invalidFunctionUsage ( " int f() { strtol(a,b,sizeof(a)!=12); } " ) ;
2014-06-08 18:12:11 +02:00
ASSERT_EQUALS ( " [test.cpp:1]: (error) Invalid strtol() argument nr 3. The value is 0 or 1 (comparison result) but the valid values are '0,2:36'. \n " , errout . str ( ) ) ;
2013-12-23 10:06:45 +01:00
invalidFunctionUsage ( " int f() { strtol(a,b,1); } " ) ;
2014-06-08 18:12:11 +02:00
ASSERT_EQUALS ( " [test.cpp:1]: (error) Invalid strtol() argument nr 3. The value is 1 but the valid values are '0,2:36'. \n " , errout . str ( ) ) ;
2013-12-23 10:06:45 +01:00
invalidFunctionUsage ( " int f() { strtol(a,b,10); } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2011-10-13 20:53:06 +02:00
void varScope ( const char code [ ] ) {
2009-03-24 20:24:03 +01:00
// Clear the error buffer..
errout . str ( " " ) ;
Settings settings ;
2011-10-30 11:21:46 +01:00
settings . addEnabled ( " style " ) ;
2010-12-01 18:00:55 +01:00
// Tokenize..
Tokenizer tokenizer ( & settings , this ) ;
std : : istringstream istr ( code ) ;
tokenizer . tokenize ( istr , " test.cpp " ) ;
// Check for redundant code..
2009-03-24 20:24:03 +01:00
CheckOther checkOther ( & tokenizer , & settings , this ) ;
2009-07-05 22:16:43 +02:00
checkOther . checkVariableScope ( ) ;
2009-03-24 20:24:03 +01:00
}
2011-10-13 20:53:06 +02:00
void varScope1 ( ) {
2009-03-24 20:24:03 +01:00
varScope ( " unsigned short foo() \n "
" { \n "
" test_client CClient; \n "
" try \n "
" { \n "
" if (CClient.Open()) \n "
" { \n "
" return 0; \n "
" } \n "
" } \n "
" catch (...) \n "
" { \n "
" return 2; \n "
" } \n "
" \n "
" try \n "
" { \n "
" CClient.Close(); \n "
" } \n "
" catch (...) \n "
" { \n "
" return 2; \n "
" } \n "
" \n "
" return 1; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2009-06-05 02:39:36 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2009-03-24 20:24:03 +01:00
}
2009-03-24 20:59:56 +01:00
2011-10-13 20:53:06 +02:00
void varScope2 ( ) {
2009-03-24 20:59:56 +01:00
varScope ( " int foo() \n "
" { \n "
" Error e; \n "
" e.SetValue(12); \n "
" throw e; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2009-06-05 02:39:36 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2009-03-24 20:59:56 +01:00
}
2009-03-27 17:19:34 +01:00
2011-10-13 20:53:06 +02:00
void varScope3 ( ) {
2009-05-27 19:38:26 +02:00
varScope ( " void foo() \n "
" { \n "
" int i; \n "
" int *p = 0; \n "
" if (abc) \n "
" { \n "
" p = &i; \n "
" } \n "
" *p = 1; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2009-06-05 02:39:36 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2009-05-27 19:38:26 +02:00
}
2011-10-13 20:53:06 +02:00
void varScope4 ( ) {
2009-06-12 16:17:51 +02:00
varScope ( " void foo() \n "
" { \n "
" int i; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2009-06-12 16:17:51 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2011-10-13 20:53:06 +02:00
void varScope5 ( ) {
2009-09-29 23:56:43 +02:00
varScope ( " void f(int x) \n "
" { \n "
" int i = 0; \n "
" if (x) { \n "
" for ( ; i < 10; ++i) ; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (style) The scope of the variable 'i' can be reduced. \n " , errout . str ( ) ) ;
2009-09-29 23:56:43 +02:00
2012-05-24 15:34:59 +02:00
varScope ( " void f(int x) { \n "
" const unsigned char i = 0; \n "
" if (x) { \n "
" for ( ; i < 10; ++i) ; \n "
" } \n "
" } " ) ;
2013-10-19 17:27:02 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2012-05-24 15:34:59 +02:00
2009-09-29 23:56:43 +02:00
varScope ( " void f(int x) \n "
2009-08-16 21:12:57 +02:00
" { \n "
" int i = 0; \n "
2009-09-29 23:56:43 +02:00
" if (x) {b()} \n "
" else { \n "
2009-08-16 21:12:57 +02:00
" for ( ; i < 10; ++i) ; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (style) The scope of the variable 'i' can be reduced. \n " , errout . str ( ) ) ;
2009-08-16 21:12:57 +02:00
}
2009-03-27 17:19:34 +01:00
2011-10-13 20:53:06 +02:00
void varScope6 ( ) {
2009-09-17 21:05:12 +02:00
varScope ( " void f(int x) \n "
" { \n "
" int i = x; \n "
" if (a) { \n "
" x++; \n "
" } \n "
" if (b) { \n "
" c(i); \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2009-09-17 21:05:12 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2009-09-29 23:56:43 +02:00
varScope ( " void f() \n "
" { \n "
" int foo = 0; \n "
" std::vector<int> vec(10); \n "
" BOOST_FOREACH(int& i, vec) \n "
" { \n "
" foo += 1; \n "
" if(foo == 10) \n "
" { \n "
" return 0; \n "
" } \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2009-09-29 23:56:43 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2009-03-27 17:19:34 +01:00
2009-09-29 23:56:43 +02:00
varScope ( " void f(int &x) \n "
" { \n "
" int n = 1; \n "
" do \n "
" { \n "
" ++n; \n "
" ++x; \n "
" } while (x); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2009-09-29 23:56:43 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2009-03-27 17:19:34 +01:00
2011-10-13 20:53:06 +02:00
void varScope7 ( ) {
2009-10-06 17:45:28 +02:00
varScope ( " void f(int x) \n "
" { \n "
" int y = 0; \n "
" b(y); \n "
" if (x) { \n "
" y++; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2009-10-06 17:45:28 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2011-10-13 20:53:06 +02:00
void varScope8 ( ) {
2010-01-21 18:50:56 +01:00
varScope ( " void test() { \n "
" float edgeResistance=1; \n "
" std::vector<int> edges; \n "
" BOOST_FOREACH(int edge, edges) { \n "
" edgeResistance = (edge+1) / 2.0; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (style) The scope of the variable 'edgeResistance' can be reduced. \n " , errout . str ( ) ) ;
2010-01-21 18:50:56 +01:00
}
2011-10-13 20:53:06 +02:00
void varScope9 ( ) {
2010-04-09 16:53:27 +02:00
// classes may have extra side effects
varScope ( " class fred { \n "
" public: \n "
" void x(); \n "
" }; \n "
" void test(int a) { \n "
" fred f; \n "
" if (a == 2) { \n "
" f.x(); \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2010-04-09 16:53:27 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2011-10-13 20:53:06 +02:00
void varScope10 ( ) {
2010-08-26 21:57:48 +02:00
varScope ( " int f() \n "
" { \n "
" int x = 0; \n "
" FOR { \n "
" foo(x++); \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2010-08-26 21:57:48 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2011-10-13 20:53:06 +02:00
void varScope11 ( ) {
2011-01-17 20:51:15 +01:00
varScope ( " int f() { \n "
" int x = 0; \n "
" AB ab = { x, 0 }; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-01-17 20:51:15 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
varScope ( " int f() { \n "
" int x = 0; \n "
" if (a == 0) { ++x; } \n "
" AB ab = { x, 0 }; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-01-17 20:51:15 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
varScope ( " int f() { \n "
" int x = 0; \n "
" if (a == 0) { ++x; } \n "
" if (a == 1) { AB ab = { x, 0 }; } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-01-17 20:51:15 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2011-10-13 20:53:06 +02:00
void varScope12 ( ) {
2012-05-24 15:34:59 +02:00
varScope ( " void f(int x) { \n "
" int i[5]; \n "
" int* j = y; \n "
" if (x) \n "
" foo(i); \n "
" foo(j); \n "
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (style) The scope of the variable 'i' can be reduced. \n " , errout . str ( ) ) ;
2012-05-24 15:34:59 +02:00
varScope ( " void f(int x) { \n "
" int i[5]; \n "
" int* j; \n "
" if (x) \n "
" j = i; \n "
" foo(j); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
varScope ( " void f(int x) { \n "
" const bool b = true; \n "
" x++; \n "
" if (x == 5) \n "
" foo(b); \n "
" } " ) ;
2013-10-19 17:27:02 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2012-05-24 15:34:59 +02:00
varScope ( " void f(int x) { \n "
" const bool b = x; \n "
" x++; \n "
" if (x == 5) \n "
" foo(b); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
void varScope13 ( ) {
2011-05-06 21:16:01 +02:00
// #2770
varScope ( " void f() { \n "
" int i = 0; \n "
" forever { \n "
" if (i++ == 42) { break; } \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2010-01-21 18:50:56 +01:00
2012-07-29 15:39:43 +02:00
void varScope14 ( ) {
// #3941
varScope ( " void f() { \n "
" const int i( foo()); \n "
" if(a) { \n "
" for ( ; i < 10; ++i) ; \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2013-02-12 21:16:57 +01:00
void varScope15 ( ) {
// #4573
varScope ( " void f() { \n "
" int a,b,c; \n "
" if (a); \n "
" else if(b); \n "
" else if(c); \n "
" else; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2013-02-12 21:16:57 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2013-03-03 19:35:33 +01:00
void varScope16 ( ) {
varScope ( " void f() { \n "
" int a = 0; \n "
" while((++a) < 56) { \n "
" foo(); \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
varScope ( " void f() { \n "
" int a = 0; \n "
" do { \n "
" foo(); \n "
" } while((++a) < 56); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
varScope ( " void f() { \n "
" int a = 0; \n "
" do { \n "
" a = 64; \n "
" foo(a); \n "
" } while((++a) < 56); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
varScope ( " void f() { \n "
" int a = 0; \n "
" do { \n "
" a = 64; \n "
" foo(a); \n "
" } while(z()); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (style) The scope of the variable 'a' can be reduced. \n " , errout . str ( ) ) ;
}
2013-03-15 13:00:51 +01:00
void varScope17 ( ) {
varScope ( " void f() { \n "
" int x; \n "
" if (a) { \n "
" x = stuff(x); \n "
" morestuff(x); \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (style) The scope of the variable 'x' can be reduced. \n " , errout . str ( ) ) ;
2013-03-18 16:17:53 +01:00
varScope ( " void f() { \n "
" int x; \n "
" if (a) { \n "
" x = stuff(x); \n "
" morestuff(x); \n "
" } \n "
" if (b) {} \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (style) The scope of the variable 'x' can be reduced. \n " , errout . str ( ) ) ;
2013-03-15 13:00:51 +01:00
}
2013-03-23 11:28:33 +01:00
void varScope18 ( ) {
varScope ( " void f() { \n "
" short x; \n "
" \n "
" switch (ab) { \n "
" case A: \n "
" break; \n "
" case B: \n "
" default: \n "
" break; \n "
" } \n "
" \n "
" if (c) { \n "
" x = foo(); \n "
" do_something(x); \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (style) The scope of the variable 'x' can be reduced. \n " , errout . str ( ) ) ;
varScope ( " void f() { \n "
" short x; \n "
" \n "
" switch (ab) { \n "
" case A: \n "
" x = 10; \n "
" break; \n "
" case B: \n "
" default: \n "
" break; \n "
" } \n "
" \n "
" if (c) { \n "
" x = foo(); \n "
" do_something(x); \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
varScope ( " void f() { \n "
" short x; \n "
" \n "
" switch (ab) { \n "
" case A: \n "
" if(c) \n "
" do_something(x); \n "
" break; \n "
" case B: \n "
" default: \n "
" break; \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (style) The scope of the variable 'x' can be reduced. \n " , errout . str ( ) ) ;
varScope ( " void f() { \n "
" short x; \n "
" \n "
" switch (ab) { \n "
" case A: \n "
" if(c) \n "
" do_something(x); \n "
" break; \n "
" case B: \n "
" default: \n "
" if(d) \n "
" do_something(x); \n "
" break; \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2013-08-31 14:22:06 +02:00
void varScope19 ( ) { // Ticket #4994
varScope ( " long f () { \n "
" return a >> extern \n "
" } \n "
" long a = 1 ; \n "
" long b = 2 ; " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2013-10-19 17:27:02 +02:00
void varScope20 ( ) { // Ticket #5103 - constant variable only used in inner scope
varScope ( " int f(int a) { \n "
" const int x = 234; \n "
" int b = a; \n "
" if (b > 32) b = x; \n "
" return b; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2014-03-17 12:34:39 +01:00
void varScope21 ( ) { // Ticket #5382 - initializing two-dimensional array
varScope ( " int test() { \n "
" int test_value = 3; \n "
" int test_array[1][1] = { { test_value } }; \n "
" return sizeof(test_array); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2014-04-17 21:32:56 +02:00
void varScope22 ( ) { // Ticket #5684 - "The scope of the variable 'p' can be reduced" - But it can not.
varScope ( " void foo() { \n "
" int* p( 42 ); \n "
" int i = 0; \n "
" while ( i != 100 ) { \n "
" *p = i; \n "
" ++p; \n "
" ++i; \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
// try to avoid an obvious false negative after applying the fix for the example above:
varScope ( " void foo() { \n "
" int* p( 42 ); \n "
" int i = 0; \n "
" int dummy = 0; \n "
" while ( i != 100 ) { \n "
" p = & dummy; \n "
" *p = i; \n "
" ++p; \n "
" ++i; \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (style) The scope of the variable 'p' can be reduced. \n " , errout . str ( ) ) ;
}
2014-09-10 20:56:34 +02:00
void varScope23 ( ) { // #6154: Don't suggest to reduce scope if inner scope is a lambda
varScope ( " int main() { \n "
" size_t myCounter = 0; \n "
" Test myTest([&](size_t aX){ \n "
" std::cout << myCounter += aX << std::endl; \n "
" }); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2011-10-13 20:53:06 +02:00
void checkOldStylePointerCast ( const char code [ ] ) {
2010-12-01 18:00:55 +01:00
// Clear the error buffer..
errout . str ( " " ) ;
Settings settings ;
2011-08-07 09:28:08 +02:00
settings . addEnabled ( " style " ) ;
2014-04-29 06:21:30 +02:00
settings . standards . cpp = Standards : : CPP03 ; // #5560
2010-12-01 18:00:55 +01:00
2009-06-18 22:26:21 +02:00
// Tokenize..
2010-12-01 18:00:55 +01:00
Tokenizer tokenizerCpp ( & settings , this ) ;
2009-06-18 22:26:21 +02:00
std : : istringstream istr ( code ) ;
2010-04-24 16:46:09 +02:00
tokenizerCpp . tokenize ( istr , " test.cpp " ) ;
2010-12-01 18:00:55 +01:00
Tokenizer tokenizerC ( & settings , this ) ;
2010-04-24 16:46:09 +02:00
std : : istringstream istr2 ( code ) ;
tokenizerC . tokenize ( istr2 , " test.c " ) ;
2009-06-18 22:26:21 +02:00
2010-04-24 16:46:09 +02:00
CheckOther checkOtherCpp ( & tokenizerCpp , & settings , this ) ;
checkOtherCpp . warningOldStylePointerCast ( ) ;
CheckOther checkOtherC ( & tokenizerC , & settings , this ) ;
checkOtherC . warningOldStylePointerCast ( ) ;
2009-06-18 22:26:21 +02:00
}
2011-10-13 20:53:06 +02:00
void oldStylePointerCast ( ) {
2009-06-19 12:01:27 +02:00
checkOldStylePointerCast ( " class Base; \n "
" void foo() \n "
" { \n "
" Base * b = (Base *) derived; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2009-06-19 12:01:27 +02:00
ASSERT_EQUALS ( " [test.cpp:4]: (style) C-style pointer casting \n " , errout . str ( ) ) ;
2009-07-20 21:52:27 +02:00
checkOldStylePointerCast ( " class Base; \n "
" void foo() \n "
" { \n "
" Base * b = (const Base *) derived; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2009-07-20 21:52:27 +02:00
ASSERT_EQUALS ( " [test.cpp:4]: (style) C-style pointer casting \n " , errout . str ( ) ) ;
2009-06-19 12:01:27 +02:00
2014-09-01 14:40:28 +02:00
checkOldStylePointerCast ( " class Base; \n "
" void foo() \n "
" { \n "
" Base * b = (const Base * const) derived; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:4]: (style) C-style pointer casting \n " , errout . str ( ) ) ;
checkOldStylePointerCast ( " class Base; \n "
" void foo() \n "
" { \n "
" Base * b = (volatile Base *) derived; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:4]: (style) C-style pointer casting \n " , errout . str ( ) ) ;
checkOldStylePointerCast ( " class Base; \n "
" void foo() \n "
" { \n "
" Base * b = (volatile Base * const) derived; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:4]: (style) C-style pointer casting \n " , errout . str ( ) ) ;
checkOldStylePointerCast ( " class Base; \n "
" void foo() \n "
" { \n "
" Base * b = (const volatile Base *) derived; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:4]: (style) C-style pointer casting \n " , errout . str ( ) ) ;
checkOldStylePointerCast ( " class Base; \n "
" void foo() \n "
" { \n "
" Base * b = (const volatile Base * const) derived; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:4]: (style) C-style pointer casting \n " , errout . str ( ) ) ;
2009-09-24 22:46:08 +02:00
checkOldStylePointerCast ( " class Base; \n "
" void foo() \n "
" { \n "
" Base * b = (const Base *) ( new Derived() ); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2009-09-24 22:46:08 +02:00
ASSERT_EQUALS ( " [test.cpp:4]: (style) C-style pointer casting \n " , errout . str ( ) ) ;
checkOldStylePointerCast ( " class Base; \n "
" void foo() \n "
" { \n "
" Base * b = (const Base *) new Derived(); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2009-09-24 22:46:08 +02:00
ASSERT_EQUALS ( " [test.cpp:4]: (style) C-style pointer casting \n " , errout . str ( ) ) ;
checkOldStylePointerCast ( " class Base; \n "
" void foo() \n "
" { \n "
" Base * b = (const Base *) new short[10]; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2009-09-24 22:46:08 +02:00
ASSERT_EQUALS ( " [test.cpp:4]: (style) C-style pointer casting \n " , errout . str ( ) ) ;
2009-06-18 22:26:21 +02:00
checkOldStylePointerCast ( " class B; \n "
" class A \n "
" { \n "
" virtual void abc(B *) const = 0; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2009-06-18 22:26:21 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2009-07-20 21:52:27 +02:00
checkOldStylePointerCast ( " class B; \n "
" class A \n "
" { \n "
" virtual void abc(const B *) const = 0; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2009-07-20 21:52:27 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-04-29 06:21:30 +02:00
2014-08-04 11:20:48 +02:00
// #3630
checkOldStylePointerCast ( " class SomeType; \n "
" class X : public Base { \n "
" X() : Base((SomeType*)7) {} \n "
" }; " ) ;
ASSERT_EQUALS ( " [test.cpp:3]: (style) C-style pointer casting \n " , errout . str ( ) ) ;
checkOldStylePointerCast ( " class SomeType; \n "
" class X : public Base { \n "
" X() : Base((SomeType*)var) {} \n "
" }; " ) ;
ASSERT_EQUALS ( " [test.cpp:3]: (style) C-style pointer casting \n " , errout . str ( ) ) ;
2014-08-04 11:42:14 +02:00
checkOldStylePointerCast ( " class SomeType; \n "
" class X : public Base { \n "
" X() : Base((SomeType*)0) {} \n "
" }; " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-04-29 06:21:30 +02:00
// #5560
checkOldStylePointerCast ( " class C; \n "
" \n "
" class B \n "
" { virtual G* createGui(S*, C*) const = 0; }; \n "
" \n "
" class MS : public M \n "
" { virtual void addController(C*) override {} }; " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-09-12 21:56:13 +02:00
// #6164
checkOldStylePointerCast ( " class Base {}; \n "
" class Derived: public Base {}; \n "
" void testCC() { \n "
" std::vector<Base*> v; \n "
" v.push_back((Base*)new Derived); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:5]: (style) C-style pointer casting \n " , errout . str ( ) ) ;
2009-06-18 22:26:21 +02:00
}
2014-09-06 13:09:02 +02:00
void checkInvalidPointerCast ( const char code [ ] , bool portability = true , bool inconclusive = false ) {
2012-02-26 11:56:32 +01:00
// Clear the error buffer..
errout . str ( " " ) ;
Settings settings ;
2013-03-03 11:41:59 +01:00
settings . addEnabled ( " warning " ) ;
2012-02-26 11:56:32 +01:00
if ( portability )
settings . addEnabled ( " portability " ) ;
2012-03-25 12:55:39 +02:00
settings . inconclusive = inconclusive ;
2012-02-26 11:56:32 +01:00
// Tokenize..
Tokenizer tokenizer ( & settings , this ) ;
std : : istringstream istr ( code ) ;
tokenizer . tokenize ( istr , " test.cpp " ) ;
CheckOther checkOtherCpp ( & tokenizer , & settings , this ) ;
checkOtherCpp . invalidPointerCast ( ) ;
}
void invalidPointerCast ( ) {
checkInvalidPointerCast ( " void test() { \n "
" float *f = new float[10]; \n "
" delete [] (double*)f; \n "
" delete [] (long double const*)(new float[10]); \n "
" } " ) ;
2014-09-06 13:09:02 +02:00
TODO_ASSERT_EQUALS ( " [test.cpp:3]: (portability) Casting between float* and double* which have an incompatible binary data representation. \n "
" [test.cpp:4]: (portability) Casting between float* and long double* which have an incompatible binary data representation. \n " ,
" [test.cpp:3]: (portability) Casting between float* and double* which have an incompatible binary data representation. \n "
" [test.cpp:4]: (portability) Casting between float* and double* which have an incompatible binary data representation. \n " , errout . str ( ) ) ;
2012-02-26 11:56:32 +01:00
checkInvalidPointerCast ( " void test(const float* f) { \n "
" double *d = (double*)f; \n "
" } " ) ;
2014-09-06 13:09:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (portability) Casting between float* and double* which have an incompatible binary data representation. \n " , errout . str ( ) ) ;
2012-02-26 11:56:32 +01:00
checkInvalidPointerCast ( " void test(double* d1) { \n "
" long double *ld = (long double*)d1; \n "
" double *d2 = (double*)ld; \n "
" } " ) ;
2014-09-06 13:09:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (portability) Casting between double* and long double* which have an incompatible binary data representation. \n "
" [test.cpp:3]: (portability) Casting between long double* and double* which have an incompatible binary data representation. \n " , errout . str ( ) ) ;
2012-02-26 11:56:32 +01:00
checkInvalidPointerCast ( " char* test(int* i) { \n "
" long double *d = (long double*)(i); \n "
" double *d = (double*)(i); \n "
" float *f = reinterpret_cast<float*>(i); \n "
" } " ) ;
2014-09-06 13:09:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (portability) Casting between integer* and long double* which have an incompatible binary data representation. \n "
" [test.cpp:3]: (portability) Casting between integer* and double* which have an incompatible binary data representation. \n "
" [test.cpp:4]: (portability) Casting between integer* and float* which have an incompatible binary data representation. \n " , errout . str ( ) ) ;
2012-02-26 11:56:32 +01:00
checkInvalidPointerCast ( " float* test(unsigned int* i) { \n "
" return (float*)i; \n "
" } " ) ;
2014-09-06 13:09:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (portability) Casting between integer* and float* which have an incompatible binary data representation. \n " , errout . str ( ) ) ;
2012-02-26 11:56:32 +01:00
checkInvalidPointerCast ( " float* test(unsigned int* i) { \n "
" return (float*)i[0]; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
checkInvalidPointerCast ( " float* test(double& d) { \n "
" return (float*)&d; \n "
" } " ) ;
2014-09-06 13:09:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (portability) Casting between double* and float* which have an incompatible binary data representation. \n " , errout . str ( ) ) ;
2012-02-26 11:56:32 +01:00
2012-05-06 19:37:41 +02:00
checkInvalidPointerCast ( " void test(float* data) { \n "
2012-03-25 12:55:39 +02:00
" f.write((char*)data,sizeof(float)); \n "
" } " , true , false ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
checkInvalidPointerCast ( " void test(float* data) { \n "
" f.write((char*)data,sizeof(float)); \n "
2012-05-06 19:37:41 +02:00
" } " , true , true ) ; // #3639
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (portability, inconclusive) Casting from float* to char* is not portable due to different binary data representations on different platforms. \n " , errout . str ( ) ) ;
2012-03-25 12:55:39 +02:00
2012-02-26 11:56:32 +01:00
checkInvalidPointerCast ( " long long* test(float* f) { \n "
" return (long long*)f; \n "
" } " , false ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
checkInvalidPointerCast ( " long long* test(float* f, char* c) { \n "
" foo((long long*)f); \n "
" return reinterpret_cast<long long*>(c); \n "
" } " , true ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (portability) Casting from float* to integer* is not portable due to different binary data representations on different platforms. \n " , errout . str ( ) ) ;
2012-09-03 11:32:15 +02:00
checkInvalidPointerCast ( " Q_DECLARE_METATYPE(int*) " ) ; // #4135 - don't crash
2012-02-26 11:56:32 +01:00
}
2011-10-13 20:53:06 +02:00
void testPassedByValue ( const char code [ ] ) {
2009-10-04 10:05:58 +02:00
// Clear the error buffer..
errout . str ( " " ) ;
Settings settings ;
2011-09-03 15:30:30 +02:00
settings . addEnabled ( " performance " ) ;
2010-12-01 18:00:55 +01:00
Tokenizer tokenizer ( & settings , this ) ;
std : : istringstream istr ( code ) ;
tokenizer . tokenize ( istr , " test.cpp " ) ;
2009-10-04 10:05:58 +02:00
CheckOther checkOther ( & tokenizer , & settings , this ) ;
checkOther . checkConstantFunctionParameter ( ) ;
}
2011-10-13 20:53:06 +02:00
void passedByValue ( ) {
2009-10-06 23:04:54 +02:00
testPassedByValue ( " void f(const std::string str) {} " ) ;
2010-11-27 09:46:34 +01:00
ASSERT_EQUALS ( " [test.cpp:1]: (performance) Function parameter 'str' should be passed by reference. \n " , errout . str ( ) ) ;
2009-10-04 10:05:58 +02:00
2014-07-18 15:51:59 +02:00
testPassedByValue ( " void f(const std::string::size_type x) {} " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2009-10-06 23:04:54 +02:00
testPassedByValue ( " class Foo; \n void f(const Foo foo) {} " ) ;
2010-11-27 09:46:34 +01:00
ASSERT_EQUALS ( " [test.cpp:2]: (performance) Function parameter 'foo' should be passed by reference. \n " , errout . str ( ) ) ;
2009-10-04 10:05:58 +02:00
2009-10-06 23:04:54 +02:00
testPassedByValue ( " void f(const std::string &str) {} " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2009-10-04 10:05:58 +02:00
2009-10-06 23:04:54 +02:00
testPassedByValue ( " void f(const std::vector<int> v) {} " ) ;
2010-11-27 09:46:34 +01:00
ASSERT_EQUALS ( " [test.cpp:1]: (performance) Function parameter 'v' should be passed by reference. \n " , errout . str ( ) ) ;
2009-10-04 10:05:58 +02:00
2009-10-06 23:04:54 +02:00
testPassedByValue ( " void f(const std::vector<std::string> v) {} " ) ;
2010-11-27 09:46:34 +01:00
ASSERT_EQUALS ( " [test.cpp:1]: (performance) Function parameter 'v' should be passed by reference. \n " , errout . str ( ) ) ;
2009-10-05 10:59:28 +02:00
2012-07-23 10:41:20 +02:00
testPassedByValue ( " void f(const std::vector<std::string>::size_type s) {} " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2009-10-06 23:04:54 +02:00
testPassedByValue ( " void f(const std::vector<int> &v) {} " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2009-10-05 10:59:28 +02:00
2009-10-06 23:04:54 +02:00
testPassedByValue ( " void f(const std::map<int,int> &v) {} " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2009-10-05 10:59:28 +02:00
2009-10-06 23:04:54 +02:00
testPassedByValue ( " void f(const std::map<int,int> v) {} " ) ;
2010-11-27 09:46:34 +01:00
ASSERT_EQUALS ( " [test.cpp:1]: (performance) Function parameter 'v' should be passed by reference. \n " , errout . str ( ) ) ;
2009-10-05 10:59:28 +02:00
2009-10-06 23:04:54 +02:00
testPassedByValue ( " void f(const std::map<std::string,std::string> v) {} " ) ;
2010-11-27 09:46:34 +01:00
ASSERT_EQUALS ( " [test.cpp:1]: (performance) Function parameter 'v' should be passed by reference. \n " , errout . str ( ) ) ;
2009-10-05 10:59:28 +02:00
2009-10-06 23:04:54 +02:00
testPassedByValue ( " void f(const std::map<int,std::string> v) {} " ) ;
2010-11-27 09:46:34 +01:00
ASSERT_EQUALS ( " [test.cpp:1]: (performance) Function parameter 'v' should be passed by reference. \n " , errout . str ( ) ) ;
2009-10-05 10:59:28 +02:00
2009-10-06 23:04:54 +02:00
testPassedByValue ( " void f(const std::map<std::string,int> v) {} " ) ;
2010-11-27 09:46:34 +01:00
ASSERT_EQUALS ( " [test.cpp:1]: (performance) Function parameter 'v' should be passed by reference. \n " , errout . str ( ) ) ;
2011-04-19 20:07:54 +02:00
2014-08-06 12:08:18 +02:00
testPassedByValue ( " void f(const std::streamoff pos) {} " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-08-06 12:06:36 +02:00
// #5824
testPassedByValue ( " void log(const std::string& file, int line, const std::string& function, const std::string str, ...) {} " ) ;
2011-04-19 20:07:54 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-08-31 19:58:03 +02:00
// #5534
testPassedByValue ( " struct float3 { }; \n "
" typedef float3 vec; \n "
" class Plane { \n "
" vec Refract(vec &vec) const; \n "
" bool IntersectLinePlane(const vec &planeNormal); \n "
" }; " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2009-10-04 10:05:58 +02:00
}
2013-10-09 16:48:46 +02:00
void mathfunctionCall_sqrt ( ) {
// sqrt, sqrtf, sqrtl
check ( " void foo() \n "
" { \n "
" std::cout << sqrt(-1) << std::endl; \n "
" std::cout << sqrtf(-1) << std::endl; \n "
" std::cout << sqrtl(-1) << std::endl; \n "
" } " ) ;
2014-09-01 19:29:59 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (warning) Passing value -1 to sqrt() leads to implementation-defined result. \n "
" [test.cpp:4]: (warning) Passing value -1 to sqrtf() leads to implementation-defined result. \n "
" [test.cpp:5]: (warning) Passing value -1 to sqrtl() leads to implementation-defined result. \n " , errout . str ( ) ) ;
// implementation-defined behaviour for "finite values of x<0" only:
check ( " void foo() \n "
" { \n "
" std::cout << sqrt(-0.) << std::endl; \n "
" std::cout << sqrtf(-0.) << std::endl; \n "
" std::cout << sqrtl(-0.) << std::endl; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-10-09 16:48:46 +02:00
check ( " void foo() \n "
" { \n "
" std::cout << sqrt(1) << std::endl; \n "
" std::cout << sqrtf(1) << std::endl; \n "
" std::cout << sqrtl(1) << std::endl; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
void mathfunctionCall_log ( ) {
2013-09-13 19:49:25 +02:00
// log,log10,logf,logl,log10f,log10l
2010-04-02 02:19:38 +02:00
check ( " void foo() \n "
" { \n "
" std::cout << log(-2) << std::endl; \n "
2013-09-13 19:49:25 +02:00
" std::cout << logf(-2) << std::endl; \n "
" std::cout << logl(-2) << std::endl; \n "
2010-04-02 02:19:38 +02:00
" } " ) ;
2014-09-01 19:29:59 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (warning) Passing value -2 to log() leads to implementation-defined result. \n "
" [test.cpp:4]: (warning) Passing value -2 to logf() leads to implementation-defined result. \n "
" [test.cpp:5]: (warning) Passing value -2 to logl() leads to implementation-defined result. \n " , errout . str ( ) ) ;
2010-04-02 02:19:38 +02:00
check ( " void foo() \n "
" { \n "
2013-09-13 19:49:25 +02:00
" std::cout << log(-1) << std::endl; \n "
" std::cout << logf(-1) << std::endl; \n "
" std::cout << logl(-1) << std::endl; \n "
2010-04-02 02:19:38 +02:00
" } " ) ;
2014-09-01 19:29:59 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (warning) Passing value -1 to log() leads to implementation-defined result. \n "
" [test.cpp:4]: (warning) Passing value -1 to logf() leads to implementation-defined result. \n "
" [test.cpp:5]: (warning) Passing value -1 to logl() leads to implementation-defined result. \n " , errout . str ( ) ) ;
2010-04-02 02:19:38 +02:00
check ( " void foo() \n "
" { \n "
" std::cout << log(-1.0) << std::endl; \n "
2013-09-13 19:49:25 +02:00
" std::cout << logf(-1.0) << std::endl; \n "
" std::cout << logl(-1.0) << std::endl; \n "
2010-04-02 02:19:38 +02:00
" } " ) ;
2014-09-01 19:29:59 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (warning) Passing value -1.0 to log() leads to implementation-defined result. \n "
" [test.cpp:4]: (warning) Passing value -1.0 to logf() leads to implementation-defined result. \n "
" [test.cpp:5]: (warning) Passing value -1.0 to logl() leads to implementation-defined result. \n " , errout . str ( ) ) ;
2010-04-02 02:19:38 +02:00
check ( " void foo() \n "
" { \n "
" std::cout << log(-0.1) << std::endl; \n "
2013-09-13 19:49:25 +02:00
" std::cout << logf(-0.1) << std::endl; \n "
" std::cout << logl(-0.1) << std::endl; \n "
2010-04-02 02:19:38 +02:00
" } " ) ;
2014-09-01 19:29:59 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (warning) Passing value -0.1 to log() leads to implementation-defined result. \n "
" [test.cpp:4]: (warning) Passing value -0.1 to logf() leads to implementation-defined result. \n "
" [test.cpp:5]: (warning) Passing value -0.1 to logl() leads to implementation-defined result. \n " , errout . str ( ) ) ;
2010-04-02 02:19:38 +02:00
check ( " void foo() \n "
" { \n "
" std::cout << log(0) << std::endl; \n "
2013-09-13 19:49:25 +02:00
" std::cout << logf(0.) << std::endl; \n "
" std::cout << logl(0.0) << std::endl; \n "
2010-04-02 02:19:38 +02:00
" } " ) ;
2014-09-01 19:29:59 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (warning) Passing value 0 to log() leads to implementation-defined result. \n "
" [test.cpp:4]: (warning) Passing value 0. to logf() leads to implementation-defined result. \n "
" [test.cpp:5]: (warning) Passing value 0.0 to logl() leads to implementation-defined result. \n " , errout . str ( ) ) ;
2010-04-02 02:19:38 +02:00
check ( " void foo() \n "
" { \n "
2013-09-13 19:49:25 +02:00
" std::cout << log(1E-3) << std::endl; \n "
" std::cout << logf(1E-3) << std::endl; \n "
" std::cout << logl(1E-3) << std::endl; \n "
" std::cout << log(1.0E-3) << std::endl; \n "
" std::cout << logf(1.0E-3) << std::endl; \n "
" std::cout << logl(1.0E-3) << std::endl; \n "
" std::cout << log(1.0E+3) << std::endl; \n "
" std::cout << logf(1.0E+3) << std::endl; \n "
" std::cout << logl(1.0E+3) << std::endl; \n "
" std::cout << log(2.0) << std::endl; \n "
" std::cout << logf(2.0) << std::endl; \n "
2014-01-23 16:19:30 +01:00
" std::cout << logf(2.0f) << std::endl; \n "
2010-04-02 02:19:38 +02:00
" } " ) ;
2013-09-13 19:49:25 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2010-04-02 02:19:38 +02:00
check ( " void foo() \n "
" { \n "
2013-09-13 19:49:25 +02:00
" std::string *log(0); \n "
2010-04-02 02:19:38 +02:00
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-09-13 19:49:25 +02:00
// #3473 - no warning if "log" is a variable
check ( " Fred::Fred() : log(0) { } " ) ;
2010-04-04 08:01:05 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-04-23 01:23:38 +02:00
// #5748
check ( " void f() { foo.log(0); } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-10-09 16:48:46 +02:00
}
2010-04-02 02:19:38 +02:00
2013-10-09 16:48:46 +02:00
void mathfunctionCall_acos ( ) {
2013-09-13 19:49:25 +02:00
// acos, acosf, acosl
2010-04-02 02:19:38 +02:00
check ( " void foo() \n "
" { \n "
2013-10-09 16:59:32 +02:00
" return acos(-1) \n "
2013-09-13 19:49:25 +02:00
" + acos(0.1) \n "
" + acos(0.0001) \n "
" + acos(0.01) \n "
" + acos(1.0E-1) \n "
" + acos(-1.0E-1) \n "
" + acos(+1.0E-1) \n "
" + acos(0.1E-1) \n "
" + acos(+0.1E-1) \n "
" + acos(-0.1E-1) \n "
" + acosf(-1) \n "
" + acosf(0.1) \n "
" + acosf(0.0001) \n "
" + acosf(0.01) \n "
" + acosf(1.0E-1) \n "
" + acosf(-1.0E-1) \n "
" + acosf(+1.0E-1) \n "
" + acosf(0.1E-1) \n "
" + acosf(+0.1E-1) \n "
" + acosf(-0.1E-1) \n "
" + acosl(-1) \n "
" + acosl(0.1) \n "
" + acosl(0.0001) \n "
" + acosl(0.01) \n "
" + acosl(1.0E-1) \n "
" + acosl(-1.0E-1) \n "
" + acosl(+1.0E-1) \n "
" + acosl(0.1E-1) \n "
" + acosl(+0.1E-1) \n "
" + acosl(-0.1E-1); \n "
2010-04-02 02:19:38 +02:00
" } " ) ;
2010-04-04 08:01:05 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2010-04-02 02:19:38 +02:00
2010-07-07 09:03:40 +02:00
check ( " void foo() \n "
" { \n "
2013-09-13 19:49:25 +02:00
" std::cout << acos(1.1) << std::endl; \n "
" std::cout << acosf(1.1) << std::endl; \n "
" std::cout << acosl(1.1) << std::endl; \n "
2010-07-07 09:03:40 +02:00
" } " ) ;
2014-09-01 19:29:59 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (warning) Passing value 1.1 to acos() leads to implementation-defined result. \n "
" [test.cpp:4]: (warning) Passing value 1.1 to acosf() leads to implementation-defined result. \n "
" [test.cpp:5]: (warning) Passing value 1.1 to acosl() leads to implementation-defined result. \n " , errout . str ( ) ) ;
2010-07-07 09:03:40 +02:00
2010-11-15 21:03:49 +01:00
check ( " void foo() \n "
" { \n "
2013-09-13 19:49:25 +02:00
" std::cout << acos(-1.1) << std::endl; \n "
" std::cout << acosf(-1.1) << std::endl; \n "
" std::cout << acosl(-1.1) << std::endl; \n "
2010-11-15 21:03:49 +01:00
" } " ) ;
2014-09-01 19:29:59 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (warning) Passing value -1.1 to acos() leads to implementation-defined result. \n "
" [test.cpp:4]: (warning) Passing value -1.1 to acosf() leads to implementation-defined result. \n "
" [test.cpp:5]: (warning) Passing value -1.1 to acosl() leads to implementation-defined result. \n " , errout . str ( ) ) ;
2013-10-09 16:48:46 +02:00
}
2010-11-15 21:03:49 +01:00
2013-10-09 16:48:46 +02:00
void mathfunctionCall_asin ( ) {
2013-09-13 19:49:25 +02:00
// asin, asinf, asinl
2010-04-02 20:23:37 +02:00
check ( " void foo() \n "
" { \n "
2013-09-13 19:49:25 +02:00
" return asin(1) \n "
" + asin(-1) \n "
" + asin(0.1) \n "
" + asin(0.0001) \n "
" + asin(0.01) \n "
" + asin(1.0E-1) \n "
" + asin(-1.0E-1) \n "
" + asin(+1.0E-1) \n "
" + asin(0.1E-1) \n "
" + asin(+0.1E-1) \n "
" + asin(-0.1E-1) \n "
" + asinf(1) \n "
" + asinf(-1) \n "
" + asinf(0.1) \n "
" + asinf(0.0001) \n "
" + asinf(0.01) \n "
" + asinf(1.0E-1) \n "
" + asinf(-1.0E-1) \n "
" + asinf(+1.0E-1) \n "
" + asinf(0.1E-1) \n "
" + asinf(+0.1E-1) \n "
" + asinf(-0.1E-1) \n "
" + asinl(1) \n "
" + asinl(-1) \n "
" + asinl(0.1) \n "
" + asinl(0.0001) \n "
" + asinl(0.01) \n "
" + asinl(1.0E-1) \n "
" + asinl(-1.0E-1) \n "
" + asinl(+1.0E-1) \n "
" + asinl(0.1E-1) \n "
" + asinl(+0.1E-1) \n "
" + asinl(-0.1E-1); \n "
2010-04-02 20:23:37 +02:00
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() \n "
" { \n "
2013-09-13 19:49:25 +02:00
" std::cout << asin(1.1) << std::endl; \n "
" std::cout << asinf(1.1) << std::endl; \n "
" std::cout << asinl(1.1) << std::endl; \n "
2010-04-02 20:23:37 +02:00
" } " ) ;
2014-09-01 19:29:59 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (warning) Passing value 1.1 to asin() leads to implementation-defined result. \n "
" [test.cpp:4]: (warning) Passing value 1.1 to asinf() leads to implementation-defined result. \n "
" [test.cpp:5]: (warning) Passing value 1.1 to asinl() leads to implementation-defined result. \n " , errout . str ( ) ) ;
2010-04-02 20:23:37 +02:00
check ( " void foo() \n "
" { \n "
2013-09-13 19:49:25 +02:00
" std::cout << asin(-1.1) << std::endl; \n "
" std::cout << asinf(-1.1) << std::endl; \n "
" std::cout << asinl(-1.1) << std::endl; \n "
2010-04-02 20:23:37 +02:00
" } " ) ;
2014-09-01 19:29:59 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (warning) Passing value -1.1 to asin() leads to implementation-defined result. \n "
" [test.cpp:4]: (warning) Passing value -1.1 to asinf() leads to implementation-defined result. \n "
" [test.cpp:5]: (warning) Passing value -1.1 to asinl() leads to implementation-defined result. \n " , errout . str ( ) ) ;
2013-10-09 16:48:46 +02:00
}
2010-04-05 19:35:56 +02:00
2013-10-09 16:48:46 +02:00
void mathfunctionCall_pow ( ) {
// pow, powf, powl
check ( " void foo() \n "
" { \n "
" std::cout << pow(0,-10) << std::endl; \n "
" std::cout << powf(0,-10) << std::endl; \n "
" std::cout << powl(0,-10) << std::endl; \n "
" } " ) ;
2014-09-01 19:29:59 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (warning) Passing values 0 and -10 to pow() leads to implementation-defined result. \n "
" [test.cpp:4]: (warning) Passing values 0 and -10 to powf() leads to implementation-defined result. \n "
" [test.cpp:5]: (warning) Passing values 0 and -10 to powl() leads to implementation-defined result. \n " , errout . str ( ) ) ;
2013-10-09 16:48:46 +02:00
check ( " void foo() \n "
" { \n "
" std::cout << pow(0,10) << std::endl; \n "
" std::cout << powf(0,10) << std::endl; \n "
" std::cout << powl(0,10) << std::endl; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
void mathfunctionCall_atan2 ( ) {
2010-04-05 19:35:56 +02:00
// atan2
check ( " void foo() \n "
" { \n "
" std::cout << atan2(1,1) << std::endl; \n "
" std::cout << atan2(-1,-1) << std::endl; \n "
" std::cout << atan2(0.1,1) << std::endl; \n "
" std::cout << atan2(0.0001,100) << std::endl; \n "
" std::cout << atan2(0.01m-1) << std::endl; \n "
" std::cout << atan2(1.0E-1,-3) << std::endl; \n "
" std::cout << atan2(-1.0E-1,+2) << std::endl; \n "
" std::cout << atan2(+1.0E-1,0) << std::endl; \n "
" std::cout << atan2(0.1E-1,3) << std::endl; \n "
" std::cout << atan2(+0.1E-1,1) << std::endl; \n "
" std::cout << atan2(-0.1E-1,8) << std::endl; \n "
2013-09-13 19:49:25 +02:00
" std::cout << atan2f(1,1) << std::endl; \n "
" std::cout << atan2f(-1,-1) << std::endl; \n "
" std::cout << atan2f(0.1,1) << std::endl; \n "
" std::cout << atan2f(0.0001,100) << std::endl; \n "
" std::cout << atan2f(0.01m-1) << std::endl; \n "
" std::cout << atan2f(1.0E-1,-3) << std::endl; \n "
" std::cout << atan2f(-1.0E-1,+2) << std::endl; \n "
" std::cout << atan2f(+1.0E-1,0) << std::endl; \n "
" std::cout << atan2f(0.1E-1,3) << std::endl; \n "
" std::cout << atan2f(+0.1E-1,1) << std::endl; \n "
" std::cout << atan2f(-0.1E-1,8) << std::endl; \n "
" std::cout << atan2l(1,1) << std::endl; \n "
" std::cout << atan2l(-1,-1) << std::endl; \n "
" std::cout << atan2l(0.1,1) << std::endl; \n "
" std::cout << atan2l(0.0001,100) << std::endl; \n "
" std::cout << atan2l(0.01m-1) << std::endl; \n "
" std::cout << atan2l(1.0E-1,-3) << std::endl; \n "
" std::cout << atan2l(-1.0E-1,+2) << std::endl; \n "
" std::cout << atan2l(+1.0E-1,0) << std::endl; \n "
" std::cout << atan2l(0.1E-1,3) << std::endl; \n "
" std::cout << atan2l(+0.1E-1,1) << std::endl; \n "
" std::cout << atan2l(-0.1E-1,8) << std::endl; \n "
2010-04-05 19:35:56 +02:00
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() \n "
" { \n "
" std::cout << atan2(0,0) << std::endl; \n "
2013-09-13 19:49:25 +02:00
" std::cout << atan2f(0,0) << std::endl; \n "
" std::cout << atan2l(0,0) << std::endl; \n "
2010-04-05 19:35:56 +02:00
" } " ) ;
2014-09-01 19:29:59 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (warning) Passing values 0 and 0 to atan2() leads to implementation-defined result. \n "
" [test.cpp:4]: (warning) Passing values 0 and 0 to atan2f() leads to implementation-defined result. \n "
" [test.cpp:5]: (warning) Passing values 0 and 0 to atan2l() leads to implementation-defined result. \n " , errout . str ( ) ) ;
2013-10-09 16:48:46 +02:00
}
2010-04-05 19:35:56 +02:00
2013-10-09 16:48:46 +02:00
void mathfunctionCall_fmod ( ) {
2013-09-13 19:49:25 +02:00
// fmod, fmodl, fmodf
2010-04-05 19:45:33 +02:00
check ( " void foo() \n "
" { \n "
" std::cout << fmod(1.0,0) << std::endl; \n "
2013-09-13 19:49:25 +02:00
" std::cout << fmodf(1.0,0) << std::endl; \n "
" std::cout << fmodl(1.0,0) << std::endl; \n "
2010-04-05 19:45:33 +02:00
" } " ) ;
2014-09-01 19:29:59 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (warning) Passing values 1.0 and 0 to fmod() leads to implementation-defined result. \n "
" [test.cpp:4]: (warning) Passing values 1.0 and 0 to fmodf() leads to implementation-defined result. \n "
" [test.cpp:5]: (warning) Passing values 1.0 and 0 to fmodl() leads to implementation-defined result. \n " , errout . str ( ) ) ;
2010-04-05 19:45:33 +02:00
2010-04-05 20:07:53 +02:00
check ( " void foo() \n "
" { \n "
" std::cout << fmod(1.0,1) << std::endl; \n "
2013-09-13 19:49:25 +02:00
" std::cout << fmodf(1.0,1) << std::endl; \n "
" std::cout << fmodl(1.0,1) << std::endl; \n "
2014-09-07 11:37:58 +02:00
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
void mathfunctionCall_precision ( ) {
check ( " void foo() { \n "
" print(exp(x) - 1); \n "
" print(log(1 + x)); \n "
" print(1 - erf(x)); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (style) Expression 'exp(x) - 1' can be replaced by 'expm1(x)' to avoid loss of precision. \n "
2014-09-14 13:35:55 +02:00
" [test.cpp:3]: (style) Expression 'log(1 + x)' can be replaced by 'log1p(x)' to avoid loss of precision. \n "
2014-09-07 11:37:58 +02:00
" [test.cpp:4]: (style) Expression '1 - erf(x)' can be replaced by 'erfc(x)' to avoid loss of precision. \n " , errout . str ( ) ) ;
check ( " void foo() { \n "
" print(exp(x) - 1.0); \n "
" print(log(1.0 + x)); \n "
" print(1.0 - erf(x)); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (style) Expression 'exp(x) - 1' can be replaced by 'expm1(x)' to avoid loss of precision. \n "
2014-09-14 13:35:55 +02:00
" [test.cpp:3]: (style) Expression 'log(1 + x)' can be replaced by 'log1p(x)' to avoid loss of precision. \n "
2014-09-07 11:37:58 +02:00
" [test.cpp:4]: (style) Expression '1 - erf(x)' can be replaced by 'erfc(x)' to avoid loss of precision. \n " , errout . str ( ) ) ;
check ( " void foo() { \n "
" print(exp(3 + x*f(a)) - 1); \n "
" print(log(x*4 + 1)); \n "
" print(1 - erf(34*x + f(x) - c)); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (style) Expression 'exp(x) - 1' can be replaced by 'expm1(x)' to avoid loss of precision. \n "
2014-09-14 13:35:55 +02:00
" [test.cpp:3]: (style) Expression 'log(1 + x)' can be replaced by 'log1p(x)' to avoid loss of precision. \n "
2014-09-07 11:37:58 +02:00
" [test.cpp:4]: (style) Expression '1 - erf(x)' can be replaced by 'erfc(x)' to avoid loss of precision. \n " , errout . str ( ) ) ;
check ( " void foo() { \n "
" print(2*exp(x) - 1); \n "
" print(1 - erf(x)/2.0); \n "
2010-04-05 20:07:53 +02:00
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2010-04-02 20:23:37 +02:00
}
2010-04-13 19:30:25 +02:00
2011-10-13 20:53:06 +02:00
void switchRedundantAssignmentTest ( ) {
2012-05-30 01:30:37 +02:00
2010-06-30 09:10:30 +02:00
check ( " void foo() \n "
" { \n "
2012-05-29 06:19:22 +02:00
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" y = 2; \n "
" case 3: \n "
" y = 3; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:7] -> [test.cpp:9]: (warning) Variable 'y' is reassigned a value before the old one has been used. 'break;' missing? \n " , errout . str ( ) ) ;
2010-06-30 09:10:30 +02:00
check ( " void foo() \n "
" { \n "
2012-05-29 06:19:22 +02:00
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" { \n "
" y = 2; \n "
" } \n "
" case 3: \n "
" y = 3; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:8] -> [test.cpp:11]: (warning) Variable 'y' is reassigned a value before the old one has been used. 'break;' missing? \n " , errout . str ( ) ) ;
2010-06-30 09:10:30 +02:00
check ( " void foo() \n "
" { \n "
2012-05-29 06:19:22 +02:00
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" y = 2; \n "
" case 3: \n "
" if (x) \n "
2010-06-30 09:10:30 +02:00
" { \n "
2012-05-29 06:19:22 +02:00
" y = 3; \n "
2010-06-30 09:10:30 +02:00
" } \n "
2012-05-29 06:19:22 +02:00
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2010-06-30 09:10:30 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() \n "
" { \n "
2012-05-29 06:19:22 +02:00
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" { \n "
" y = 2; \n "
2013-04-13 20:17:53 +02:00
" if (z) \n "
2012-05-29 06:19:22 +02:00
" printf( \" %d \" , y); \n "
" } \n "
" case 3: \n "
" y = 3; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2010-06-30 09:10:30 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() \n "
" { \n "
2012-05-29 06:19:22 +02:00
" int x = a; \n "
" int y = 1; \n "
" switch (x) \n "
" { \n "
" case 2: \n "
" x = 2; \n "
" case 3: \n "
" y = 3; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2010-06-30 09:10:30 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() \n "
" { \n "
2012-05-29 06:19:22 +02:00
" int y = 1; \n "
" switch (x) \n "
" { \n "
" case 2: \n "
" y = 2; \n "
" break; \n "
" case 3: \n "
" y = 3; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2010-06-30 09:10:30 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2010-09-04 14:24:45 +02:00
check ( " void foo() \n "
" { \n "
" int y = 1; \n "
" while(xyz()) { \n "
" switch (x) \n "
" { \n "
" case 2: \n "
" y = 2; \n "
" continue; \n "
" case 3: \n "
" y = 3; \n "
" } \n "
2011-10-30 11:27:27 +01:00
" bar(y); \n "
2010-09-04 14:24:45 +02:00
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2010-09-04 14:24:45 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-03-11 19:27:31 +01:00
check ( " void foo() \n "
" { \n "
" int y = 1; \n "
" while(xyz()) { \n "
" switch (x) \n "
" { \n "
" case 2: \n "
" y = 2; \n "
" throw e; \n "
" case 3: \n "
" y = 3; \n "
" } \n "
2011-10-30 11:27:27 +01:00
" bar(y); \n "
2011-03-11 19:27:31 +01:00
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-03-11 19:27:31 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2010-06-30 09:10:30 +02:00
check ( " void foo() \n "
" { \n "
2012-05-29 06:19:22 +02:00
" int y = 1; \n "
" switch (x) \n "
" { \n "
" case 2: \n "
" y = 2; \n "
" printf( \" %d \" , y); \n "
" case 3: \n "
" y = 3; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2010-06-30 09:10:30 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() \n "
" { \n "
2012-05-29 06:19:22 +02:00
" int y = 1; \n "
" switch (x) \n "
" { \n "
" case 2: \n "
" y = 2; \n "
" bar(); \n "
" case 3: \n "
" y = 3; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2010-06-30 09:10:30 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-10-13 10:27:22 +02:00
2012-09-03 12:03:30 +02:00
check ( " void bar() {} \n " // bar isn't noreturn
" void foo() \n "
" { \n "
" int y = 1; \n "
" switch (x) \n "
" { \n "
" case 2: \n "
" y = 2; \n "
" bar(); \n "
" case 3: \n "
" y = 3; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:8] -> [test.cpp:11]: (warning) Variable 'y' is reassigned a value before the old one has been used. 'break;' missing? \n " , errout . str ( ) ) ;
2012-09-03 12:03:30 +02:00
2011-10-13 10:27:22 +02:00
check ( " void foo(char *str, int a) \n "
" { \n "
2012-05-29 06:19:22 +02:00
" switch (a) \n "
" { \n "
" case 2: \n "
" strcpy(str, \" a' \" ); \n "
" case 3: \n "
" strcpy(str, \" b' \" ); \n "
" } \n "
2013-04-13 20:17:53 +02:00
" } " , 0 , false , false , false , false ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:6] -> [test.cpp:8]: (warning) Buffer 'str' is being written before its old content has been used. 'break;' missing? \n " , errout . str ( ) ) ;
2011-10-13 10:27:22 +02:00
check ( " void foo(char *str, int a) \n "
" { \n "
2012-05-29 06:19:22 +02:00
" switch (a) \n "
" { \n "
" case 2: \n "
" strncpy(str, \" a' \" ); \n "
" case 3: \n "
" strncpy(str, \" b' \" ); \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:6] -> [test.cpp:8]: (warning) Buffer 'str' is being written before its old content has been used. 'break;' missing? \n " , errout . str ( ) ) ;
2011-10-13 10:27:22 +02:00
check ( " void foo(char *str, int a) \n "
" { \n "
2012-05-29 06:19:22 +02:00
" int z = 0; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" strcpy(str, \" a' \" ); \n "
" z++; \n "
" case 3: \n "
" strcpy(str, \" b' \" ); \n "
" z++; \n "
" } \n "
2013-04-13 20:17:53 +02:00
" } " , 0 , false , false , false , false ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:7] -> [test.cpp:10]: (warning) Buffer 'str' is being written before its old content has been used. 'break;' missing? \n " , errout . str ( ) ) ;
2011-10-13 10:27:22 +02:00
check ( " void foo(char *str, int a) \n "
" { \n "
2012-05-29 06:19:22 +02:00
" switch (a) \n "
" { \n "
" case 2: \n "
" strcpy(str, \" a' \" ); \n "
" break; \n "
" case 3: \n "
" strcpy(str, \" b' \" ); \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-10-13 10:27:22 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo(char *str, int a) \n "
" { \n "
2012-05-29 06:19:22 +02:00
" switch (a) \n "
" { \n "
" case 2: \n "
" strcpy(str, \" a' \" ); \n "
" printf(str); \n "
" case 3: \n "
" strcpy(str, \" b' \" ); \n "
" } \n "
2013-04-13 20:17:53 +02:00
" } " , 0 , false , false , false , false ) ;
2012-05-29 06:19:22 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-11-10 16:22:52 +01:00
// Ticket #5158 "segmentation fault (valid code)"
check ( " typedef struct ct_data_s { \n "
" union { \n "
" char freq; \n "
" } fc; \n "
" } ct_data; \n "
" typedef struct internal_state { \n "
" struct ct_data_s dyn_ltree[10]; \n "
" } deflate_state; \n "
" void f(deflate_state *s) { \n "
" s->dyn_ltree[0].fc.freq++; \n "
" } \n " , 0 , false , false , false , false ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-09-05 20:03:34 +02:00
// Ticket #6132 "crash: daca: kvirc CheckOther::checkRedundantAssignment()"
check ( " void HttpFileTransfer :: transferTerminated ( bool bSuccess@1 ) { \n "
" if ( m_szCompletionCallback . isNull ( ) ) { \n "
" KVS_TRIGGER_EVENT ( KviEvent_OnHTTPGetTerminated , out ? out : ( g_pApp . activeConsole ( ) ) , & vParams ) \n "
" } else { \n "
" KviKvsScript :: run ( m_szCompletionCallback , out ? out : ( g_pApp . activeConsole ( ) ) , & vParams ) ; \n "
" } \n "
" } \n " , 0 , false , false , false , true ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-05-09 15:25:36 +02:00
}
2012-11-15 07:48:45 +01:00
2013-05-09 15:25:36 +02:00
void switchRedundantOperationTest ( ) {
check ( " void foo() \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
2012-08-22 14:40:57 +02:00
" { \n "
" case 2: \n "
" ++y; \n "
2013-05-09 15:25:36 +02:00
" case 3: \n "
" y = 3; \n "
2012-08-22 14:40:57 +02:00
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:7] -> [test.cpp:9]: (warning) Variable 'y' is reassigned a value before the old one has been used. 'break;' missing? \n " , errout . str ( ) ) ;
2012-08-22 14:40:57 +02:00
check ( " void foo() \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" { \n "
" ++y; \n "
" } \n "
" case 3: \n "
" y = 3; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:8] -> [test.cpp:11]: (warning) Variable 'y' is reassigned a value before the old one has been used. 'break;' missing? \n " , errout . str ( ) ) ;
2012-08-22 14:40:57 +02:00
check ( " void foo() \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" y; \n "
" case 3: \n "
" ++y; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-08-22 14:40:57 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" ++y; \n "
" case 3: \n "
" ++y; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-08-22 14:40:57 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" --y; \n "
" case 3: \n "
" y = 3; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:7] -> [test.cpp:9]: (warning) Variable 'y' is reassigned a value before the old one has been used. 'break;' missing? \n " , errout . str ( ) ) ;
2012-08-22 14:40:57 +02:00
check ( " void foo() \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" { \n "
" --y; \n "
" } \n "
" case 3: \n "
" y = 3; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:8] -> [test.cpp:11]: (warning) Variable 'y' is reassigned a value before the old one has been used. 'break;' missing? \n " , errout . str ( ) ) ;
2012-08-22 14:40:57 +02:00
check ( " void foo() \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" y; \n "
" case 3: \n "
" --y; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-08-22 14:40:57 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" --y; \n "
" case 3: \n "
" --y; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-08-22 14:40:57 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" y++; \n "
" case 3: \n "
" y = 3; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:7] -> [test.cpp:9]: (warning) Variable 'y' is reassigned a value before the old one has been used. 'break;' missing? \n " , errout . str ( ) ) ;
2012-08-22 14:40:57 +02:00
check ( " void foo() \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" { \n "
" y++; \n "
" } \n "
" case 3: \n "
" y = 3; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:8] -> [test.cpp:11]: (warning) Variable 'y' is reassigned a value before the old one has been used. 'break;' missing? \n " , errout . str ( ) ) ;
2012-08-22 14:40:57 +02:00
check ( " void foo() \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" y = 2; \n "
" case 3: \n "
" y++; \n "
" } \n "
" bar(y); \n "
2013-04-13 20:17:53 +02:00
" } " , 0 , false , false , false , false ) ;
2012-08-22 14:40:57 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" y++; \n "
" case 3: \n "
" y++; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-08-22 14:40:57 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" y--; \n "
" case 3: \n "
" y = 3; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:7] -> [test.cpp:9]: (warning) Variable 'y' is reassigned a value before the old one has been used. 'break;' missing? \n " , errout . str ( ) ) ;
2012-08-22 14:40:57 +02:00
check ( " void foo() \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" { \n "
" y--; \n "
" } \n "
" case 3: \n "
" y = 3; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:8] -> [test.cpp:11]: (warning) Variable 'y' is reassigned a value before the old one has been used. 'break;' missing? \n " , errout . str ( ) ) ;
2012-08-22 14:40:57 +02:00
check ( " void foo() \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" y = 2; \n "
" case 3: \n "
" y--; \n "
" } \n "
" bar(y); \n "
2013-04-13 20:17:53 +02:00
" } " , 0 , false , false , false , false ) ;
2012-08-22 14:40:57 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" y--; \n "
" case 3: \n "
" y--; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-08-22 14:40:57 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" y++; \n "
" case 3: \n "
" if (x) \n "
" { \n "
" y = 3; \n "
" } \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-08-22 14:40:57 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" { \n "
" y++; \n "
" if (y) \n "
" printf( \" %d \" , y); \n "
" } \n "
" case 3: \n "
" y = 3; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-08-22 14:40:57 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() \n "
" { \n "
" int x = a; \n "
" int y = 1; \n "
" switch (x) \n "
" { \n "
" case 2: \n "
" x++; \n "
" case 3: \n "
" y++; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-08-22 14:40:57 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() \n "
" { \n "
" int y = 1; \n "
" switch (x) \n "
" { \n "
" case 2: \n "
" y++; \n "
" break; \n "
" case 3: \n "
" y = 3; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-08-22 14:40:57 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() \n "
" { \n "
" int y = 1; \n "
" while(xyz()) { \n "
" switch (x) \n "
" { \n "
" case 2: \n "
" y++; \n "
" continue; \n "
" case 3: \n "
" y = 3; \n "
" } \n "
" bar(y); \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-08-22 14:40:57 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() \n "
" { \n "
" int y = 1; \n "
" while(xyz()) { \n "
" switch (x) \n "
" { \n "
" case 2: \n "
" y++; \n "
" throw e; \n "
" case 3: \n "
" y = 3; \n "
" } \n "
" bar(y); \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-08-22 14:40:57 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() \n "
" { \n "
" int y = 1; \n "
" switch (x) \n "
" { \n "
" case 2: \n "
" y++; \n "
" printf( \" %d \" , y); \n "
" case 3: \n "
" y = 3; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-08-22 14:40:57 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() \n "
" { \n "
" int y = 1; \n "
" switch (x) \n "
" { \n "
" case 2: \n "
" y++; \n "
" bar(); \n "
" case 3: \n "
" y = 3; \n "
" } \n "
" bar(y); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-08-22 14:40:57 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2012-05-29 06:19:22 +02:00
void switchRedundantBitwiseOperationTest ( ) {
check ( " void foo(int a) \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" y |= 3; \n "
" case 3: \n "
" y |= 3; \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:7]: (warning) Redundant bitwise operation on 'y' in 'switch' statement. 'break;' missing? \n " , errout . str ( ) ) ;
2012-05-29 06:19:22 +02:00
check ( " void foo(int a) \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" y |= 3; \n "
" default: \n "
" y |= 3; \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:7]: (warning) Redundant bitwise operation on 'y' in 'switch' statement. 'break;' missing? \n " , errout . str ( ) ) ;
2012-05-29 06:19:22 +02:00
check ( " void foo(int a) \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" y |= 3; \n "
" default: \n "
" if (z) \n "
" y |= 3; \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-05-29 06:19:22 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo(int a) \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" y |= z; \n "
" z++ \n "
" default: \n "
" y |= z; \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-05-29 06:19:22 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo(int a) \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" y |= 3; \n "
" bar(y); \n "
" case 3: \n "
" y |= 3; \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-05-29 06:19:22 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo(int a) \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" y |= 3; \n "
" y = 4; \n "
" case 3: \n "
" y |= 3; \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-05-29 06:19:22 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo(int a) \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" y &= 3; \n "
" case 3: \n "
" y &= 3; \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:7]: (warning) Redundant bitwise operation on 'y' in 'switch' statement. 'break;' missing? \n " , errout . str ( ) ) ;
2012-05-29 06:19:22 +02:00
check ( " void foo(int a) \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" y |= 3; \n "
" break; \n "
" case 3: \n "
" y |= 3; \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-05-29 06:19:22 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo(int a) \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" y ^= 3; \n "
" case 3: \n "
" y ^= 3; \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-05-29 06:19:22 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo(int a) \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" y |= 2; \n "
" case 3: \n "
" y |= 3; \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-05-29 06:19:22 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo(int a) \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" y &= 2; \n "
" case 3: \n "
" y &= 3; \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-05-29 06:19:22 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo(int a) \n "
" { \n "
" int y = 1; \n "
" switch (a) \n "
" { \n "
" case 2: \n "
" y |= 2; \n "
" case 3: \n "
" y &= 2; \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-10-13 10:27:22 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2010-06-30 09:10:30 +02:00
}
2010-08-14 15:15:12 +02:00
2011-10-13 20:53:06 +02:00
void switchFallThroughCase ( ) {
2011-02-19 09:33:29 +01:00
check_preprocess_suppress (
" void foo() { \n "
" switch (a) { \n "
" case 1: \n "
" break; \n "
" case 2: \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-02-19 09:33:29 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-02-19 20:02:28 +01:00
check_preprocess_suppress (
2011-03-11 19:27:31 +01:00
" void foo() { \n "
" switch (a) { \n "
" case 1: \n "
" break; \n "
" case 2: \n "
" continue; \n "
" case 3: \n "
" return; \n "
" case 4: \n "
" exit(1); \n "
" case 5: \n "
" goto end; \n "
" case 6: \n "
" throw e; \n "
" case 7: \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-03-11 19:27:31 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check_preprocess_suppress (
2011-02-19 20:02:28 +01:00
" void foo() { \n "
" switch (a) { \n "
" case 0: \n "
" case 1: \n "
" break; \n "
" case 2: \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-02-19 20:02:28 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-02-19 09:33:29 +01:00
check_preprocess_suppress (
" void foo() { \n "
" switch (a) { \n "
" case 1: \n "
" g(); \n "
" case 2: \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:5]: (style) Switch falls through case without comment. 'break;' missing? \n " , errout . str ( ) ) ;
2011-02-19 09:33:29 +01:00
2011-02-19 20:02:28 +01:00
check_preprocess_suppress (
" void foo() { \n "
" switch (a) { \n "
" case 1: \n "
" g(); \n "
" default: \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:5]: (style) Switch falls through case without comment. 'break;' missing? \n " , errout . str ( ) ) ;
2011-02-19 20:02:28 +01:00
2011-02-19 09:33:29 +01:00
check_preprocess_suppress (
" void foo() { \n "
" switch (a) { \n "
" case 1: \n "
" g(); \n "
" // fall through \n "
" case 2: \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-02-19 09:33:29 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-02-19 21:54:01 +01:00
check_preprocess_suppress (
" void foo() { \n "
" switch (a) { \n "
" case 1: \n "
" g(); \n "
" /* FALLTHRU */ \n "
" case 2: \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-02-19 21:54:01 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-02-19 09:33:29 +01:00
check_preprocess_suppress (
" void foo() { \n "
" switch (a) { \n "
" case 1: \n "
" g(); \n "
" break; \n "
" // fall through \n "
" case 2: \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-02-19 20:02:28 +01:00
ASSERT_EQUALS ( " [test.cpp:7]: (information) Unmatched suppression: switchCaseFallThrough \n " , errout . str ( ) ) ;
check_preprocess_suppress (
" void foo() { \n "
" switch (a) { \n "
" case 1: \n "
" { \n "
" break; \n "
" } \n "
" case 2: \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-02-19 09:33:29 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-02-19 20:02:28 +01:00
check_preprocess_suppress (
" void foo() { \n "
" switch (a) { \n "
" case 1: \n "
" for (;;) { \n "
" break; \n "
" } \n "
" case 2: \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:7]: (style) Switch falls through case without comment. 'break;' missing? \n " , errout . str ( ) ) ;
2011-02-19 20:02:28 +01:00
check_preprocess_suppress (
" void foo() { \n "
" switch (a) { \n "
" case 1: \n "
" if (b) { \n "
" break; \n "
" } else { \n "
" break; \n "
" } \n "
" case 2: \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-02-19 20:02:28 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check_preprocess_suppress (
" void foo() { \n "
" switch (a) { \n "
" case 1: \n "
" if (b) { \n "
" break; \n "
" } else { \n "
" } \n "
" case 2: \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:8]: (style) Switch falls through case without comment. 'break;' missing? \n " , errout . str ( ) ) ;
2011-02-19 20:02:28 +01:00
check_preprocess_suppress (
" void foo() { \n "
" switch (a) { \n "
" case 1: \n "
" if (b) { \n "
" break; \n "
" } \n "
" case 2: \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:7]: (style) Switch falls through case without comment. 'break;' missing? \n " , errout . str ( ) ) ;
2011-02-19 20:02:28 +01:00
check_preprocess_suppress (
" void foo() { \n "
" switch (a) { \n "
" case 1: \n "
" if (b) { \n "
" } else { \n "
" break; \n "
" } \n "
" case 2: \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:8]: (style) Switch falls through case without comment. 'break;' missing? \n " , errout . str ( ) ) ;
2011-02-19 20:02:28 +01:00
check_preprocess_suppress (
" void foo() { \n "
" switch (a) { \n "
" case 1: \n "
" if (b) { \n "
" case 2: \n "
" } else { \n "
" break; \n "
" } \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:5]: (style) Switch falls through case without comment. 'break;' missing? \n " , errout . str ( ) ) ;
2011-02-23 10:45:21 +01:00
check_preprocess_suppress (
" void foo() { \n "
" switch (a) { \n "
" int x; \n "
" case 1: \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-02-23 10:45:21 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-03-04 07:22:17 +01:00
check_preprocess_suppress (
" void foo() { \n "
" switch (a) { \n "
" case 1: \n "
" g(); \n "
" switch (b) { \n "
" case 1: \n "
" return; \n "
" default: \n "
" return; \n "
" } \n "
" case 2: \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-03-04 07:22:17 +01:00
// This fails because the switch parsing code currently doesn't understand
// that all paths after g() actually return. It's a pretty unusual case
// (no pun intended).
TODO_ASSERT_EQUALS ( " " ,
2012-09-16 19:44:02 +02:00
" [test.cpp:11]: (style) Switch falls through case without comment. 'break;' missing? \n " , errout . str ( ) ) ;
2011-03-04 07:26:48 +01:00
check_preprocess_suppress (
" void foo() { \n "
" switch (a) { \n "
" case 1: \n "
" #ifndef A \n "
" g(); \n "
" // fall through \n "
" #endif \n "
" case 2: \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-03-04 07:26:48 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-03-04 08:26:14 +01:00
check_preprocess_suppress (
" void foo() { \n "
" switch (a) { \n "
" case 1: \n "
" goto leave; \n "
" case 2: \n "
" break; \n "
" } \n "
" leave: \n "
" if (x) { \n "
" g(); \n "
" return; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2014-01-17 17:36:45 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-03-05 06:02:38 +01:00
check_preprocess_suppress (
" void foo() { \n "
" switch (a) { \n "
" case 1: \n "
" g(); \n "
" // fall through \n "
" case 2: \n "
" g(); \n "
" // falls through \n "
" case 3: \n "
" g(); \n "
" // fall-through \n "
" case 4: \n "
" g(); \n "
" // drop through \n "
" case 5: \n "
" g(); \n "
" // pass through \n "
" case 5: \n "
" g(); \n "
" // no break \n "
" case 5: \n "
" g(); \n "
" // fallthru \n "
" case 6: \n "
" g(); \n "
" /* fall */ \n "
" default: \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-03-05 06:02:38 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-03-06 00:14:10 +01:00
check_preprocess_suppress (
" void foo() { \n "
" // unrelated comment saying 'fall through' \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-03-06 00:14:10 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-02-19 09:33:29 +01:00
}
2011-12-07 18:20:52 +01:00
void unreachableCode ( ) {
2011-12-03 11:43:23 +01:00
check ( " void foo(int a) { \n "
" while(1) { \n "
" if (a++ >= 100) { \n "
" break; \n "
" continue; \n "
" } \n "
" } \n "
2013-04-13 20:17:53 +02:00
" } " , 0 , false , false , false , false ) ;
2011-12-28 21:05:10 +01:00
ASSERT_EQUALS ( " [test.cpp:5]: (style) Consecutive return, break, continue, goto or throw statements are unnecessary. \n " , errout . str ( ) ) ;
2011-12-03 11:43:23 +01:00
check ( " int foo(int a) { \n "
" return 0; \n "
" return(a-1); \n "
2013-04-13 20:17:53 +02:00
" } " , 0 , false , false , false , false ) ;
2011-12-28 21:05:10 +01:00
ASSERT_EQUALS ( " [test.cpp:3]: (style) Consecutive return, break, continue, goto or throw statements are unnecessary. \n " , errout . str ( ) ) ;
2011-12-03 11:43:23 +01:00
check ( " int foo(int a) { \n "
" A: "
" return(0); \n "
" goto A; \n "
2013-04-13 20:17:53 +02:00
" } " , 0 , false , false , false , false ) ;
2011-12-28 21:05:10 +01:00
ASSERT_EQUALS ( " [test.cpp:3]: (style) Consecutive return, break, continue, goto or throw statements are unnecessary. \n " , errout . str ( ) ) ;
2011-12-03 11:43:23 +01:00
2013-08-06 11:11:59 +02:00
Settings settings ;
settings . library . setnoreturn ( " exit " , true ) ;
check ( " void foo() { \n "
" exit(0); \n "
" break; \n "
" } " , 0 , false , false , false , false , & settings ) ;
ASSERT_EQUALS ( " [test.cpp:3]: (style) Consecutive return, break, continue, goto or throw statements are unnecessary. \n " , errout . str ( ) ) ;
2014-03-22 18:56:47 +01:00
check ( " class NeonSession { \n "
" void exit(); \n "
" }; \n "
" void NeonSession::exit() \n "
" { \n "
" SAL_INFO( \" ucb.ucp.webdav \" , \" neon commands cannot be aborted \" ); \n "
" } " , 0 , false , false , false , false , & settings ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-03-22 19:55:13 +01:00
check ( " void NeonSession::exit() \n "
" { \n "
" SAL_INFO( \" ucb.ucp.webdav \" , \" neon commands cannot be aborted \" ); \n "
" } " , 0 , false , false , false , false , & settings ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-03-22 22:35:20 +01:00
check ( " void foo() { xResAccess->exit(); } " , 0 , false , false , false , false , & settings ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-07-15 02:12:56 +02:00
check ( " void foo(int a) \n "
" { \n "
" switch(a) { \n "
" case 0: \n "
" printf( \" case 0 \" ); \n "
" break; \n "
" break; \n "
" case 1: \n "
" c++; \n "
" break; \n "
" } \n "
2013-04-13 20:17:53 +02:00
" } " , 0 , false , false , false , false ) ;
2011-12-28 21:05:10 +01:00
ASSERT_EQUALS ( " [test.cpp:7]: (style) Consecutive return, break, continue, goto or throw statements are unnecessary. \n " , errout . str ( ) ) ;
2011-07-15 02:12:56 +02:00
check ( " void foo(int a) \n "
" { \n "
" switch(a) { \n "
" case 0: \n "
" printf( \" case 0 \" ); \n "
" break; \n "
" case 1: \n "
" c++; \n "
" break; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-07-15 02:12:56 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo(int a) \n "
" { \n "
2013-04-13 20:17:53 +02:00
" while(true) { \n "
2011-07-15 02:12:56 +02:00
" if (a++ >= 100) { \n "
" break; \n "
" break; \n "
" } \n "
" } \n "
2013-04-13 20:17:53 +02:00
" } " , 0 , false , false , false , false ) ;
2011-12-28 21:05:10 +01:00
ASSERT_EQUALS ( " [test.cpp:6]: (style) Consecutive return, break, continue, goto or throw statements are unnecessary. \n " , errout . str ( ) ) ;
2011-07-15 02:12:56 +02:00
check ( " void foo(int a) \n "
" { \n "
2013-04-13 20:17:53 +02:00
" while(true) { \n "
2011-07-15 02:12:56 +02:00
" if (a++ >= 100) { \n "
" continue; \n "
" continue; \n "
" } \n "
" a+=2; \n "
" } \n "
2013-04-13 20:17:53 +02:00
" } " , 0 , false , false , false , false ) ;
2011-12-28 21:05:10 +01:00
ASSERT_EQUALS ( " [test.cpp:6]: (style) Consecutive return, break, continue, goto or throw statements are unnecessary. \n " , errout . str ( ) ) ;
2011-07-15 02:12:56 +02:00
check ( " void foo(int a) \n "
" { \n "
2013-04-13 20:17:53 +02:00
" while(true) { \n "
2011-07-15 02:12:56 +02:00
" if (a++ >= 100) { \n "
" continue; \n "
" } \n "
" a+=2; \n "
" } \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-07-15 02:12:56 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-12-03 11:43:23 +01:00
check ( " int foo() { \n "
" throw 0; \n "
" return 1; \n "
2013-04-13 20:17:53 +02:00
" } " , 0 , false , false , false , false ) ;
2011-12-03 11:43:23 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() { \n "
" throw 0; \n "
" return; \n "
2013-04-13 20:17:53 +02:00
" } " , 0 , false , false , false , false ) ;
2011-12-28 21:05:10 +01:00
ASSERT_EQUALS ( " [test.cpp:3]: (style) Consecutive return, break, continue, goto or throw statements are unnecessary. \n " , errout . str ( ) ) ;
2011-12-03 11:43:23 +01:00
check ( " int foo() { \n "
" return 0; \n "
" return 1; \n "
2013-04-13 20:17:53 +02:00
" } " , 0 , false , false , false , false ) ;
2011-12-28 21:05:10 +01:00
ASSERT_EQUALS ( " [test.cpp:3]: (style) Consecutive return, break, continue, goto or throw statements are unnecessary. \n " , errout . str ( ) ) ;
2011-12-03 11:43:23 +01:00
check ( " int foo() { \n "
" return 0; \n "
" foo(); \n "
2013-04-13 20:17:53 +02:00
" } " , 0 , false , false , false , false ) ;
2011-12-28 21:05:10 +01:00
ASSERT_EQUALS ( " [test.cpp:3]: (style) Statements following return, break, continue, goto or throw will never be executed. \n " , errout . str ( ) ) ;
2011-12-03 11:43:23 +01:00
check ( " int foo() { \n "
" if(bar) \n "
" return 0; \n "
" return 124; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " int foo() { \n "
" while(bar) { \n "
" return 0; \n "
" return 0; \n "
" return 0; \n "
" return 0; \n "
" } \n "
" return 124; \n "
2013-04-13 20:17:53 +02:00
" } " , 0 , false , false , false , false ) ;
2011-12-28 21:05:10 +01:00
ASSERT_EQUALS ( " [test.cpp:4]: (style) Consecutive return, break, continue, goto or throw statements are unnecessary. \n " , errout . str ( ) ) ;
2011-12-03 11:43:23 +01:00
check ( " void foo() { \n "
" while(bar) { \n "
" return; \n "
" break; \n "
" } \n "
2013-04-13 20:17:53 +02:00
" } " , 0 , false , false , false , false ) ;
2011-12-28 21:05:10 +01:00
ASSERT_EQUALS ( " [test.cpp:4]: (style) Consecutive return, break, continue, goto or throw statements are unnecessary. \n " , errout . str ( ) ) ;
2011-12-03 11:43:23 +01:00
2014-04-23 07:58:43 +02:00
// #5707
check ( " extern int i,j \n "
" int foo() { \n "
" switch(i) { \n "
" default: j=1; break; \n "
" } \n "
" return 0; \n "
" j=2; \n "
" } " , 0 , false , false , false , false ) ;
ASSERT_EQUALS ( " [test.cpp:7]: (style) Statements following return, break, continue, goto or throw will never be executed. \n " , errout . str ( ) ) ;
2011-12-03 11:43:23 +01:00
check ( " int foo() { \n "
" return 0; \n "
" label: \n "
" throw 0; \n "
2013-04-13 20:17:53 +02:00
" } " , 0 , false , false , false , false ) ;
2011-12-03 11:43:23 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-12-07 18:20:52 +01:00
check ( " void foo() { \n "
" wxCHECK2(state < 3 && state >= 0, return); \n "
" _checkboxState = state; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " struct A { \n "
" virtual void foo (P & Val) throw (); \n "
" virtual void foo1 (P & Val) throw (); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-12-23 12:46:59 +01:00
2011-12-31 23:11:03 +01:00
check ( " int foo() { \n "
" goto label; \n "
" while (true) { \n "
" bar(); \n "
" label: \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ; // #3457
check ( " int foo() { \n "
" goto label; \n "
" do { \n "
" bar(); \n "
" label: \n "
" } while (true); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ; // #3457
check ( " int foo() { \n "
" goto label; \n "
" for (;;) { \n "
" bar(); \n "
" label: \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ; // #3457
2011-12-23 12:46:59 +01:00
check ( " %: return ; () " ) ; // Don't crash. #3441.
2012-04-05 10:38:29 +02:00
// #3383. TODO: Use preprocessor
check ( " int foo() { \n "
" \n " // #ifdef A
" return 0; \n "
" \n " // #endif
" return 1; \n "
2013-04-13 20:17:53 +02:00
" } " , 0 , false , false , false , false ) ;
2012-04-05 10:38:29 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " int foo() { \n "
" \n " // #ifdef A
" return 0; \n "
" \n " // #endif
" return 1; \n "
2013-04-13 20:17:53 +02:00
" } " , 0 , false , true , false , false ) ;
2012-05-06 19:37:41 +02:00
ASSERT_EQUALS ( " [test.cpp:5]: (style, inconclusive) Consecutive return, break, continue, goto or throw statements are unnecessary. \n " , errout . str ( ) ) ;
2013-05-11 17:50:59 +02:00
// #4711 lambda functions
check ( " int f() { \n "
" return g([](int x){x+1; return x;}); \n "
" } " , 0 , false , false , false , false ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-06-18 06:40:43 +02:00
// #4756
check ( " template <> \n "
" inline uint16_t htobe(uint16_t value) { \n "
" return ( __extension__ ({ \n "
" register unsigned short int __v, __x = (unsigned short int) (value); \n "
" if (__builtin_constant_p (__x)) \n "
" __v = ((unsigned short int) ((((__x) >> 8) & 0xff) | (((__x) & 0xff) << 8))); \n "
" else \n "
" __asm__ ( \" rorw $8, %w0 \" : \" =r \" (__v) : \" 0 \" (__x) : \" cc \" ); \n "
" __v; \n "
" })); \n "
" } " , 0 , false , false , false , false ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-09-01 11:10:42 +02:00
// #6008
check ( " static std::function< int ( int, int ) > GetFunctor() { \n "
" return [](int a_, int b_) -> int { \n "
" int sum = a_ + b_; \n "
" return sum; \n "
" }; \n "
" } " , 0 , false , false , false , false ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-09-01 11:29:39 +02:00
// #5789
check ( " struct per_state_info { \n "
" uint64_t enter, exit; \n "
" uint64_t events; \n "
" per_state_info() : enter(0), exit(0), events(0) {} \n "
" }; " , 0 , false , false , false , false ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-09-01 12:41:30 +02:00
// Garbage code - don't crash
check ( " namespace pr16989 { \n "
" class C { \n "
" C tpl_mem(T *) { return } \n "
" }; \n "
" } " ) ;
2011-07-15 02:12:56 +02:00
}
2012-12-07 21:27:32 +01:00
void suspiciousCase ( ) {
check ( " void foo() { \n "
" switch(a) { \n "
" case A&&B: \n "
" foo(); \n "
" case (A||B): \n "
" foo(); \n "
2013-04-13 20:17:53 +02:00
" case A||B: \n "
2012-12-07 21:27:32 +01:00
" foo(); \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3]: (warning, inconclusive) Found suspicious case label in switch(). Operator '&&' probably doesn't work as intended. \n "
" [test.cpp:5]: (warning, inconclusive) Found suspicious case label in switch(). Operator '||' probably doesn't work as intended. \n "
" [test.cpp:7]: (warning, inconclusive) Found suspicious case label in switch(). Operator '||' probably doesn't work as intended. \n " , errout . str ( ) ) ;
check ( " void foo() { \n "
" switch(a) { \n "
" case 1: \n "
" a=A&&B; \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2012-12-07 21:44:30 +01:00
check ( " void foo() { \n "
" switch(a) { \n "
" case A&&B?B:A: \n "
" foo(); \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2012-12-07 21:27:32 +01:00
}
2013-01-18 08:03:04 +01:00
void suspiciousEqualityComparison ( ) {
check ( " void foo(int c) { \n "
" if (c == 1) c == 0; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (warning, inconclusive) Found suspicious equality comparison. Did you intend to assign a value instead? \n " , errout . str ( ) ) ;
check ( " void foo(int* c) { \n "
" if (*c == 1) *c == 0; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (warning, inconclusive) Found suspicious equality comparison. Did you intend to assign a value instead? \n " , errout . str ( ) ) ;
check ( " void foo(int c) { \n "
" if (c == 1) { \n "
" c = 0; \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo(int c) { \n "
" c == 1; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (warning, inconclusive) Found suspicious equality comparison. Did you intend to assign a value instead? \n " , errout . str ( ) ) ;
check ( " void foo(int c) { \n "
" for (int i = 0; i == 10; i ++) { \n "
" a ++; \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo(int c) { \n "
" for (i == 0; i < 10; i ++) { \n "
" c ++; \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (warning, inconclusive) Found suspicious equality comparison. Did you intend to assign a value instead? \n " , errout . str ( ) ) ;
check ( " void foo(int c) { \n "
" for (i == 1; i < 10; i ++) { \n "
" c ++; \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (warning, inconclusive) Found suspicious equality comparison. Did you intend to assign a value instead? \n " , errout . str ( ) ) ;
check ( " void foo(int c) { \n "
" for (i == 2; i < 10; i ++) { \n "
" c ++; \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (warning, inconclusive) Found suspicious equality comparison. Did you intend to assign a value instead? \n " , errout . str ( ) ) ;
check ( " void foo(int c) { \n "
" for (int i = 0; i < 10; i == c) { \n "
" c ++; \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (warning, inconclusive) Found suspicious equality comparison. Did you intend to assign a value instead? \n " , errout . str ( ) ) ;
check ( " void foo(int c) { \n "
" for (; running == 1;) { \n "
" c ++; \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo(int c) { \n "
" printf( \" %i \n \" , ({x==0;})); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo(int x) { \n "
" printf( \" %i \n \" , ({int x = do_something(); x == 0;})); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo(int x) { \n "
" printf( \" %i \n \" , ({x == 0; x > 0 ? 10 : 20})); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (warning, inconclusive) Found suspicious equality comparison. Did you intend to assign a value instead? \n " , errout . str ( ) ) ;
2013-01-19 01:34:15 +01:00
check ( " void foo(int x) { \n "
2013-04-13 20:17:53 +02:00
" for (const Token* end = tok->link(); tok != end; tok = (tok == end) ? end : tok->next()) { \n "
2013-01-19 01:34:15 +01:00
" x++; \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo(int x) { \n "
" for (int i = (x == 0) ? 0 : 5; i < 10; i ++) { \n "
" x++; \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo(int x) { \n "
" for (int i = 0; i < 10; i += (x == 5) ? 1 : 2) { \n "
" x++; \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-01-18 08:03:04 +01:00
}
2012-12-07 21:27:32 +01:00
2011-10-13 20:53:06 +02:00
void selfAssignment ( ) {
2010-08-15 06:28:22 +02:00
check ( " void foo() \n "
" { \n "
2014-05-21 18:19:42 +02:00
" int x = 1; \n "
" x = x; \n "
" return 0; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:4]: (warning) Redundant assignment of 'x' to itself. \n " , errout . str ( ) ) ;
2010-08-15 06:28:22 +02:00
check ( " void foo() \n "
" { \n "
2014-05-21 18:19:42 +02:00
" int x = x; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (warning) Redundant assignment of 'x' to itself. \n " , errout . str ( ) ) ;
2010-08-15 06:28:22 +02:00
check ( " void foo() \n "
" { \n "
2014-05-21 18:19:42 +02:00
" std::string var = var = \" test \" ; \n "
" } " ) ;
TODO_ASSERT_EQUALS ( " [test.cpp:3]: (warning) Redundant assignment of 'var' to itself. \n " , " " , errout . str ( ) ) ;
check ( " struct A { int b; }; \n "
" void foo(A* a1, A* a2) { \n "
" a1->b = a1->b; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2014-06-28 15:26:22 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (warning) Redundant assignment of 'a1.b' to itself. \n " , errout . str ( ) ) ;
2010-08-15 06:28:22 +02:00
2012-08-21 20:15:04 +02:00
// #4073 (segmentation fault)
check ( " void Foo::myFunc( int a ) \n "
" { \n "
" if (a == 42) \n "
" a = a; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2013-05-09 15:25:36 +02:00
check ( " void foo() \n "
" { \n "
2014-05-21 18:19:42 +02:00
" int x = 1; \n "
" x = x + 1; \n "
" return 0; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2010-08-15 06:28:22 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-02-04 21:08:42 +01:00
check ( " void foo() \n "
" { \n "
" int *x = getx(); \n "
" *x = x; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-02-04 21:08:42 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-02-12 14:27:07 +01:00
2012-05-11 19:38:19 +02:00
check ( " void foo() { \n "
" BAR *x = getx(); \n "
" x = x; \n "
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (warning) Redundant assignment of 'x' to itself. \n " , errout . str ( ) ) ;
2012-05-11 19:38:19 +02:00
2012-06-22 11:23:50 +02:00
// #2502 - non-primitive type -> there might be some side effects
2011-02-12 14:27:07 +01:00
check ( " void foo() \n "
" { \n "
2014-05-21 18:19:42 +02:00
" Fred fred; fred = fred; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-02-12 14:27:07 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-04-16 12:07:56 +02:00
check ( " void f(int x) { \n "
" x = (x == 0); "
" func(x); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void f(int x) { \n "
" x = (x != 0); "
" func(x); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-08-19 07:23:11 +02:00
// ticket #3001 - false positive
check ( " void foo(int x) { \n "
" x = x ? x : 0; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2012-06-22 11:23:50 +02:00
// #3800 - false negative when variable is extern
check ( " extern int i; \n "
" void f() { \n "
" i = i; \n "
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (warning) Redundant assignment of 'i' to itself. \n " , errout . str ( ) ) ;
2012-11-03 21:16:05 +01:00
// #4291 - id for variables accessed through 'this'
check ( " class Foo { \n "
" int var; \n "
" void func(); \n "
" }; \n "
" void Foo::func() { \n "
" this->var = var; \n "
" } " ) ;
2014-06-28 15:26:22 +02:00
ASSERT_EQUALS ( " [test.cpp:6]: (warning) Redundant assignment of 'this.var' to itself. \n " , errout . str ( ) ) ;
2014-05-21 18:19:42 +02:00
check ( " class Foo { \n "
" int var; \n "
" void func(int var); \n "
" }; \n "
" void Foo::func(int var) { \n "
" this->var = var; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2010-08-15 06:28:22 +02:00
}
2011-10-13 20:53:06 +02:00
void trac1132 ( ) {
2012-07-07 20:21:08 +02:00
check ( " class Lock \n "
2012-05-24 17:40:43 +02:00
" { \n "
" public: \n "
" Lock(int i) \n "
" { \n "
" std::cout << \" Lock \" << i << std::endl; \n "
" } \n "
" ~Lock() \n "
" { \n "
" std::cout << \" ~Lock \" << std::endl; \n "
" } \n "
" }; \n "
" int main() \n "
" { \n "
" Lock(123); \n "
" std::cout << \" hello \" << std::endl; \n "
" return 0; \n "
" } \n "
) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:15]: (error) Instance of 'Lock' object is destroyed immediately. \n " , errout . str ( ) ) ;
2010-10-01 17:23:22 +02:00
}
2012-04-12 14:02:09 +02:00
void trac3693 ( ) {
check ( " struct A{ \n "
" enum { \n "
" b = 300 \n "
" }; \n "
" }; \n "
2013-04-13 20:17:53 +02:00
" const int DFLT_TIMEOUT = A::b % 1000000 ; \n " , 0 , false , false , false , false ) ;
2012-04-12 14:02:09 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2011-10-13 20:53:06 +02:00
void testMisusedScopeObjectDoesNotPickFunction1 ( ) {
2010-10-01 17:23:22 +02:00
check ( " int main ( ) \n "
" { \n "
" CouldBeFunction ( 123 ) ; \n "
" return 0 ; \n "
" } \n "
) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2011-10-13 20:53:06 +02:00
void testMisusedScopeObjectDoesNotPickFunction2 ( ) {
2011-03-20 09:55:26 +01:00
check ( " struct error { \n "
" error() {} \n "
" }; \n "
" \n "
" class parser { \n "
" public: \n "
" void error() const {} \n "
" \n "
" void foo() const { \n "
" error(); \n "
2013-10-22 19:37:11 +02:00
" do_something(); \n "
2011-03-20 09:55:26 +01:00
" } \n "
" }; \n "
) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2011-10-13 20:53:06 +02:00
void testMisusedScopeObjectPicksClass ( ) {
2010-10-01 17:23:22 +02:00
check ( " class NotAFunction ; \n "
" int function ( ) \n "
" { \n "
" NotAFunction ( 123 ); \n "
" return 0 ; \n "
" } \n "
) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:4]: (error) Instance of 'NotAFunction' object is destroyed immediately. \n " , errout . str ( ) ) ;
2010-10-01 17:23:22 +02:00
}
2011-10-13 20:53:06 +02:00
void testMisusedScopeObjectPicksStruct ( ) {
2010-10-01 17:23:22 +02:00
check ( " struct NotAClass; \n "
" bool func ( ) \n "
" { \n "
" NotAClass ( 123 ) ; \n "
" return true ; \n "
" } \n "
) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:4]: (error) Instance of 'NotAClass' object is destroyed immediately. \n " , errout . str ( ) ) ;
2010-10-01 17:23:22 +02:00
}
2011-10-13 20:53:06 +02:00
void testMisusedScopeObjectDoesNotPickIf ( ) {
2010-10-01 17:23:22 +02:00
check ( " bool func( int a , int b , int c ) \n "
" { \n "
" if ( a > b ) return c == a ; \n "
" return b == a ; \n "
" } \n "
) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2011-10-13 20:53:06 +02:00
void testMisusedScopeObjectDoesNotPickConstructorDeclaration ( ) {
2013-02-10 07:43:09 +01:00
check ( " class Something : public SomethingElse \n "
2010-10-01 17:23:22 +02:00
" { \n "
" public: \n "
" ~Something ( ) ; \n "
" Something ( ) ; \n "
" } \n "
) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2010-10-02 10:43:12 +02:00
2011-10-13 20:53:06 +02:00
void testMisusedScopeObjectDoesNotPickFunctor ( ) {
2012-07-07 20:21:08 +02:00
check ( " class IncrementFunctor \n "
2010-10-02 10:43:12 +02:00
" { \n "
" public: \n "
" void operator()(int &i) \n "
" { \n "
" ++i; \n "
" } \n "
" }; \n "
" \n "
" int main() \n "
" { \n "
2010-10-02 13:16:50 +02:00
" int a = 1; \n "
" IncrementFunctor()(a); \n "
" return a; \n "
2010-10-02 10:43:12 +02:00
" } \n "
) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2010-10-02 12:12:52 +02:00
2011-10-13 20:53:06 +02:00
void testMisusedScopeObjectDoesNotPickLocalClassConstructors ( ) {
2010-10-02 12:12:52 +02:00
check ( " void f() { \n "
" class Foo { \n "
" Foo() { } \n "
2010-10-02 14:59:04 +02:00
" Foo(int a) { } \n "
" Foo(int a, int b) { } \n "
2010-10-02 12:12:52 +02:00
" }; \n "
2010-10-02 14:59:04 +02:00
" Foo(); \n "
2013-10-22 19:37:11 +02:00
" do_something(); \n "
2010-10-02 12:12:52 +02:00
" } \n "
) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:7]: (error) Instance of 'Foo' object is destroyed immediately. \n " , errout . str ( ) ) ;
2010-10-02 12:12:52 +02:00
}
2010-10-02 12:26:29 +02:00
2011-10-13 20:53:06 +02:00
void testMisusedScopeObjectDoesNotPickUsedObject ( ) {
2010-10-02 12:26:29 +02:00
check ( " struct Foo { \n "
" void bar() { \n "
" } \n "
" }; \n "
" \n "
" void fn() { \n "
" Foo().bar(); \n "
" } \n "
) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2010-12-25 08:43:52 +01:00
}
2011-10-13 20:53:06 +02:00
void testMisusedScopeObjectDoesNotPickPureC ( ) {
2010-12-25 08:43:52 +01:00
// Ticket #2352
const char code [ ] = " struct cb_watch_bool { \n "
" int a; \n "
" }; \n "
" \n "
" void f() \n "
" { \n "
" cb_watch_bool(); \n "
2013-10-22 19:37:11 +02:00
" do_something(); \n "
2010-12-25 08:43:52 +01:00
" } \n " ;
check ( code , " test.cpp " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:7]: (error) Instance of 'cb_watch_bool' object is destroyed immediately. \n " , errout . str ( ) ) ;
2010-12-25 08:43:52 +01:00
check ( code , " test.c " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-03-13 08:38:40 +01:00
// Ticket #2639
check ( " struct stat { int a; int b; }; \n "
" void stat(const char *fn, struct stat *); \n "
" \n "
" void foo() { \n "
" stat( \" file.txt \" , &st); \n "
2013-10-22 19:37:11 +02:00
" do_something(); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-03-13 08:38:40 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-01-31 20:07:41 +01:00
}
2011-10-13 20:53:06 +02:00
void testMisusedScopeObjectDoesNotPickNestedClass ( ) {
2011-01-31 20:07:41 +01:00
const char code [ ] = " class ios_base { \n "
" public: \n "
" class Init { \n "
" public: \n "
" }; \n "
" }; \n "
" class foo { \n "
" public: \n "
" foo(); \n "
" void Init(int); \n "
" }; \n "
" foo::foo() { \n "
" Init(0); \n "
2013-10-22 19:37:11 +02:00
" do_something(); \n "
2011-01-31 20:07:41 +01:00
" } \n " ;
check ( code , " test.cpp " ) ;
2011-03-20 09:55:26 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2010-10-02 12:26:29 +02:00
}
2010-10-03 23:16:11 +02:00
2013-07-22 07:25:53 +02:00
void testMisusedScopeObjectInConstructor ( ) {
const char code [ ] = " class Foo { \n "
" public: \n "
" Foo(char x) { \n "
" Foo(x, 0); \n "
2013-10-22 19:37:11 +02:00
" do_something(); \n "
2013-07-22 07:25:53 +02:00
" } \n "
" Foo(char x, int y) { } \n "
" }; \n " ;
check ( code , " test.cpp " ) ;
ASSERT_EQUALS ( " [test.cpp:4]: (error) Instance of 'Foo' object is destroyed immediately. \n " , errout . str ( ) ) ;
}
2013-10-22 19:37:11 +02:00
void testMisusedScopeObjectNoCodeAfter ( ) {
check ( " class Foo {}; \n "
" void f() { \n "
" Foo(); \n " // No code after class => don't warn
" } " , " test.cpp " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2011-10-13 20:53:06 +02:00
void trac2084 ( ) {
2012-07-07 20:21:08 +02:00
check ( " void f() \n "
2010-10-13 11:31:41 +02:00
" { \n "
" struct sigaction sa; \n "
" \n "
" { sigaction(SIGHUP, &sa, 0); }; \n "
" { sigaction(SIGINT, &sa, 0); }; \n "
" } \n "
) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2011-10-13 20:53:06 +02:00
void trac2071 ( ) {
2010-10-03 23:16:11 +02:00
check ( " void f() { \n "
2010-10-05 20:54:13 +02:00
" struct AB { \n "
" AB(int a) { } \n "
" }; \n "
" \n "
" const AB ab[3] = { AB(0), AB(1), AB(2) }; \n "
" } \n "
) ;
2010-10-03 23:16:11 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2010-10-10 22:05:06 +02:00
2011-10-13 20:53:06 +02:00
void memsetZeroBytes ( ) {
2011-01-06 11:31:58 +01:00
check ( " void f() { \n "
2011-10-22 22:34:10 +02:00
" memset(p, 10, 0x0); \n "
2014-02-15 19:06:00 +01:00
" } \n " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (warning) memset() called to fill 0 bytes of 'p'. \n " , errout . str ( ) ) ;
2011-01-06 11:31:58 +01:00
check ( " void f() { \n "
2011-10-20 21:46:34 +02:00
" memset(p, sizeof(p), 0); \n "
2014-02-15 19:06:00 +01:00
" } \n " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (warning) memset() called to fill 0 bytes of 'p'. \n " , errout . str ( ) ) ;
2011-01-30 12:54:19 +01:00
2011-10-22 22:34:10 +02:00
check ( " void f() { \n "
2013-04-13 20:17:53 +02:00
" memset(p, sizeof(p), i); \n "
2014-02-15 19:06:00 +01:00
" } \n " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
void memsetInvalid2ndParam ( ) {
check ( " void f() { \n "
" int* is = new int[10]; \n "
" memset(is, 1.0f, 40); \n "
" int* is2 = new int[10]; \n "
" memset(is2, 0.1f, 40); \n "
" } \n " ) ;
ASSERT_EQUALS ( " [test.cpp:3]: (portability) The 2nd memset() argument '1.0f' is a float, its representation is implementation defined. \n "
" [test.cpp:5]: (portability) The 2nd memset() argument '0.1f' is a float, its representation is implementation defined. \n " , errout . str ( ) ) ;
check ( " void f() { \n "
" int* is = new int[10]; \n "
" float g = computeG(); \n "
" memset(is, g, 40); \n "
" } \n " ) ;
ASSERT_EQUALS ( " [test.cpp:4]: (portability) The 2nd memset() argument 'g' is a float, its representation is implementation defined. \n " , errout . str ( ) ) ;
check ( " void f() { \n "
" int* is = new int[10]; \n "
" memset(is, 0.0f, 40); \n "
" } \n " ) ;
2011-10-22 22:34:10 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-02-15 19:06:00 +01:00
2014-07-26 09:09:58 +02:00
check ( " void f() { \n " // FP
" float x = 2.3f; \n "
" memset(a, (x?64:0), 40); \n "
" } \n " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-02-15 19:06:00 +01:00
check ( " void f() { \n "
" short ss[] = {1, 2}; \n "
" memset(ss, 256, 4); \n "
" short ss2[2]; \n "
" memset(ss2, -129, 4); \n "
" } \n " ) ;
ASSERT_EQUALS ( " [test.cpp:3]: (warning) The 2nd memset() argument '256' doesn't fit into an 'unsigned char'. \n "
" [test.cpp:5]: (warning) The 2nd memset() argument '-129' doesn't fit into an 'unsigned char'. \n " , errout . str ( ) ) ;
check ( " void f() { \n "
" int is[10]; \n "
" memset(is, 0xEE, 40); \n "
" unsigned char* cs = malloc(256); \n "
" memset(cs, -1, 256); \n "
" short* ss[30]; \n "
" memset(ss, -128, 60); \n "
" char cs2[30]; \n "
" memset(cs2, 255, 30); \n "
" char cs3[30]; \n "
" memset(cs3, 0, 30); \n "
" } \n " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void f() { \n "
" int is[10]; \n "
" const int i = g(); \n "
" memset(is, 1.0f + i, 40); \n "
" } \n " ) ;
2014-03-22 18:42:29 +01:00
ASSERT_EQUALS ( " [test.cpp:4]: (portability) The 2nd memset() argument '1.0f+i' is a float, its representation is implementation defined. \n " , errout . str ( ) ) ;
2011-01-06 11:31:58 +01:00
}
2011-01-22 19:21:56 +01:00
2013-02-11 20:26:27 +01:00
void redundantGetAndSetUserId ( ) {
2014-02-16 10:32:10 +01:00
check ( " seteuid(geteuid()); \n " , nullptr , false , false , true ) ;
2013-02-11 20:26:27 +01:00
ASSERT_EQUALS ( " [test.cpp:1]: (warning) Redundant get and set of user id. \n " , errout . str ( ) ) ;
2014-02-16 10:32:10 +01:00
check ( " setuid(getuid()); \n " , nullptr , false , false , true ) ;
2013-02-11 20:26:27 +01:00
ASSERT_EQUALS ( " [test.cpp:1]: (warning) Redundant get and set of user id. \n " , errout . str ( ) ) ;
2014-02-16 10:32:10 +01:00
check ( " setgid(getgid()); \n " , nullptr , false , false , true ) ;
2013-02-11 20:26:27 +01:00
ASSERT_EQUALS ( " [test.cpp:1]: (warning) Redundant get and set of user id. \n " , errout . str ( ) ) ;
2014-02-16 10:32:10 +01:00
check ( " setegid(getegid()); \n " , nullptr , false , false , true ) ;
2013-02-11 20:26:27 +01:00
ASSERT_EQUALS ( " [test.cpp:1]: (warning) Redundant get and set of user id. \n " , errout . str ( ) ) ;
2014-02-16 10:32:10 +01:00
check ( " seteuid(getuid()); \n " , nullptr , false , false , true ) ;
2013-02-11 20:26:27 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-02-16 10:32:10 +01:00
check ( " seteuid(foo()); \n " , nullptr , false , false , true ) ;
2013-02-11 20:26:27 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-02-16 10:32:10 +01:00
check ( " foo(getuid()); \n " , nullptr , false , false , true ) ;
2013-02-11 20:26:27 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2011-10-13 20:53:06 +02:00
void clarifyCalculation ( ) {
2011-01-24 21:40:49 +01:00
check ( " int f(char c) { \n "
" return 10 * (c == 0) ? 1 : 2; \n "
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (style) Clarify calculation precedence for '*' and '?'. \n " , errout . str ( ) ) ;
2011-01-24 19:04:56 +01:00
2011-01-24 21:40:49 +01:00
check ( " void f(char c) { \n "
" printf( \" %i \" , 10 * (c == 0) ? 1 : 2); \n "
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (style) Clarify calculation precedence for '*' and '?'. \n " , errout . str ( ) ) ;
2011-02-17 21:30:59 +01:00
2013-12-24 10:07:20 +01:00
check ( " void f() { \n "
" return (2*a)?b:c; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-02-17 21:30:59 +01:00
// Ticket #2585 - segmentation fault for invalid code
2013-03-05 10:21:59 +01:00
check ( " abcdef? " " ?< "
" 123456? " " ?> "
" +? " " ?= " ) ;
2011-02-17 21:30:59 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-04-02 11:43:20 +02:00
check ( " void f(char c) { \n "
2012-03-27 21:29:50 +02:00
" printf( \" %i \" , 1 + 1 ? 1 : 2); \n " // "1+1" is simplified away
2013-04-13 20:17:53 +02:00
" } " , 0 , false , false , false , false ) ;
2012-09-16 19:44:02 +02:00
TODO_ASSERT_EQUALS ( " [test.cpp:2]: (style) Clarify calculation precedence for '+' and '?'. \n " , " " , errout . str ( ) ) ; // TODO: Is that really necessary, or is this pattern too unlikely?
2011-04-03 22:12:22 +02:00
check ( " void f() { \n "
" std::cout << x << 1 ? 2 : 3; \n "
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (style) Clarify calculation precedence for '<<' and '?'. \n " , errout . str ( ) ) ;
2011-04-04 21:33:16 +02:00
check ( " void f() { \n "
" int ab = a - b ? 2 : 3; \n "
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (style) Clarify calculation precedence for '-' and '?'. \n " , errout . str ( ) ) ;
2011-09-06 22:37:19 +02:00
// ticket #195
check ( " int f(int x, int y) { \n "
" return x >> ! y ? 8 : 2; \n "
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (style) Clarify calculation precedence for '>>' and '?'. \n " , errout . str ( ) ) ;
2011-12-23 12:13:39 +01:00
check ( " int f() { \n "
2013-04-13 20:17:53 +02:00
" return shift < sizeof(int64_t)*8 ? 1 : 2; \n "
2011-12-23 12:13:39 +01:00
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-12-28 11:02:39 +01:00
check ( " void f() { a = *p ? 1 : 2; } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-01-22 19:21:56 +01:00
}
2012-08-24 11:28:50 +02:00
void clarifyStatement ( ) {
check ( " char* f(char* c) { \n "
" *c++; \n "
" return c; \n "
" } " ) ;
2012-09-15 20:19:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (warning) Ineffective statement similar to '*A++;'. Did you intend to write '(*A)++;'? \n " , errout . str ( ) ) ;
2012-08-24 11:28:50 +02:00
check ( " char* f(char** c) { \n "
" *c[5]--; \n "
" return *c; \n "
" } " ) ;
2012-09-15 20:19:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (warning) Ineffective statement similar to '*A++;'. Did you intend to write '(*A)++;'? \n " , errout . str ( ) ) ;
2012-08-24 11:28:50 +02:00
check ( " void f(Foo f) { \n "
" *f.a++; \n "
" } " ) ;
2012-09-15 20:19:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (warning) Ineffective statement similar to '*A++;'. Did you intend to write '(*A)++;'? \n " , errout . str ( ) ) ;
2012-08-24 11:28:50 +02:00
check ( " void f(Foo f) { \n "
" *f.a[5].v[3]++; \n "
" } " ) ;
2012-09-15 20:19:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (warning) Ineffective statement similar to '*A++;'. Did you intend to write '(*A)++;'? \n " , errout . str ( ) ) ;
2012-08-24 11:28:50 +02:00
check ( " void f(Foo f) { \n "
" *f.a(1, 5).v[x + y]++; \n "
" } " ) ;
2012-09-15 20:19:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (warning) Ineffective statement similar to '*A++;'. Did you intend to write '(*A)++;'? \n " , errout . str ( ) ) ;
2012-08-24 11:28:50 +02:00
check ( " char* f(char* c) { \n "
" (*c)++; \n "
" return c; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void f(char* c) { \n "
" bar(*c++); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2012-09-03 17:10:27 +02:00
check ( " char*** f(char*** c) { \n "
" ***c++; \n "
" return c; \n "
" } " ) ;
2012-09-15 20:19:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (warning) Ineffective statement similar to '*A++;'. Did you intend to write '(*A)++;'? \n " , errout . str ( ) ) ;
2012-09-03 17:10:27 +02:00
check ( " char** f(char*** c) { \n "
" **c[5]--; \n "
" return **c; \n "
" } " ) ;
2012-09-15 20:19:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (warning) Ineffective statement similar to '*A++;'. Did you intend to write '(*A)++;'? \n " , errout . str ( ) ) ;
2012-09-03 17:10:27 +02:00
check ( " char*** f(char*** c) { \n "
" (***c)++; \n "
" return c; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void *f(char** c) { \n "
" bar(**c++); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-02-27 18:24:51 +01:00
// #5166 segmentation fault (invalid code) in lib/checkother.cpp:329 ( void * f { } void b ( ) { * f } )
check ( " void * f { } void b ( ) { * f } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2012-08-24 11:28:50 +02:00
}
2011-10-13 20:53:06 +02:00
void duplicateBranch ( ) {
2011-04-09 23:05:27 +02:00
check ( " void f(int a, int &b) { \n "
" if (a) \n "
" b = 1; \n "
" else \n "
" b = 1; \n "
" } " ) ;
2014-02-16 11:04:27 +01:00
ASSERT_EQUALS ( " [test.cpp:4] -> [test.cpp:2]: (style, inconclusive) Found duplicate branches for 'if' and 'else'. \n " , errout . str ( ) ) ;
2011-04-09 23:05:27 +02:00
check ( " void f(int a, int &b) { \n "
" if (a) { \n "
" if (a == 1) \n "
" b = 2; \n "
" else \n "
" b = 2; \n "
" } else \n "
" b = 1; \n "
" } " ) ;
2014-02-16 11:04:27 +01:00
ASSERT_EQUALS ( " [test.cpp:5] -> [test.cpp:3]: (style, inconclusive) Found duplicate branches for 'if' and 'else'. \n " , errout . str ( ) ) ;
2011-04-10 15:57:09 +02:00
2011-12-13 21:42:38 +01:00
check ( " void f(int a, int &b) { \n "
" if (a == 1) \n "
" b = 1; \n "
2013-04-13 20:17:53 +02:00
" else { \n "
" if (a) \n "
" b = 2; \n "
" else \n "
" b = 2; \n "
" } \n "
2011-12-13 21:42:38 +01:00
" } " ) ;
2014-02-16 11:04:27 +01:00
ASSERT_EQUALS ( " [test.cpp:7] -> [test.cpp:5]: (style, inconclusive) Found duplicate branches for 'if' and 'else'. \n " , errout . str ( ) ) ;
2011-12-13 21:42:38 +01:00
2011-04-10 15:57:09 +02:00
check ( " int f(int signed, unsigned char value) { \n "
" int ret; \n "
" if (signed) \n "
2013-04-13 20:17:53 +02:00
" ret = (signed char)value; \n " // cast must be kept so the simplifications and verification is skipped
2011-04-10 15:57:09 +02:00
" else \n "
" ret = (unsigned char)value; \n "
" return ret; \n "
2013-04-13 20:17:53 +02:00
" } " , 0 , false , false , false , false ) ;
2011-04-10 15:57:09 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-12-13 21:42:38 +01:00
check ( " void f() { \n "
" if (b) \n "
" __asm__( \" mov ax, bx \" ); \n "
" else \n "
" __asm__( \" mov bx, bx \" ); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ; // #3407
check ( " void f() { \n "
" if (b) \n "
" __asm__( \" mov ax, bx \" ); \n "
" else \n "
" __asm__( \" mov ax, bx \" ); \n "
" } " ) ;
2014-02-16 11:04:27 +01:00
ASSERT_EQUALS ( " [test.cpp:4] -> [test.cpp:2]: (style, inconclusive) Found duplicate branches for 'if' and 'else'. \n " , errout . str ( ) ) ;
2011-04-09 23:05:27 +02:00
}
2011-04-10 16:25:02 +02:00
2012-05-30 01:30:37 +02:00
void duplicateBranch1 ( ) {
2012-07-31 23:35:56 +02:00
// tests inspired by http://www.viva64.com/en/b/0149/ ( Comparison between PVS-Studio and cppcheck )
2012-05-30 01:30:37 +02:00
// Errors detected in Quake 3: Arena by PVS-Studio: Fragement 2
check ( " void f() \n "
" { \n "
2012-12-06 19:19:22 +01:00
" if (front < 0) \n "
2013-04-13 20:17:53 +02:00
" frac = front/(front-back); \n "
2012-12-06 19:19:22 +01:00
" else \n "
2013-04-13 20:17:53 +02:00
" frac = front/(front-back); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2014-02-16 11:04:27 +01:00
ASSERT_EQUALS ( " [test.cpp:5] -> [test.cpp:3]: (style, inconclusive) Found duplicate branches for 'if' and 'else'. \n " , errout . str ( ) ) ;
2012-05-30 01:30:37 +02:00
check ( " void f() \n "
" { \n "
2012-12-06 19:19:22 +01:00
" if (front < 0) \n "
2013-04-13 20:17:53 +02:00
" { frac = front/(front-back);} \n "
2012-12-06 19:19:22 +01:00
" else \n "
2013-04-13 20:17:53 +02:00
" frac = front/((front-back)); \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2014-02-16 11:04:27 +01:00
ASSERT_EQUALS ( " [test.cpp:5] -> [test.cpp:3]: (style, inconclusive) Found duplicate branches for 'if' and 'else'. \n " , errout . str ( ) ) ;
2014-09-01 10:19:14 +02:00
// No message about empty branches (#5354)
check ( " void f() \n "
" { \n "
" if (front < 0) \n "
" {} \n "
" else \n "
" {} \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2012-05-30 01:30:37 +02:00
}
2013-02-18 17:18:33 +01:00
void duplicateBranch2 ( ) {
Preprocessor : : macroChar = ' $ ' ;
check ( " void f(int x) { \n " // #4329
" if (x) \n "
" $; \n "
" else \n "
" $; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2013-02-18 17:18:33 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2011-10-13 20:53:06 +02:00
void duplicateExpression1 ( ) {
2014-01-02 16:58:07 +01:00
check ( " void foo(int a) { \n "
2011-04-10 16:25:02 +02:00
" if (a == a) { } \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:2]: (style) Same expression on both sides of '=='. \n " , errout . str ( ) ) ;
2014-01-02 16:58:07 +01:00
check ( " void fun(int b) { \n "
2013-04-13 20:17:53 +02:00
" return a && a || \n "
2011-04-10 16:25:02 +02:00
" b == b && \n "
" d > d && \n "
" e < e && \n "
2013-04-13 20:17:53 +02:00
" f ; \n "
2011-04-10 16:25:02 +02:00
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:2]: (style) Same expression on both sides of '&&'. \n "
" [test.cpp:3] -> [test.cpp:3]: (style) Same expression on both sides of '=='. \n "
2013-11-17 17:21:39 +01:00
" [test.cpp:4] -> [test.cpp:4]: (style) Same expression on both sides of '>'. \n "
" [test.cpp:5] -> [test.cpp:5]: (style) Same expression on both sides of '<'. \n " , errout . str ( ) ) ;
2011-11-05 15:40:43 +01:00
check ( " void foo() { \n "
" return a && a; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:2]: (style) Same expression on both sides of '&&'. \n " , errout . str ( ) ) ;
2011-11-05 22:17:48 +01:00
check ( " void foo() { \n "
" a = b && b; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:2]: (style) Same expression on both sides of '&&'. \n " , errout . str ( ) ) ;
2014-01-02 16:58:07 +01:00
check ( " void foo(int b) { \n "
2011-11-08 21:26:33 +01:00
" f(a,b == b); \n "
2011-11-05 22:17:48 +01:00
" } " ) ;
2011-11-08 21:26:33 +01:00
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:2]: (style) Same expression on both sides of '=='. \n " , errout . str ( ) ) ;
2014-01-02 16:58:07 +01:00
check ( " void foo(int b) { \n "
2011-11-08 21:26:33 +01:00
" f(b == b, a); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:2]: (style) Same expression on both sides of '=='. \n " , errout . str ( ) ) ;
2011-11-08 21:22:31 +01:00
check ( " void foo() { \n "
" if (x!=2 || x!=2) {} \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:2]: (style) Same expression on both sides of '||'. \n " , errout . str ( ) ) ;
check ( " void foo() { \n "
2013-11-07 14:38:08 +01:00
" if (x!=2 || y!=3 || x!=2) {} \n "
2011-11-08 21:22:31 +01:00
" } " ) ;
2014-04-16 16:04:46 +02:00
TODO_ASSERT_EQUALS ( " error " , " " , errout . str ( ) ) ;
check ( " void foo() { \n "
" if (x!=2 && (x=y) && x!=2) {} \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-11-08 21:22:31 +01:00
check ( " void foo() { \n "
" if (a && b || a && b) {} \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:2]: (style) Same expression on both sides of '||'. \n " , errout . str ( ) ) ;
check ( " void foo() { \n "
" if (a && b || b && c) {} \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-11-08 21:24:44 +01:00
check ( " void foo() { \n "
" if (a && b | b && c) {} \n "
" } " ) ;
2013-11-07 14:38:08 +01:00
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:2]: (style) Same expression on both sides of '|'. \n " , errout . str ( ) ) ;
2011-11-08 21:24:44 +01:00
check ( " void foo() { \n "
" if ((a + b) | (a + b)) {} \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:2]: (style) Same expression on both sides of '|'. \n " , errout . str ( ) ) ;
2011-11-12 10:23:34 +01:00
2011-11-08 21:24:44 +01:00
check ( " void foo() { \n "
" if ((a | b) & (a | b)) {} \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:2]: (style) Same expression on both sides of '&'. \n " , errout . str ( ) ) ;
2011-11-12 10:23:34 +01:00
2014-05-22 21:46:48 +02:00
check ( " void foo(int a, int b) { \n "
" if ((a | b) == (a | b)) {} \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:2]: (style) Same expression on both sides of '=='. \n " , errout . str ( ) ) ;
2011-12-01 17:07:55 +01:00
check ( " void foo() { \n "
" if (a1[a2[c & 0xff] & 0xff]) {} \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-11-12 10:23:34 +01:00
check ( " void d(const char f, int o, int v) \n "
" { \n "
" if (((f=='R') && (o == 1) && ((v < 2) || (v > 99))) || \n "
" ((f=='R') && (o == 2) && ((v < 2) || (v > 99))) || \n "
" ((f=='T') && (o == 2) && ((v < 200) || (v > 9999)))) {} \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-11-12 10:23:34 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-11-11 20:03:59 +01:00
check ( " int f(int x) { return x+x; } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-11-15 06:35:46 +01:00
check ( " void foo() { \n "
" if (a && b && b) {} \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:2]: (style) Same expression on both sides of '&&'. \n " , errout . str ( ) ) ;
2013-11-17 17:21:39 +01:00
check ( " void foo() { \n "
" if (a || b || b) {} \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:2]: (style) Same expression on both sides of '||'. \n " , errout . str ( ) ) ;
check ( " void foo() { \n "
" if (a / 1000 / 1000) {} \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-11-20 16:18:09 +01:00
2014-03-17 18:35:36 +01:00
check ( " int foo(int i) { \n "
" return i/i; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:2]: (style) Same expression on both sides of '/'. \n " , errout . str ( ) ) ;
2013-11-20 16:18:09 +01:00
check ( " void foo() { \n "
" if (a << 1 << 1) {} \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " int f() { return !!y; } " ) ; // No FP
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-11-24 15:17:08 +01:00
// make sure there are not "same expression" fp when there are different casts
check ( " void f(long x) { if ((int32_t)x == (int64_t)x) {} } " ,
2014-02-16 10:32:10 +01:00
nullptr , // filename
2013-11-24 15:17:08 +01:00
false , // experimental
false , // inconclusive
false , // posix
false , // runSimpleChecks
2014-02-16 10:32:10 +01:00
nullptr // settings
2013-11-24 15:17:08 +01:00
) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-11-25 04:08:28 +01:00
// make sure there are not "same expression" fp when there are different ({}) expressions
check ( " void f(long x) { if (({ 1+2; }) == ({3+4};)) {} } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-03-17 12:01:39 +01:00
// #5535: Reference named like its type
check ( " void foo() { UMSConfig& UMSConfig = GetUMSConfiguration(); } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-04-12 12:01:54 +02:00
// #3868 - false positive (same expression on both sides of |)
check ( " void f(int x) { \n "
" a = x ? A | B | C \n "
" : A | B; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void f() { \n "
" bool a = bar.isSet() && bar->isSet(); \n "
" bool b = bar.isSet() && bar.isSet(); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3] -> [test.cpp:3]: (style) Same expression on both sides of '&&'. \n " , errout . str ( ) ) ;
2014-05-22 21:46:48 +02:00
check ( " void foo() { \n "
" if ((b + a) | (a + b)) {} \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:2]: (style) Same expression on both sides of '|'. \n " , errout . str ( ) ) ;
check ( " void foo() { \n "
" if ((b > a) | (a > b)) {} \n " // > is not commutative
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() { \n "
" if ((b + a) > (a + b)) {} \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:2]: (style) Same expression on both sides of '>'. \n " , errout . str ( ) ) ;
2014-08-29 17:06:46 +02:00
check ( " void f(int x) { \n "
" if ((x == 1) && (x == 0x00000001)) \n "
" a++; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:2]: (style) Same expression on both sides of '&&'. \n " , errout . str ( ) ) ;
2012-05-14 09:57:30 +02:00
}
2013-01-31 17:29:31 +01:00
void duplicateExpression2 ( ) { // check if float is NaN or Inf
2013-04-13 20:17:53 +02:00
check ( " int f(long double ldbl, double dbl, float flt) { \n " // ticket #2730
2011-04-19 01:20:27 +02:00
" if (ldbl != ldbl) have_nan = 1; \n "
" if (!(dbl == dbl)) have_nan = 1; \n "
" if (flt != flt) have_nan = 1; \n "
" return have_nan; \n "
" } " ) ;
2013-04-13 20:17:53 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-01-31 17:29:31 +01:00
check ( " float f(float x) { return x-x; } " ) ; // ticket #4485 (Inf)
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-11-25 04:26:15 +01:00
2014-02-16 10:32:10 +01:00
check ( " float f(float x) { return (X double)x == (X double)x; } " , nullptr , false , false , false , false ) ;
2013-11-25 04:26:15 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " struct X { float f; }; \n "
" float f(struct X x) { return x.f == x.f; } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-01-02 16:58:07 +01:00
2014-08-15 16:48:53 +02:00
check ( " struct X { int i; }; \n "
" int f(struct X x) { return x.i == x.i; } " ) ;
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:2]: (style) Same expression on both sides of '=='. \n " , errout . str ( ) ) ;
2014-01-02 16:58:07 +01:00
// #5284 - when type is unknown, assume it's float
check ( " int f() { return x==x; } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-04-19 01:20:27 +02:00
}
2011-04-26 07:45:27 +02:00
2011-11-10 21:49:14 +01:00
void duplicateExpression3 ( ) {
check ( " void foo() { \n "
" if (x() || x()) {} \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " struct A { \n "
" void foo() const; \n "
" bool bar() const; \n "
" }; \n "
" void A::foo() const { \n "
" if (bar() && bar()) {} \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:6] -> [test.cpp:6]: (style) Same expression on both sides of '&&'. \n " , errout . str ( ) ) ;
check ( " struct A { \n "
" void foo(); \n "
" bool bar(); \n "
" bool bar() const; \n "
" }; \n "
" void A::foo() { \n "
" if (bar() && bar()) {} \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " class B { \n "
" void bar(int i); \n "
" }; \n "
" class A { \n "
" void bar(int i) const; \n "
" }; \n "
" void foo() { \n "
" B b; \n "
" A a; \n "
" if (b.bar(1) && b.bar(1)) {} \n "
" if (a.bar(1) && a.bar(1)) {} \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-11-10 21:49:14 +01:00
ASSERT_EQUALS ( " [test.cpp:11] -> [test.cpp:11]: (style) Same expression on both sides of '&&'. \n " , errout . str ( ) ) ;
check ( " class D { void strcmp(); }; \n "
" void foo() { \n "
" D d; \n "
" if (d.strcmp() && d.strcmp()) {} \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2011-11-10 21:49:14 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-09-27 21:31:04 +02:00
check ( " void foo() { \n "
" if ((strcmp(a, b) == 0) || (strcmp(a, b) == 0)) {} \n "
" } " , " test.cpp " , false , false , false , true , & settings_std ) ;
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:2]: (style) Same expression on both sides of '||'. \n " , errout . str ( ) ) ;
2014-03-14 06:38:45 +01:00
2014-03-14 19:06:05 +01:00
check ( " void GetValue() { return rand(); } \n "
" void foo() { \n "
" if ((GetValue() == 0) || (GetValue() == 0)) { dostuff(); } \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void __attribute__((const)) GetValue() { return X; } \n "
2014-03-14 06:38:45 +01:00
" void foo() { \n "
" if ((GetValue() == 0) || (GetValue() == 0)) { dostuff(); } \n "
2011-11-10 21:49:14 +01:00
" } " ) ;
2014-03-14 06:38:45 +01:00
ASSERT_EQUALS ( " [test.cpp:3] -> [test.cpp:3]: (style) Same expression on both sides of '||'. \n " , errout . str ( ) ) ;
2011-11-10 21:49:14 +01:00
2014-03-14 19:06:05 +01:00
check ( " void GetValue() __attribute__((const)); \n "
" void GetValue() { return X; } \n "
" void foo() { \n "
" if ((GetValue() == 0) || (GetValue() == 0)) { dostuff(); } \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:4] -> [test.cpp:4]: (style) Same expression on both sides of '||'. \n " , errout . str ( ) ) ;
2011-11-10 21:49:14 +01:00
check ( " void foo() { \n "
" if (str == \" ( \" || str == \" ( \" ) {} \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:2]: (style) Same expression on both sides of '||'. \n " , errout . str ( ) ) ;
2011-12-01 19:49:04 +01:00
check ( " void foo() { \n "
" if (bar(a) && !strcmp(a, b) && bar(a) && !strcmp(a, b)) {} \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-01-12 07:40:56 +01:00
// #5334
check ( " void f(C *src) { \n "
" if (x<A*>(src) || x<B*>(src)) \n "
" a++; \n "
" } \n " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void f(A *src) { \n "
" if (dynamic_cast<B*>(src) || dynamic_cast<B*>(src)) {} \n "
" } \n " , " test.cpp " , false , false , false , false ) ; // don't run simplifications
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:2]: (style) Same expression on both sides of '||'. \n " , errout . str ( ) ) ;
2014-05-21 18:19:42 +02:00
// #5819
check ( " Vector func(Vector vec1) { \n "
" return fabs(vec1 & vec1 & vec1); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " Vector func(int vec1) { \n "
" return fabs(vec1 & vec1 & vec1); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:2]: (style) Same expression on both sides of '&'. \n " , errout . str ( ) ) ;
2011-11-10 21:49:14 +01:00
}
2011-12-01 17:46:33 +01:00
void duplicateExpression4 ( ) {
check ( " void foo() { \n "
" if (*a++ != b || *a++ != b) {} \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() { \n "
" if (*a-- != b || *a-- != b) {} \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-05-09 06:16:27 +02:00
// assignment
check ( " void f() { \n "
" while (*(a+=2)==*(b+=2) && *(a+=2)==*(b+=2)) {} \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-12-01 17:46:33 +01:00
}
2011-11-10 21:49:14 +01:00
2012-05-17 07:26:57 +02:00
void duplicateExpression5 ( ) { // #3749 - macros with same values
Preprocessor : : macroChar = ' $ ' ;
check ( " void f() { \n "
" if ($a == $a) { } \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2013-03-14 19:11:29 +01:00
void duplicateExpression6 ( ) { // #4639
check ( " float IsNan(float value) { return !(value == value); } \n "
" double IsNan(double value) { return !(value == value); } \n "
2013-03-20 15:36:16 +01:00
" long double IsNan(long double value) { return !(value == value); } " ) ;
2013-03-14 19:11:29 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2011-11-06 18:24:37 +01:00
void check_signOfUnsignedVariable ( const char code [ ] , bool inconclusive = false ) {
2011-08-07 01:23:09 +02:00
// Clear the error buffer..
errout . str ( " " ) ;
Settings settings ;
2011-08-07 09:28:08 +02:00
settings . addEnabled ( " style " ) ;
2011-11-06 18:24:37 +01:00
settings . inconclusive = inconclusive ;
2011-08-07 01:23:09 +02:00
// Tokenize..
Tokenizer tokenizer ( & settings , this ) ;
std : : istringstream istr ( code ) ;
tokenizer . tokenize ( istr , " test.cpp " ) ;
// Check for redundant code..
CheckOther checkOther ( & tokenizer , & settings , this ) ;
checkOther . checkSignOfUnsignedVariable ( ) ;
}
2011-10-13 20:53:06 +02:00
void checkSignOfUnsignedVariable ( ) {
2011-10-09 20:35:46 +02:00
check_signOfUnsignedVariable (
" void foo() { \n "
" for(unsigned char i = 10; i >= 0; i--) "
" printf( \" %u \" , i); \n "
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (style) Unsigned variable 'i' can't be negative so it is unnecessary to test it. \n " , errout . str ( ) ) ;
2011-10-09 20:35:46 +02:00
check_signOfUnsignedVariable (
" void foo(bool b) { \n "
" for(unsigned int i = 10; b || i >= 0; i--) "
" printf( \" %u \" , i); \n "
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (style) Unsigned variable 'i' can't be negative so it is unnecessary to test it. \n " , errout . str ( ) ) ;
2011-10-09 20:35:46 +02:00
2011-08-07 01:23:09 +02:00
check_signOfUnsignedVariable (
" bool foo(unsigned int x) { \n "
" if (x < 0) "
" return true; \n "
" return false; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (style) Checking if unsigned variable 'x' is less than zero. \n " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(int x) { \n "
" if (x < 0) "
" return true; \n "
" return false; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(unsigned int x) { \n "
" if (0 > x) "
" return true; \n "
" return false; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (style) Checking if unsigned variable 'x' is less than zero. \n " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(int x) { \n "
" if (0 > x) "
" return true; \n "
" return false; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(unsigned int x) { \n "
" if (x >= 0) "
" return true; \n "
" return false; \n "
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (style) Unsigned variable 'x' can't be negative so it is unnecessary to test it. \n " , errout . str ( ) ) ;
2011-08-07 01:23:09 +02:00
check_signOfUnsignedVariable (
" bool foo(int x) { \n "
" if (x >= 0) "
" return true; \n "
" return false; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-09-27 03:24:34 +02:00
check_signOfUnsignedVariable (
" bool foo(unsigned int x, bool y) { \n "
" if (x < 0 && y) "
" return true; \n "
" return false; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (style) Checking if unsigned variable 'x' is less than zero. \n " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(int x, bool y) { \n "
" if (x < 0 && y) "
" return true; \n "
" return false; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(unsigned int x, bool y) { \n "
" if (0 > x && y) "
" return true; \n "
" return false; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (style) Checking if unsigned variable 'x' is less than zero. \n " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(int x, bool y) { \n "
" if (0 > x && y) "
" return true; \n "
" return false; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(unsigned int x, bool y) { \n "
" if (x >= 0 && y) "
" return true; \n "
" return false; \n "
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (style) Unsigned variable 'x' can't be negative so it is unnecessary to test it. \n " , errout . str ( ) ) ;
2011-09-27 03:24:34 +02:00
check_signOfUnsignedVariable (
" bool foo(int x, bool y) { \n "
" if (x >= 0 && y) "
" return true; \n "
" return false; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(unsigned int x, bool y) { \n "
" if (y && x < 0) "
" return true; \n "
" return false; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (style) Checking if unsigned variable 'x' is less than zero. \n " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(int x, bool y) { \n "
" if (y && x < 0) "
" return true; \n "
" return false; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(unsigned int x, bool y) { \n "
" if (y && 0 > x) "
" return true; \n "
" return false; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (style) Checking if unsigned variable 'x' is less than zero. \n " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(int x, bool y) { \n "
" if (y && 0 > x) "
" return true; \n "
" return false; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(unsigned int x, bool y) { \n "
" if (y && x >= 0) "
" return true; \n "
" return false; \n "
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (style) Unsigned variable 'x' can't be negative so it is unnecessary to test it. \n " , errout . str ( ) ) ;
2011-09-27 03:24:34 +02:00
check_signOfUnsignedVariable (
" bool foo(int x, bool y) { \n "
" if (y && x >= 0) "
" return true; \n "
" return false; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(unsigned int x, bool y) { \n "
" if (x < 0 || y) "
" return true; \n "
" return false; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (style) Checking if unsigned variable 'x' is less than zero. \n " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(int x, bool y) { \n "
" if (x < 0 || y) "
" return true; \n "
" return false; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(unsigned int x, bool y) { \n "
" if (0 > x || y) "
" return true; \n "
" return false; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (style) Checking if unsigned variable 'x' is less than zero. \n " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(int x, bool y) { \n "
" if (0 > x || y) "
" return true; \n "
" return false; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(unsigned int x, bool y) { \n "
" if (x >= 0 || y) "
" return true; \n "
" return false; \n "
" } " ) ;
2012-09-16 19:44:02 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (style) Unsigned variable 'x' can't be negative so it is unnecessary to test it. \n " , errout . str ( ) ) ;
2011-09-27 03:24:34 +02:00
check_signOfUnsignedVariable (
" bool foo(int x, bool y) { \n "
" if (x >= 0 || y) "
" return true; \n "
" return false; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-11-06 18:24:37 +01:00
// #3233 - FP when template is used (template parameter is numeric constant)
{
const char code [ ] =
" template<int n> void foo(unsigned int x) { \n "
" if (x <= n); \n "
" } \n "
" foo<0>(); " ;
check_signOfUnsignedVariable ( code , false ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check_signOfUnsignedVariable ( code , true ) ;
2012-05-06 19:37:41 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (style, inconclusive) Checking if unsigned variable 'x' is less than zero. This might be a false warning. \n " , errout . str ( ) ) ;
2011-11-06 18:24:37 +01:00
}
2011-08-07 01:23:09 +02:00
}
2011-10-11 08:41:39 +02:00
2012-08-21 12:28:02 +02:00
void checkSignOfPointer ( ) {
check_signOfUnsignedVariable (
" bool foo(int* x) { \n "
" if (x >= 0) "
" bar(); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (style) A pointer can not be negative so it is either pointless or an error to check if it is not. \n " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(int* x) { \n "
" if (*x >= 0) "
" bar(); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(int* x) { \n "
" if (x < 0) "
" bar(); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (style) A pointer can not be negative so it is either pointless or an error to check if it is. \n " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(int* x) { \n "
" if (*x < 0) "
" bar(); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-09-04 13:51:18 +02:00
check_signOfUnsignedVariable (
" bool foo(int* x, int* y) { \n "
" if (x - y < 0) "
" bar(); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(int* x, int* y) { \n "
" if (x - y <= 0) "
" bar(); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(int* x, int* y) { \n "
" if (x - y > 0) "
" bar(); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(int* x, int* y) { \n "
" if (x - y >= 0) "
" bar(); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2012-08-21 12:28:02 +02:00
check_signOfUnsignedVariable (
" bool foo(Bar* x) { \n "
" if (0 <= x) "
" bar(); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (style) A pointer can not be negative so it is either pointless or an error to check if it is not. \n " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(int* x) { \n "
" if (0 <= x[0]) "
" bar(); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(Bar* x) { \n "
" if (0 <= x.y) "
" bar(); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-09-04 13:51:18 +02:00
check_signOfUnsignedVariable (
" bool foo(Bar* x) { \n "
" if (0 <= x->y) "
" bar(); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(Bar* x, Bar* y) { \n "
" if (0 <= x->y - y->y ) "
" bar(); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2012-08-21 12:28:02 +02:00
check_signOfUnsignedVariable (
" bool foo(Bar* x) { \n "
" if (0 > x) "
" bar(); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (style) A pointer can not be negative so it is either pointless or an error to check if it is. \n " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(int* x) { \n "
" if (0 > x[0]) "
" bar(); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" bool foo(Bar* x) { \n "
" if (0 > x.y) "
" bar(); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-07-23 17:19:20 +02:00
2014-09-04 13:51:18 +02:00
check_signOfUnsignedVariable (
" bool foo(Bar* x) { \n "
" if (0 > x->y) "
" bar(); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-07-23 17:19:20 +02:00
check_signOfUnsignedVariable (
" void foo() { \n "
" int (*t)(void *a, void *b); \n "
" if (t(a, b) < 0) \n "
" bar(); \n "
2013-07-24 11:20:28 +02:00
" } " ) ;
2013-07-23 17:19:20 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" void foo() { \n "
" int (*t)(void *a, void *b); \n "
" if (0 > t(a, b)) \n "
" bar(); \n "
2013-07-24 11:20:28 +02:00
" } " ) ;
2013-07-23 17:19:20 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-10-06 16:52:27 +02:00
check_signOfUnsignedVariable (
" struct object_info { int *typep; }; \n "
" void packed_object_info(struct object_info *oi) { \n "
" if (oi->typep < 0); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3]: (style) A pointer can not be negative so it is either pointless or an error to check if it is. \n " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" struct object_info { int typep[10]; }; \n "
" void packed_object_info(struct object_info *oi) { \n "
" if (oi->typep < 0); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3]: (style) A pointer can not be negative so it is either pointless or an error to check if it is. \n " , errout . str ( ) ) ;
check_signOfUnsignedVariable (
" struct object_info { int *typep; }; \n "
" void packed_object_info(struct object_info *oi) { \n "
" if (*oi->typep < 0); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2012-08-21 12:28:02 +02:00
}
2011-10-13 20:53:06 +02:00
void checkForSuspiciousSemicolon1 ( ) {
2011-10-11 08:41:39 +02:00
check (
" void foo() { \n "
" for(int i = 0; i < 10; ++i); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
// Empty block
check (
" void foo() { \n "
" for(int i = 0; i < 10; ++i); { \n "
" } \n "
" } " ) ;
2013-03-03 18:54:44 +01:00
ASSERT_EQUALS ( " [test.cpp:2]: (warning, inconclusive) Suspicious use of ; at the end of 'for' statement. \n " , errout . str ( ) ) ;
2011-10-11 08:41:39 +02:00
check (
" void foo() { \n "
" while (!quit); { \n "
" do_something(); \n "
" } \n "
" } " ) ;
2013-03-03 18:54:44 +01:00
ASSERT_EQUALS ( " [test.cpp:2]: (warning, inconclusive) Suspicious use of ; at the end of 'while' statement. \n " , errout . str ( ) ) ;
2011-10-11 08:41:39 +02:00
}
2011-10-13 20:53:06 +02:00
void checkForSuspiciousSemicolon2 ( ) {
2011-10-11 08:41:39 +02:00
check (
" void foo() { \n "
" if (i == 1); { \n "
" do_something(); \n "
" } \n "
" } " ) ;
2013-03-03 18:54:44 +01:00
ASSERT_EQUALS ( " [test.cpp:2]: (warning, inconclusive) Suspicious use of ; at the end of 'if' statement. \n " , errout . str ( ) ) ;
2011-10-11 08:41:39 +02:00
// Seen this in the wild
check (
" void foo() { \n "
" if (Match()); \n "
" do_something(); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
" void foo() { \n "
" if (Match()); \n "
" else \n "
" do_something(); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
" void foo() { \n "
" if (i == 1) \n "
" ; \n "
" { \n "
" do_something(); \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
" void foo() { \n "
" if (i == 1); \n "
" \n "
" { \n "
" do_something(); \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2011-10-22 17:12:52 +02:00
2012-01-15 01:19:34 +01:00
void checkDoubleFree ( ) {
check (
" void foo(char *p) { \n "
" free(p); \n "
" free(p); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3]: (error) Memory pointed to by 'p' is freed twice. \n " , errout . str ( ) ) ;
check (
" void foo(char *p, char *r) { \n "
" free(p); \n "
" free(r); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
" void foo() { \n "
" free(p); \n "
" free(r); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
" void foo(char *p) { \n "
" if (x < 3) free(p); \n "
2013-04-13 20:17:53 +02:00
" else { if (x > 9) free(p); } \n "
2012-01-15 01:19:34 +01:00
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
" void foo(char *p) { \n "
" free(p); \n "
" getNext(&p); \n "
" free(p); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
" void foo(char *p) { \n "
" free(p); \n "
" bar(); \n "
" free(p); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:4]: (error) Memory pointed to by 'p' is freed twice. \n " , errout . str ( ) ) ;
check (
" void foo(char *p) { \n "
" free(p); \n "
2013-04-13 20:17:53 +02:00
" printf( \" Freed memory at location %x \" , p); \n "
2012-01-15 01:19:34 +01:00
" free(p); \n "
2014-09-27 21:31:04 +02:00
" } " , nullptr , false , false , false , true , & settings_std ) ;
2012-01-15 01:19:34 +01:00
ASSERT_EQUALS ( " [test.cpp:4]: (error) Memory pointed to by 'p' is freed twice. \n " , errout . str ( ) ) ;
check (
" void foo(DIR *p) { \n "
" closedir(p); \n "
" closedir(p); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3]: (error) Directory handle 'p' closed twice. \n " , errout . str ( ) ) ;
check (
" void foo(DIR *p, DIR *r) { \n "
" closedir(p); \n "
" closedir(r); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
" void foo(DIR *p) { \n "
" if (x < 3) closedir(p); \n "
2013-04-13 20:17:53 +02:00
" else { if (x > 9) closedir(p); } \n "
2012-01-15 01:19:34 +01:00
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
" void foo(DIR *p) { \n "
" closedir(p); \n "
" gethandle(&p); \n "
" closedir(p); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
" void foo(DIR *p) { \n "
" closedir(p); \n "
" gethandle(); \n "
" closedir(p); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:4]: (error) Directory handle 'p' closed twice. \n " , errout . str ( ) ) ;
check (
" void foo(Data* p) { \n "
" free(p->a); \n "
" free(p->b); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
2012-08-24 00:03:22 +02:00
" void f() { \n "
2013-04-13 20:17:53 +02:00
" char *p; p = malloc(100); \n "
2012-08-24 00:03:22 +02:00
" if (x) { \n "
" free(p); \n "
" exit(); \n "
" } \n "
" free(p); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2012-08-23 20:27:00 +02:00
2012-08-24 00:03:22 +02:00
check (
" void f() { \n "
2013-04-13 20:17:53 +02:00
" char *p; p = malloc(100); \n "
2012-08-24 00:03:22 +02:00
" if (x) { \n "
" free(p); \n "
2012-09-17 13:18:19 +02:00
" x = 0; \n "
2012-08-24 00:03:22 +02:00
" } \n "
" free(p); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:7]: (error) Memory pointed to by 'p' is freed twice. \n " , errout . str ( ) ) ;
2012-08-23 20:27:00 +02:00
2012-08-24 00:03:22 +02:00
check (
" void f() { \n "
2013-04-13 20:17:53 +02:00
" char *p; p = do_something(); \n "
2012-08-24 00:03:22 +02:00
" free(p); \n "
" p = do_something(); \n "
" free(p); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
" void foo(char *p) { \n "
" g_free(p); \n "
" g_free(p); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3]: (error) Memory pointed to by 'p' is freed twice. \n " , errout . str ( ) ) ;
check (
" void foo(char *p, char *r) { \n "
" g_free(p); \n "
" g_free(r); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
" void foo(char *p) { \n "
" g_free(p); \n "
" getNext(&p); \n "
" g_free(p); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
" void foo(char *p) { \n "
" g_free(p); \n "
" bar(); \n "
" g_free(p); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:4]: (error) Memory pointed to by 'p' is freed twice. \n " , errout . str ( ) ) ;
check (
" void foo(char *p) { \n "
" delete p; \n "
" delete p; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3]: (error) Memory pointed to by 'p' is freed twice. \n " , errout . str ( ) ) ;
check (
" void foo(char *p, char *r) { \n "
" delete p; \n "
" delete r; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
" void foo(char *p) { \n "
" delete p; \n "
" getNext(&p); \n "
" delete p; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
" void foo(char *p) { \n "
" delete p; \n "
" bar(); \n "
" delete p; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:4]: (error) Memory pointed to by 'p' is freed twice. \n " , errout . str ( ) ) ;
check (
" void foo(char *p) { \n "
" delete[] p; \n "
" delete[] p; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3]: (error) Memory pointed to by 'p' is freed twice. \n " , errout . str ( ) ) ;
check (
" void foo(char *p, char *r) { \n "
" delete[] p; \n "
" delete[] r; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
" void foo(char *p) { \n "
" delete[] p; \n "
" getNext(&p); \n "
" delete[] p; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
" void foo(char *p) { \n "
" delete[] p; \n "
" bar(); \n "
" delete[] p; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:4]: (error) Memory pointed to by 'p' is freed twice. \n " , errout . str ( ) ) ;
check (
" ~LineMarker() { \n "
" delete pxpm; \n "
" } \n "
" LineMarker &operator=(const LineMarker &) { \n "
" delete pxpm; \n "
" pxpm = NULL; \n "
" return *this; \n "
" } "
) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
" void foo() \n "
" { \n "
2013-04-13 20:17:53 +02:00
" int* ptr; ptr = NULL; \n "
2012-08-24 00:03:22 +02:00
" try \n "
" { \n "
" ptr = new int(4); \n "
" } \n "
" catch(...) \n "
" { \n "
" delete ptr; \n "
" throw; \n "
" } \n "
" delete ptr; \n "
" } "
) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
" int foo() \n "
" { \n "
2013-04-13 20:17:53 +02:00
" int* a; a = new int; \n "
" bool doDelete; doDelete = true; \n "
2012-09-17 13:18:19 +02:00
" if (a != 0) \n "
" { \n "
" doDelete = false; \n "
" delete a; \n "
" } \n "
" if(doDelete) \n "
" delete a; \n "
" return 0; \n "
2012-08-24 00:03:22 +02:00
" } "
) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
" void foo(int y) \n "
" { \n "
2013-04-13 20:17:53 +02:00
" char * x; x = NULL; \n "
" while(true) { \n "
2012-08-24 00:03:22 +02:00
" x = new char[100]; \n "
" if (y++ > 100) \n "
" break; \n "
" delete[] x; \n "
" } \n "
" delete[] x; \n "
" } "
) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
" void foo(int y) \n "
" { \n "
2013-04-13 20:17:53 +02:00
" char * x; x = NULL; \n "
2012-08-24 00:03:22 +02:00
" for (int i = 0; i < 10000; i++) { \n "
" x = new char[100]; \n "
" delete[] x; \n "
" } \n "
" delete[] x; \n "
" } "
) ;
ASSERT_EQUALS ( " [test.cpp:8]: (error) Memory pointed to by 'x' is freed twice. \n " , errout . str ( ) ) ;
check (
" void foo(int y) \n "
" { \n "
2013-04-13 20:17:53 +02:00
" char * x; x = NULL; \n "
2012-08-24 00:03:22 +02:00
" while (isRunning()) { \n "
" x = new char[100]; \n "
" delete[] x; \n "
" } \n "
" delete[] x; \n "
" } "
) ;
ASSERT_EQUALS ( " [test.cpp:8]: (error) Memory pointed to by 'x' is freed twice. \n " , errout . str ( ) ) ;
check (
" void foo(int y) \n "
" { \n "
2013-04-13 20:17:53 +02:00
" char * x; x = NULL; \n "
2012-08-24 00:03:22 +02:00
" while (isRunning()) { \n "
" x = malloc(100); \n "
" free(x); \n "
" } \n "
" free(x); \n "
" } "
) ;
2013-01-06 04:02:19 +01:00
TODO_ASSERT_EQUALS ( " [test.cpp:8]: (error) Memory pointed to by 'x' is freed twice. \n " , " " , errout . str ( ) ) ;
2012-08-24 00:03:22 +02:00
check (
" void foo(int y) \n "
" { \n "
2013-04-13 20:17:53 +02:00
" char * x; x = NULL; \n "
2012-08-24 00:03:22 +02:00
" for (;;) { \n "
" x = new char[100]; \n "
" if (y++ > 100) \n "
" break; \n "
" delete[] x; \n "
" } \n "
" delete[] x; \n "
" } "
) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
" void foo(int y) \n "
" { \n "
2013-04-13 20:17:53 +02:00
" char * x; x = NULL; \n "
2012-08-24 00:03:22 +02:00
" do { \n "
" x = new char[100]; \n "
" if (y++ > 100) \n "
" break; \n "
" delete[] x; \n "
2013-04-13 20:17:53 +02:00
" } while (true); \n "
2012-08-24 00:03:22 +02:00
" delete[] x; \n "
" } "
) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
" void f() \n "
" { \n "
2013-04-13 20:17:53 +02:00
" char *p; p = 0; \n "
2012-08-24 00:03:22 +02:00
" if (x < 100) { \n "
" p = malloc(10); \n "
" free(p); \n "
" } \n "
" free(p); \n "
" } "
) ;
2013-01-06 04:02:19 +01:00
TODO_ASSERT_EQUALS ( " [test.cpp:8]: (error) Memory pointed to by 'p' is freed twice. \n " , " " , errout . str ( ) ) ;
check (
2013-06-26 09:47:02 +02:00
" void MyFunction() \n "
2013-01-06 04:02:19 +01:00
" { \n "
2013-04-13 20:17:53 +02:00
" char* data; data = new char[100]; \n "
2013-01-06 04:02:19 +01:00
" try \n "
" { \n "
" } \n "
" catch(err) \n "
" { \n "
" delete[] data; \n "
" MyThrow(err); \n "
" } \n "
" delete[] data; \n "
" } \n "
" void MyThrow(err) \n "
" { \n "
" throw(err); \n "
" } \n "
) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
2013-06-26 09:47:02 +02:00
" void MyFunction() \n "
2013-01-06 04:02:19 +01:00
" { \n "
2013-04-13 20:17:53 +02:00
" char* data; data = new char[100]; \n "
2013-01-06 04:02:19 +01:00
" try \n "
" { \n "
" } \n "
" catch(err) \n "
" { \n "
" delete[] data; \n "
" MyExit(err); \n "
" } \n "
" delete[] data; \n "
" } \n "
" void MyExit(err) \n "
" { \n "
" exit(err); \n "
" } \n "
) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2012-08-24 00:03:22 +02:00
}
2012-09-05 08:31:23 +02:00
void checkInvalidFree ( ) {
check (
" void foo(char *p) { \n "
2013-04-13 20:17:53 +02:00
" char *a; a = malloc(1024); \n "
2012-09-05 08:31:23 +02:00
" free(a + 10); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3]: (error) Invalid memory address freed. \n " , errout . str ( ) ) ;
check (
" void foo(char *p) { \n "
2013-04-13 20:17:53 +02:00
" char *a; a = malloc(1024); \n "
2012-09-05 08:31:23 +02:00
" free(a - 10); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3]: (error) Invalid memory address freed. \n " , errout . str ( ) ) ;
check (
" void foo(char *p) { \n "
2013-04-13 20:17:53 +02:00
" char *a; a = malloc(1024); \n "
2012-09-05 08:31:23 +02:00
" free(10 + a); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3]: (error) Invalid memory address freed. \n " , errout . str ( ) ) ;
check (
" void foo(char *p) { \n "
2013-04-13 20:17:53 +02:00
" char *a; a = new char[1024]; \n "
2012-09-05 08:31:23 +02:00
" delete[] (a + 10); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3]: (error) Invalid memory address freed. \n " , errout . str ( ) ) ;
check (
" void foo(char *p) { \n "
2013-04-13 20:17:53 +02:00
" char *a; a = new char; \n "
" delete a + 10; \n "
2012-09-05 08:31:23 +02:00
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3]: (error) Invalid memory address freed. \n " , errout . str ( ) ) ;
check (
" void foo(char *p) { \n "
2013-04-13 20:17:53 +02:00
" char *a; a = new char; \n "
2012-09-05 08:31:23 +02:00
" bar(a); \n "
2013-04-13 20:17:53 +02:00
" delete a + 10; \n "
2012-09-05 08:31:23 +02:00
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
" void foo(char *p) { \n "
2013-04-13 20:17:53 +02:00
" char *a; a = new char; \n "
" char *b; b = new char; \n "
2012-09-05 08:31:23 +02:00
" bar(a); \n "
2013-04-13 20:17:53 +02:00
" delete a + 10; \n "
" delete b + 10; \n "
2012-09-05 08:31:23 +02:00
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:6]: (error) Invalid memory address freed. \n " , errout . str ( ) ) ;
check (
" void foo(char *p) { \n "
2013-04-13 20:17:53 +02:00
" char *a; a = new char; \n "
" char *b; b = new char; \n "
2012-09-05 08:31:23 +02:00
" bar(a, b); \n "
2013-04-13 20:17:53 +02:00
" delete a + 10; \n "
" delete b + 10; \n "
2012-09-05 08:31:23 +02:00
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check (
" void foo(char *p) { \n "
2013-04-13 20:17:53 +02:00
" char *a; a = new char; \n "
2012-09-05 08:31:23 +02:00
" bar() \n "
2013-04-13 20:17:53 +02:00
" delete a + 10; \n "
2012-09-05 08:31:23 +02:00
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:4]: (error) Invalid memory address freed. \n " , errout . str ( ) ) ;
2012-11-06 06:02:51 +01:00
check (
" void foo(size_t xx) { \n "
2013-04-13 20:17:53 +02:00
" char *ptr; ptr = malloc(42); \n "
2012-11-06 06:02:51 +01:00
" ptr += xx; \n "
" free(ptr - xx - 1); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:4]: (error, inconclusive) Invalid memory address freed. \n " , errout . str ( ) ) ;
check (
" void foo(size_t xx) { \n "
2013-04-13 20:17:53 +02:00
" char *ptr; ptr = malloc(42); \n "
2012-11-06 06:02:51 +01:00
" std::cout << ptr; \n "
" ptr = otherPtr; \n "
2013-04-13 20:17:53 +02:00
" free(otherPtr - xx - 1); \n "
2012-11-06 06:02:51 +01:00
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2012-09-05 08:31:23 +02:00
}
2014-09-11 19:45:52 +02:00
void check_redundant_copy ( const char code [ ] , bool inconclusive = true ) {
2012-08-24 00:03:22 +02:00
// Clear the error buffer..
errout . str ( " " ) ;
Settings settings ;
settings . addEnabled ( " performance " ) ;
2014-09-11 19:45:52 +02:00
settings . inconclusive = inconclusive ;
2012-08-24 00:03:22 +02:00
// Tokenize..
Tokenizer tokenizer ( & settings , this ) ;
std : : istringstream istr ( code ) ;
tokenizer . tokenize ( istr , " test.cpp " ) ;
// Simplify token list..
CheckOther checkOther ( & tokenizer , & settings , this ) ;
2013-12-30 17:45:28 +01:00
tokenizer . simplifyTokenList2 ( ) ;
2012-08-24 00:03:22 +02:00
checkOther . checkRedundantCopy ( ) ;
}
void checkRedundantCopy ( ) {
2014-03-27 11:15:17 +01:00
check_redundant_copy ( " const std::string& getA(){static std::string a;return a;} \n "
" void foo() { \n "
" const std::string a = getA(); \n "
" } " ) ;
2014-05-02 20:09:38 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (performance, inconclusive) Use const reference for 'a' to avoid unnecessary data copying. \n " , errout . str ( ) ) ;
2014-03-27 11:15:17 +01:00
2012-08-24 00:03:22 +02:00
check_redundant_copy ( " class A{public:A(){}}; \n "
" const A& getA(){static A a;return a;} \n "
" int main() \n "
" { \n "
" const A a = getA(); \n "
" return 0; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2014-05-02 20:09:38 +02:00
ASSERT_EQUALS ( " [test.cpp:5]: (performance, inconclusive) Use const reference for 'a' to avoid unnecessary data copying. \n " , errout . str ( ) ) ;
2012-08-24 00:03:22 +02:00
check_redundant_copy ( " const int& getA(){static int a;return a;} \n "
" int main() \n "
" { \n "
" const int a = getA(); \n "
" return 0; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-08-24 00:03:22 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check_redundant_copy ( " const int& getA(){static int a;return a;} \n "
" int main() \n "
" { \n "
" int getA = 0; \n "
" const int a = getA + 3; \n "
" return 0; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-08-24 00:03:22 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check_redundant_copy ( " class A{public:A(){}}; \n "
" const A& getA(){static A a;return a;} \n "
" int main() \n "
" { \n "
" const A a(getA()); \n "
" return 0; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2014-05-02 20:09:38 +02:00
ASSERT_EQUALS ( " [test.cpp:5]: (performance, inconclusive) Use const reference for 'a' to avoid unnecessary data copying. \n " , errout . str ( ) ) ;
2012-08-24 00:03:22 +02:00
check_redundant_copy ( " const int& getA(){static int a;return a;} \n "
" int main() \n "
" { \n "
" const int a(getA()); \n "
" return 0; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-08-24 00:03:22 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check_redundant_copy ( " class A{ \n "
" public:A(int a=0){_a = a;} \n "
" A operator+(const A & a){return A(_a+a._a);} \n "
" private:int _a;}; \n "
" const A& getA(){static A a;return a;} \n "
" int main() \n "
" { \n "
" const A a = getA() + 1; \n "
" return 0; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-08-24 00:03:22 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check_redundant_copy ( " class A{ \n "
" public:A(int a=0){_a = a;} \n "
" A operator+(const A & a){return A(_a+a._a);} \n "
" private:int _a;}; \n "
" const A& getA(){static A a;return a;} \n "
" int main() \n "
" { \n "
" const A a(getA()+1); \n "
" return 0; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2012-08-24 00:03:22 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-12-14 08:46:18 +01:00
// #5190 - FP when creating object with constructor that takes a reference
check_redundant_copy ( " class A {}; \n "
" class B { B(const A &a); }; \n "
" const A &getA(); \n "
" void f() { \n "
" const B b(getA()); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-05-02 20:09:38 +02:00
// #5618
2014-09-11 19:45:52 +02:00
const char * code5618 = " class Token { \n "
" public: \n "
" const std::string& str(); \n "
" }; \n "
" void simplifyArrayAccessSyntax() { \n "
" for (Token *tok = list.front(); tok; tok = tok->next()) { \n "
" const std::string temp = tok->str(); \n "
" tok->str(tok->strAt(2)); \n "
" } \n "
" } " ;
check_redundant_copy ( code5618 ) ;
2014-05-02 20:09:38 +02:00
TODO_ASSERT_EQUALS ( " " , " [test.cpp:7]: (performance, inconclusive) Use const reference for 'temp' to avoid unnecessary data copying. \n " , errout . str ( ) ) ;
2014-09-11 19:45:52 +02:00
check_redundant_copy ( code5618 , false ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-05-29 02:58:18 +02:00
// #5890 - crash: wesnoth desktop_util.cpp / unicode.hpp
check_redundant_copy ( " typedef std::vector<char> X; \n "
" X f<X>(const X &in) { \n "
" const X s = f<X>(in); \n "
" return f<X>(s); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2012-08-24 00:03:22 +02:00
}
void checkNegativeShift ( ) {
check ( " void foo() \n "
" { \n "
2013-04-13 20:17:53 +02:00
" int a; a = 123; \n "
2012-08-24 00:03:22 +02:00
" a << -1; \n "
2012-08-22 15:44:20 +02:00
" } " ) ;
2014-03-29 13:01:30 +01:00
ASSERT_EQUALS ( " [test.cpp:4]: (error) Shifting by a negative value is undefined behaviour \n " , errout . str ( ) ) ;
2012-08-24 00:03:22 +02:00
check ( " void foo() \n "
" { \n "
2013-04-13 20:17:53 +02:00
" int a; a = 123; \n "
2012-08-24 00:03:22 +02:00
" a >> -1; \n "
" } " ) ;
2014-03-29 13:01:30 +01:00
ASSERT_EQUALS ( " [test.cpp:4]: (error) Shifting by a negative value is undefined behaviour \n " , errout . str ( ) ) ;
2012-08-24 00:03:22 +02:00
check ( " void foo() \n "
" { \n "
2013-04-13 20:17:53 +02:00
" int a; a = 123; \n "
2012-08-24 00:03:22 +02:00
" a <<= -1; \n "
" } " ) ;
2014-03-29 13:01:30 +01:00
ASSERT_EQUALS ( " [test.cpp:4]: (error) Shifting by a negative value is undefined behaviour \n " , errout . str ( ) ) ;
2012-08-24 00:03:22 +02:00
check ( " void foo() \n "
" { \n "
2013-04-13 20:17:53 +02:00
" int a; a = 123; \n "
2012-08-24 00:03:22 +02:00
" a >>= -1; \n "
2012-08-22 15:44:20 +02:00
" } " ) ;
2014-03-29 13:01:30 +01:00
ASSERT_EQUALS ( " [test.cpp:4]: (error) Shifting by a negative value is undefined behaviour \n " , errout . str ( ) ) ;
2012-09-04 12:36:00 +02:00
check ( " void foo() \n "
" { \n "
" std::cout << -1; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() \n "
" { \n "
" std::cout << a << -1 ; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() \n "
" { \n "
" std::cout << 3 << -1 ; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2012-08-22 15:44:20 +02:00
}
2012-08-24 11:28:50 +02:00
void incompleteArrayFill ( ) {
check ( " void f() { \n "
" int a[5]; \n "
" memset(a, 123, 5); \n "
" memcpy(a, b, 5); \n "
" memmove(a, b, 5); \n "
" } " ) ;
2013-05-09 15:32:02 +02:00
ASSERT_EQUALS ( " [test.cpp:4] -> [test.cpp:5]: (performance) Buffer 'a' is being written before its old content has been used. \n "
2012-09-02 13:09:32 +02:00
" [test.cpp:3]: (warning, inconclusive) Array 'a' is filled incompletely. Did you forget to multiply the size given to 'memset()' with 'sizeof(*a)'? \n "
2012-08-24 11:28:50 +02:00
" [test.cpp:4]: (warning, inconclusive) Array 'a' is filled incompletely. Did you forget to multiply the size given to 'memcpy()' with 'sizeof(*a)'? \n "
" [test.cpp:5]: (warning, inconclusive) Array 'a' is filled incompletely. Did you forget to multiply the size given to 'memmove()' with 'sizeof(*a)'? \n " , errout . str ( ) ) ;
check ( " void f() { \n "
" Foo* a[5]; \n "
" memset(a, 'a', 5); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3]: (warning, inconclusive) Array 'a' is filled incompletely. Did you forget to multiply the size given to 'memset()' with 'sizeof(*a)'? \n " , errout . str ( ) ) ;
check ( " class Foo {int a; int b;}; \n "
" void f() { \n "
" Foo a[5]; \n "
" memset(a, 'a', 5); \n "
" } " ) ;
TODO_ASSERT_EQUALS ( " [test.cpp:3]: (warning, inconclusive) Array 'a' is filled incompletely. Did you forget to multiply the size given to 'memset()' with 'sizeof(*a)'? \n " , " " , errout . str ( ) ) ;
check ( " void f() { \n "
" Foo a[5]; \n " // Size of foo is unknown
" memset(a, 'a', 5); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void f() { \n "
" char a[5]; \n "
" memset(a, 'a', 5); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void f() { \n "
" int a[5]; \n "
" memset(a+15, 'a', 5); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void f() { \n "
" bool a[5]; \n "
" memset(a, false, 5); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3]: (portability, inconclusive) Array 'a' might be filled incompletely. Did you forget to multiply the size given to 'memset()' with 'sizeof(*a)'? \n " , errout . str ( ) ) ;
}
2012-09-02 13:09:32 +02:00
void redundantVarAssignment ( ) {
// Simple tests
check ( " void f(int i) { \n "
" i = 1; \n "
" i = 1; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:3]: (performance) Variable 'i' is reassigned a value before the old one has been used. \n " , errout . str ( ) ) ;
2013-10-23 06:42:52 +02:00
{
// non-local variable => only show warning when inconclusive is used
const char code [ ] = " int i; \n "
" void f() { \n "
" i = 1; \n "
" i = 1; \n "
" } " ;
check ( code , " test.cpp " , false , false ) ; // inconclusive = false
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( code , " test.cpp " , false , true ) ; // inconclusive = true
ASSERT_EQUALS ( " [test.cpp:3] -> [test.cpp:4]: (performance, inconclusive) Variable 'i' is reassigned a value before the old one has been used if variable is no semaphore variable. \n " , errout . str ( ) ) ;
}
2012-09-02 13:09:32 +02:00
check ( " void f() { \n "
" int i; \n "
" i = 1; \n "
" i = 1; \n "
2014-02-16 10:32:10 +01:00
" } " , nullptr , false , false , false , false ) ;
2012-09-02 13:09:32 +02:00
ASSERT_EQUALS ( " [test.cpp:3] -> [test.cpp:4]: (performance) Variable 'i' is reassigned a value before the old one has been used. \n " , errout . str ( ) ) ;
2012-12-07 20:45:20 +01:00
check ( " void f() { \n "
" static int i; \n "
" i = 1; \n "
" i = 1; \n "
" } " ) ;
2013-02-15 18:01:10 +01:00
ASSERT_EQUALS ( " [test.cpp:3] -> [test.cpp:4]: (performance, inconclusive) Variable 'i' is reassigned a value before the old one has been used if variable is no semaphore variable. \n " , errout . str ( ) ) ;
2012-12-07 20:45:20 +01:00
2012-09-02 13:09:32 +02:00
// Testing different types
check ( " void f() { \n "
" Foo& bar = foo(); \n "
" bar = x; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-02-15 17:09:31 +01:00
2012-09-02 13:09:32 +02:00
check ( " void f() { \n "
" Foo& bar = foo(); \n "
" bar = x; \n "
2013-02-15 18:40:34 +01:00
" bar = y; \n "
2012-09-02 13:09:32 +02:00
" } " ) ;
2013-02-15 18:01:10 +01:00
ASSERT_EQUALS ( " [test.cpp:3] -> [test.cpp:4]: (performance, inconclusive) Variable 'bar' is reassigned a value before the old one has been used if variable is no semaphore variable. \n " , errout . str ( ) ) ;
2012-09-02 13:09:32 +02:00
2013-02-15 17:09:31 +01:00
check ( " void f() { \n "
" Foo& bar = foo(); \n " // #4425. bar might refer to something global, etc.
" bar = y(); \n "
" foo(); \n "
2012-09-02 13:09:32 +02:00
" bar = y(); \n "
" } " ) ;
2013-02-15 17:09:31 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2012-09-02 13:09:32 +02:00
// Tests with function call between assignment
2012-09-03 12:03:30 +02:00
check ( " void f(int i) { \n "
2012-09-02 13:09:32 +02:00
" i = 1; \n "
" bar(); \n "
" i = 1; \n "
" } " ) ;
2012-09-03 12:03:30 +02:00
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:4]: (performance) Variable 'i' is reassigned a value before the old one has been used. \n " , errout . str ( ) ) ;
2012-09-02 13:09:32 +02:00
2012-09-03 12:03:30 +02:00
check ( " int i; \n "
2012-09-02 13:09:32 +02:00
" void f() { \n "
" i = 1; \n "
" bar(); \n " // Global variable might be accessed in bar()
" i = 1; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2012-12-07 20:45:20 +01:00
check ( " void f() { \n "
" static int i; \n "
" i = 1; \n "
" bar(); \n " // bar() might call f() recursively. This could be a false positive in more complex examples (when value of i is used somewhere. See #4229)
" i = 2; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2012-09-03 12:03:30 +02:00
check ( " void f() { \n "
2012-09-02 13:09:32 +02:00
" int i; \n "
" i = 1; \n "
" bar(); \n "
" i = 1; \n "
2014-02-16 10:32:10 +01:00
" } " , nullptr , false , false , false , false ) ;
2012-09-03 12:03:30 +02:00
ASSERT_EQUALS ( " [test.cpp:3] -> [test.cpp:5]: (performance) Variable 'i' is reassigned a value before the old one has been used. \n " , errout . str ( ) ) ;
2012-09-02 13:09:32 +02:00
check ( " void bar(int i) {} \n "
" void f(int i) { \n "
" i = 1; \n "
" bar(i); \n " // Passed as argument
" i = 1; \n "
2014-02-16 10:32:10 +01:00
" } " , nullptr , false , false , false , false ) ;
2012-09-02 13:09:32 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-04-10 21:56:30 +02:00
check ( " void f() { \n "
" Foo bar = foo(); \n "
" bar(); \n " // #5568. operator() called
" bar = y(); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2012-09-02 13:09:32 +02:00
// Branch tests
check ( " void f(int i) { \n "
" i = 1; \n "
" if(x) \n "
" i = 0; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void f(int i) { \n "
" if(x) \n "
" i = 0; \n "
" i = 1; \n "
" i = 2; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:4] -> [test.cpp:5]: (performance) Variable 'i' is reassigned a value before the old one has been used. \n " , errout . str ( ) ) ;
2013-02-15 18:40:34 +01:00
// #4513
check ( " int x; \n "
" int g() { \n "
" return x*x; \n "
" } \n "
" void f() { \n "
" x = 2; \n "
" x = g(); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " int g() { \n "
" return x*x; \n "
" } \n "
" void f(int x) { \n "
" x = 2; \n "
" x = g(); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:5] -> [test.cpp:6]: (performance) Variable 'x' is reassigned a value before the old one has been used. \n " , errout . str ( ) ) ;
check ( " void f() { \n "
" Foo& bar = foo(); \n "
" bar = x; \n "
" bar = y(); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " class C { \n "
" int x; \n "
" void g() { return x*x; } \n "
" void f(); \n "
" }; \n "
" \n "
" void C::f() { \n "
" x = 2; \n "
" x = g(); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " class C { \n "
" int x; \n "
" void g() { return x*x; } \n "
" void f(); \n "
" }; \n "
" \n "
" void C::f(Foo z) { \n "
" x = 2; \n "
" x = z.g(); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:8] -> [test.cpp:9]: (performance, inconclusive) Variable 'x' is reassigned a value before the old one has been used if variable is no semaphore variable. \n " , errout . str ( ) ) ;
2013-04-03 09:33:33 +02:00
// from #3103 (avoid a false negative)
check ( " int foo(){ \n "
" int x; \n "
" x = 1; \n "
" x = 1; \n "
" return x + 1; \n "
2014-02-16 10:32:10 +01:00
" } " , nullptr , false , false , false , false ) ;
2013-05-09 15:25:36 +02:00
ASSERT_EQUALS ( " [test.cpp:3] -> [test.cpp:4]: (performance) Variable 'x' is reassigned a value before the old one has been used. \n " , errout . str ( ) ) ;
// from #3103 (avoid a false positive)
check ( " int foo(){ \n "
" int x; \n "
" x = 1; \n "
2013-04-03 09:33:33 +02:00
" if (y) \n " // <-- cppcheck does not know anything about 'y'
2013-04-09 09:49:58 +02:00
" x = 2; \n "
2013-04-03 09:33:33 +02:00
" return x + 1; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-05-09 15:39:33 +02:00
check ( " void f() { \n " // Ticket #4356
" int x = 0; \n " // <- ignore assignment with 0
" x = 3; \n "
" } " , 0 , false , false , false , false ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void f() { \n "
" int i = 54; \n "
" i = 0; \n "
" } " , 0 , false , false , false , false ) ;
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:3]: (performance) Variable 'i' is reassigned a value before the old one has been used. \n " , errout . str ( ) ) ;
check ( " void f() { \n "
" int i = 54; \n "
" i = 1; \n "
" } " , 0 , false , false , false , false ) ;
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:3]: (performance) Variable 'i' is reassigned a value before the old one has been used. \n " , errout . str ( ) ) ;
2013-06-10 22:02:02 +02:00
check ( " int foo() { \n " // #4420
" int x; \n "
" bar(++x); \n "
" x = 5; \n "
" return bar(x); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-08-15 16:13:58 +02:00
// struct member..
check ( " struct AB { int a; int b; }; \n "
" \n "
" int f() { \n "
" struct AB ab; \n "
" ab.a = 1; \n "
" ab.a = 2; \n "
" return ab.a; \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:5] -> [test.cpp:6]: (performance, inconclusive) Variable 'a' is reassigned a value before the old one has been used if variable is no semaphore variable. \n " , errout . str ( ) ) ;
check ( " struct AB { int a; int b; }; \n "
" \n "
" int f() { \n "
" struct AB ab; \n "
" ab.a = 1; \n "
" ab = do_something(); \n "
" return ab.a; \n "
" } " ) ;
TODO_ASSERT_EQUALS ( " error " , " " , errout . str ( ) ) ;
check ( " struct AB { int a; int b; }; \n "
" \n "
" int f() { \n "
" struct AB ab; \n "
" ab.a = 1; \n "
" do_something(&ab); \n "
" ab.a = 2; \n "
" return ab.a; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-11-04 23:46:07 +01:00
2014-02-23 11:02:39 +01:00
check ( " struct AB { int a; int b; }; \n "
" \n "
" int f(DO_SOMETHING do_something) { \n "
" struct AB ab; \n "
" ab.a = 1; \n "
" do_something(&ab); \n "
" ab.a = 2; \n "
" return ab.a; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-11-04 23:46:07 +01:00
check ( " struct AB { int a; int b; }; \n "
" \n "
" int f(struct AB *ab) { \n "
" ab->a = 1; \n "
" ab->b = 2; \n "
" ab++; \n "
" ab->a = 1; \n "
" ab->b = 2; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " struct AB { int a; int b; }; \n "
" \n "
" int f(struct AB *ab) { \n "
" ab->a = 1; \n "
" ab->b = 2; \n "
" ab = x; \n "
" ab->a = 1; \n "
" ab->b = 2; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-11-10 17:20:40 +01:00
2013-11-14 16:10:00 +01:00
check ( " void f(struct AB *ab) { \n " // #
" ab->data->x = 1; \n "
" ab = &ab1; \n "
" ab->data->x = 2; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-09-01 23:16:52 +02:00
// #5964
check ( " void func(char *buffer, const char *format, int precision, unsigned value) { \n "
" (precision < 0) ? sprintf(buffer, format, value) : sprintf(buffer, format, precision, value); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-11-10 17:20:40 +01:00
// don't crash
check ( " struct data { \n "
" struct { int i; } fc; \n "
" }; \n "
" struct state { \n "
" struct data d[123]; \n "
" }; \n "
" void func(struct state *s) { \n "
" s->foo[s->x++] = 2; \n "
" s->d[1].fc.i++; \n "
" } " ) ;
2012-09-02 13:09:32 +02:00
}
void redundantMemWrite ( ) {
// Simple tests
check ( " void f(void* a) { \n "
" memcpy(a, foo, bar); \n "
" memset(a, 0, bar); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:3]: (performance) Buffer 'a' is being written before its old content has been used. \n " , errout . str ( ) ) ;
check ( " void* a; \n "
" void f() { \n "
" strcpy(a, foo); \n "
" strncpy(a, 0, bar); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3] -> [test.cpp:4]: (performance) Buffer 'a' is being written before its old content has been used. \n " , errout . str ( ) ) ;
check ( " void f() { \n "
" void* a = foo(); \n "
" sprintf(a, foo); \n "
" memmove(a, 0, bar); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3] -> [test.cpp:4]: (performance) Buffer 'a' is being written before its old content has been used. \n " , errout . str ( ) ) ;
// Writing to different parts of a buffer
check ( " void f(void* a) { \n "
" memcpy(a, foo, bar); \n "
" memset(a+5, 0, bar); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
// Use variable as second argument
check ( " void f(void* a, void* b) { \n "
" memset(a, 0, 5); \n "
" memcpy(b, a, 5); \n "
" memset(a, 1, 5); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
// strcat is special
check ( " void f(void* a) { \n "
" strcpy(a, foo); \n "
" strcat(a, bar); \n " // Not redundant
" strcpy(a, x); \n " // Redundant
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:4]: (performance) Buffer 'a' is being written before its old content has been used. \n " , errout . str ( ) ) ;
// Tests with function call between copy
2012-09-03 12:03:30 +02:00
check ( " void f(void* a) { \n "
2012-09-02 13:09:32 +02:00
" snprintf(a, foo, bar); \n "
" bar(); \n "
2013-05-09 15:25:36 +02:00
" memset(a, 0, size); \n "
2012-09-02 13:09:32 +02:00
" } " ) ;
2012-09-03 12:03:30 +02:00
ASSERT_EQUALS ( " [test.cpp:2] -> [test.cpp:4]: (performance) Buffer 'a' is being written before its old content has been used. \n " , errout . str ( ) ) ;
2012-09-02 13:09:32 +02:00
2012-09-03 12:03:30 +02:00
check ( " void* a; \n "
2012-09-02 13:09:32 +02:00
" void f() { \n "
" memset(a, 0, size); \n "
" bar(); \n " // Global variable might be accessed in bar()
" memset(a, 0, size); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2012-09-03 12:03:30 +02:00
check ( " void f() { \n "
2012-09-02 13:09:32 +02:00
" void* a = foo(); \n "
" memset(a, 0, size); \n "
" bar(); \n "
" memset(a, 0, size); \n "
" } " ) ;
2012-09-03 12:03:30 +02:00
ASSERT_EQUALS ( " [test.cpp:3] -> [test.cpp:5]: (performance) Buffer 'a' is being written before its old content has been used. \n " , errout . str ( ) ) ;
2012-09-02 13:09:32 +02:00
check ( " void bar(void* a) {} \n "
" void f(void* a) { \n "
" memset(a, 0, size); \n "
" bar(a); \n " // Passed as argument
" memset(a, 0, size); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
// Branch tests
check ( " void f(void* a) { \n "
" memset(a, 0, size); \n "
" if(x) \n "
" memset(a, 0, size); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-05-09 15:32:02 +02:00
// #4455 - initialization of local buffer
check ( " void f(void) { "
" char buf[10]; \n "
" memset(buf, 0, 10); \n "
" strcpy(buf, string); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void f(void) { \n "
" char buf[10] = {0}; \n "
" memset(buf, 0, 10); \n "
" strcpy(buf, string); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3] -> [test.cpp:4]: (performance) Buffer 'buf' is being written before its old content has been used. \n " , errout . str ( ) ) ;
2014-04-27 11:00:47 +02:00
// #5689 - use return value of strcpy
check ( " int f(void* a) { \n "
" int i = atoi(strcpy(a, foo)); \n "
" strncpy(a, 0, bar); \n "
" return i; \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2012-09-02 13:09:32 +02:00
}
2013-01-13 12:02:10 +01:00
void varFuncNullUB ( ) { // #4482
check ( " void a(...); \n "
" void b() { a(NULL); } " ) ;
2013-01-15 20:45:53 +01:00
ASSERT_EQUALS ( " [test.cpp:2]: (portability) Passing NULL after the last typed argument to a variadic function leads to undefined behaviour. \n " , errout . str ( ) ) ;
2013-01-14 06:44:52 +01:00
check ( " void a(char *p, ...); \n "
" void b() { a(NULL, 2); } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-01-13 12:02:10 +01:00
}
2013-02-17 17:33:32 +01:00
void checkPipeParameterSize ( ) { // #3521
check ( " void f(){ \n "
2014-04-26 16:16:35 +02:00
" int pipefd[1]; \n " // <-- array of two integers is needed
2013-02-17 17:33:32 +01:00
" if (pipe(pipefd) == -1) { \n "
" return; \n "
" } \n "
2014-02-16 10:32:10 +01:00
" } " , nullptr , false , false , true ) ;
2013-03-03 18:54:44 +01:00
ASSERT_EQUALS ( " [test.cpp:3]: (error) Buffer 'pipefd' must have size of 2 integers if used as parameter of pipe(). \n " , errout . str ( ) ) ;
2013-02-17 17:33:32 +01:00
check ( " void f(){ \n "
" int pipefd[2]; \n "
" if (pipe(pipefd) == -1) { \n "
" return; \n "
" } \n "
2014-02-16 10:32:10 +01:00
" } " , nullptr , false , false , true ) ;
2013-02-17 17:33:32 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void f(){ \n "
" int pipefd[20]; \n "
" if (pipe(pipefd) == -1) { \n "
" return; \n "
" } \n "
2014-02-16 10:32:10 +01:00
" } " , nullptr , false , false , true ) ;
2013-02-17 17:33:32 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void f(){ \n "
2014-04-26 16:16:35 +02:00
" int pipefd[1]; \n " // <-- array of two integers is needed
2013-02-17 17:33:32 +01:00
" if (pipe2(pipefd,0) == -1) { \n "
" return; \n "
" } \n "
2014-02-16 10:32:10 +01:00
" } " , nullptr , false , false , true ) ;
2013-03-03 18:54:44 +01:00
ASSERT_EQUALS ( " [test.cpp:3]: (error) Buffer 'pipefd' must have size of 2 integers if used as parameter of pipe(). \n " , errout . str ( ) ) ;
2013-02-17 17:33:32 +01:00
check ( " void f(){ \n "
" int pipefd[2]; \n "
" if (pipe2(pipefd,0) == -1) { \n "
" return; \n "
" } \n "
2014-02-16 10:32:10 +01:00
" } " , nullptr , false , false , true ) ;
2013-02-17 17:33:32 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void f(){ \n "
" int pipefd[20]; \n "
" if (pipe2(pipefd,0) == -1) { \n "
" return; \n "
" } \n "
2014-02-16 10:32:10 +01:00
" } " , nullptr , false , false , true ) ;
2013-02-17 17:33:32 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-04-11 14:22:22 +02:00
// avoid crash with pointer variable
check ( " void foo (int* arrayPtr) \n "
" { \n "
" if (pipe (arrayPtr) < 0) \n "
" {} \n "
" } \n " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-07-29 10:57:41 +02:00
// avoid crash with pointer variable - for local variable on stack as well - see #4801
check ( " void foo { \n "
" int *cp; \n "
" if ( pipe (cp) == -1 ) { \n "
" return; \n "
" } \n "
" } \n " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
// test with unknown variable
check ( " void foo { \n "
" if ( pipe (cp) == -1 ) { \n "
" return; \n "
" } \n "
" } \n " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-04-11 14:22:22 +02:00
2013-08-22 21:33:02 +02:00
// avoid crash with pointer variable - for local variable on stack as well - see #4801
check ( " void foo { \n "
" int *cp; \n "
" if ( pipe (cp) == -1 ) { \n "
" return; \n "
" } \n "
" } \n " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
// test with unknown variable
check ( " void foo { \n "
" if ( pipe (cp) == -1 ) { \n "
" return; \n "
" } \n "
" } \n " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-02-17 17:33:32 +01:00
}
2013-02-27 21:02:12 +01:00
void checkCastIntToCharAndBack ( ) { // #160
// check getchar
2013-03-04 20:14:56 +01:00
check ( " void f() { \n "
2013-04-13 20:17:53 +02:00
" unsigned char c; c = getchar(); \n "
" while( c != EOF) \n "
2013-02-27 21:02:12 +01:00
" { \n "
" bar(c); \n "
2013-04-13 20:17:53 +02:00
" c = getchar(); \n "
2013-02-27 21:02:12 +01:00
" } ; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2013-02-27 21:02:12 +01:00
ASSERT_EQUALS ( " [test.cpp:3]: (warning) Storing getchar() return value in char variable and then comparing with EOF. \n " , errout . str ( ) ) ;
2013-03-04 20:14:56 +01:00
check ( " void f() { \n "
2013-02-27 21:02:12 +01:00
" unsigned char c = getchar(); \n "
" while( EOF != c) \n "
" { \n "
" bar(c); \n "
" } ; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2013-02-27 21:02:12 +01:00
ASSERT_EQUALS ( " [test.cpp:3]: (warning) Storing getchar() return value in char variable and then comparing with EOF. \n " , errout . str ( ) ) ;
2013-03-04 20:14:56 +01:00
check ( " void f() { \n "
2013-04-13 20:17:53 +02:00
" unsigned char c; c = getchar(); \n "
" while( EOF != c ) \n "
2013-02-27 21:02:12 +01:00
" { \n "
" bar(c); \n "
2013-04-13 20:17:53 +02:00
" c = getchar(); \n "
2013-02-27 21:02:12 +01:00
" } ; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2013-02-27 21:02:12 +01:00
ASSERT_EQUALS ( " [test.cpp:3]: (warning) Storing getchar() return value in char variable and then comparing with EOF. \n " , errout . str ( ) ) ;
2013-03-04 20:14:56 +01:00
check ( " void f() { \n "
2013-04-13 20:17:53 +02:00
" int i; i = getchar(); \n "
" while( i != EOF) \n "
2013-02-27 21:02:12 +01:00
" { \n "
" bar(i); \n "
2013-04-13 20:17:53 +02:00
" i = getchar(); \n "
2013-02-27 21:02:12 +01:00
" } ; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2013-02-27 21:02:12 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-03-04 20:14:56 +01:00
check ( " void f() { \n "
2013-04-13 20:17:53 +02:00
" int i; i = getchar(); \n "
" while( EOF != i ) \n "
2013-02-27 21:02:12 +01:00
" { \n "
" bar(i); \n "
2013-04-13 20:17:53 +02:00
" i = getchar(); \n "
2013-02-27 21:02:12 +01:00
" } ; \n "
2013-03-20 15:36:16 +01:00
" } " ) ;
2013-02-27 21:02:12 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
// check getc
check ( " voif f (FILE * pFile){ \n "
" unsigned char c; \n "
" do { \n "
" c = getc (pFile); \n "
" } while (c != EOF) "
2013-03-20 15:36:16 +01:00
" } " ) ;
2013-02-27 21:02:12 +01:00
ASSERT_EQUALS ( " [test.cpp:5]: (warning) Storing getc() return value in char variable and then comparing with EOF. \n " , errout . str ( ) ) ;
check ( " voif f (FILE * pFile){ \n "
" unsigned char c; \n "
" do { \n "
" c = getc (pFile); \n "
" } while (EOF != c) "
2013-03-20 15:36:16 +01:00
" } " ) ;
2013-02-27 21:02:12 +01:00
ASSERT_EQUALS ( " [test.cpp:5]: (warning) Storing getc() return value in char variable and then comparing with EOF. \n " , errout . str ( ) ) ;
check ( " voif f (FILE * pFile){ \n "
" int i; \n "
" do { \n "
" i = getc (pFile); \n "
" } while (i != EOF) "
2013-03-20 15:36:16 +01:00
" } " ) ;
2013-02-27 21:02:12 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " voif f (FILE * pFile){ \n "
" int i; \n "
" do { \n "
" i = getc (pFile); \n "
" } while (EOF != i) "
2013-03-20 15:36:16 +01:00
" } " ) ;
2013-02-27 21:02:12 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
// check fgetc
check ( " voif f (FILE * pFile){ \n "
" unsigned char c; \n "
" do { \n "
" c = fgetc (pFile); \n "
" } while (c != EOF) "
2013-03-20 15:36:16 +01:00
" } " ) ;
2013-02-27 21:02:12 +01:00
ASSERT_EQUALS ( " [test.cpp:5]: (warning) Storing fgetc() return value in char variable and then comparing with EOF. \n " , errout . str ( ) ) ;
check ( " voif f (FILE * pFile){ \n "
" char c; \n "
" do { \n "
" c = fgetc (pFile); \n "
" } while (EOF != c) "
2013-03-20 15:36:16 +01:00
" } " ) ;
2013-02-27 21:02:12 +01:00
ASSERT_EQUALS ( " [test.cpp:5]: (warning) Storing fgetc() return value in char variable and then comparing with EOF. \n " , errout . str ( ) ) ;
check ( " voif f (FILE * pFile){ \n "
" signed char c; \n "
" do { \n "
" c = fgetc (pFile); \n "
" } while (EOF != c) "
2013-03-20 15:36:16 +01:00
" } " ) ;
2013-02-27 21:02:12 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " voif f (FILE * pFile){ \n "
" int i; \n "
" do { \n "
" i = fgetc (pFile); \n "
" } while (i != EOF) "
2013-03-20 15:36:16 +01:00
" } " ) ;
2013-02-27 21:02:12 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " voif f (FILE * pFile){ \n "
" int i; \n "
" do { \n "
" i = fgetc (pFile); \n "
" } while (EOF != i) "
2013-03-20 15:36:16 +01:00
" } " ) ;
2013-02-27 21:02:12 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-03-04 14:25:35 +01:00
// cin.get()
check ( " void f(){ \n "
2013-04-13 20:17:53 +02:00
" char ch; ch = std::cin.get(); \n "
" while (EOF != ch) { \n "
2013-03-29 09:30:40 +01:00
" std::cout << ch; \n "
2013-04-13 20:17:53 +02:00
" ch = std::cin.get(); \n "
2013-03-04 14:25:35 +01:00
" } \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3]: (warning) Storing cin.get() return value in char variable and then comparing with EOF. \n " , errout . str ( ) ) ;
check ( " void f(){ \n "
2013-04-13 20:17:53 +02:00
" char ch; ch = std::cin.get(); \n "
" while (ch != EOF) { \n "
2013-03-29 09:30:40 +01:00
" std::cout << ch; \n "
2013-04-13 20:17:53 +02:00
" ch = std::cin.get(); \n "
2013-03-04 14:25:35 +01:00
" } \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:3]: (warning) Storing cin.get() return value in char variable and then comparing with EOF. \n " , errout . str ( ) ) ;
check ( " void f(){ \n "
2013-04-13 20:17:53 +02:00
" int i; i = std::cin.get(); \n "
" while ( EOF != i ) { \n "
2013-03-29 09:30:40 +01:00
" std::cout << i; \n "
2013-04-13 20:17:53 +02:00
" i = std::cin.get(); \n "
2013-03-04 14:25:35 +01:00
" } \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void f(){ \n "
2013-04-13 20:17:53 +02:00
" int i; i = std::cin.get(); \n "
" while ( i != EOF ) { \n "
2013-03-29 09:30:40 +01:00
" std::cout << i; \n "
2013-04-13 20:17:53 +02:00
" i = std::cin.get(); \n "
2013-03-04 14:25:35 +01:00
" } \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-03-11 17:04:30 +01:00
}
void checkSleepTimeIntervall ( ) {
2013-03-11 17:38:03 +01:00
// check usleep(), which is allowed to be called with in a range of [0,999999]
2013-03-11 17:04:30 +01:00
check ( " void f(){ \n "
" usleep(10000); \n "
2014-02-16 10:32:10 +01:00
" } " , nullptr , false , false , true ) ;
2013-03-11 17:04:30 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-03-04 14:25:35 +01:00
2013-03-11 17:38:03 +01:00
check ( " void f(){ \n "
" usleep(999999); \n "
2014-02-16 10:32:10 +01:00
" } " , nullptr , false , false , true ) ;
2013-03-11 17:38:03 +01:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void f(){ \n "
" usleep(1000000); \n "
2014-02-16 10:32:10 +01:00
" } " , nullptr , false , false , true ) ;
2014-06-08 18:12:11 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (error) Invalid usleep() argument nr 1. The value is 1000000 but the valid values are '0:999999'. \n " , errout . str ( ) ) ;
2013-03-11 17:38:03 +01:00
2013-03-11 17:04:30 +01:00
check ( " void f(){ \n "
" usleep(1000001); \n "
2014-02-16 10:32:10 +01:00
" } " , nullptr , false , false , true ) ;
2014-06-08 18:12:11 +02:00
ASSERT_EQUALS ( " [test.cpp:2]: (error) Invalid usleep() argument nr 1. The value is 1000001 but the valid values are '0:999999'. \n " , errout . str ( ) ) ;
2013-02-27 21:02:12 +01:00
}
2013-06-15 17:49:10 +02:00
void checkCommaSeparatedReturn ( ) {
check ( " int fun(int a) { \n "
" if (a < 0) \n "
2013-06-18 00:13:45 +02:00
" return a++, \n "
" do_something(); \n "
2014-02-16 10:32:10 +01:00
" } " , nullptr , true , false , false , false ) ;
2013-06-15 17:49:10 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (style) Comma is used in return statement. The comma can easily be misread as a ';'. \n " , errout . str ( ) ) ;
check ( " int fun(int a) { \n "
" if (a < 0) \n "
2013-06-18 00:13:45 +02:00
" return a++, do_something(); \n "
2014-02-16 10:32:10 +01:00
" } " , nullptr , true , false , false , false ) ;
2013-06-18 00:13:45 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " int fun(int a) { \n "
" if (a < 0) \n "
" return a+5, \n "
" do_something(); \n "
2014-02-16 10:32:10 +01:00
" } " , nullptr , true , false , false , false ) ;
2013-06-15 17:49:10 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (style) Comma is used in return statement. The comma can easily be misread as a ';'. \n " , errout . str ( ) ) ;
2013-06-18 00:13:45 +02:00
check ( " int fun(int a) { \n "
" if (a < 0) \n "
" return a+5, do_something(); \n "
2014-02-16 10:32:10 +01:00
" } " , nullptr , true , false , false , false ) ;
2013-06-18 00:13:45 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " int fun(int a) { \n "
" if (a < 0) \n "
2013-08-06 20:27:09 +02:00
" return c<int, \n int>::b; \n "
2014-02-16 10:32:10 +01:00
" } " , nullptr , true , false , false , false ) ;
2013-06-18 00:13:45 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-07-28 10:39:58 +02:00
// ticket #4927 Segfault in CheckOther::checkCommaSeparatedReturn() on invalid code
check ( " int main() { \n "
" return 0 \n "
2014-02-16 10:32:10 +01:00
" } " , nullptr , true , false , false , false ) ;
2013-07-28 10:39:58 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-08-06 20:27:09 +02:00
// #4943 take care of C++11 initializer lists
check ( " std::vector<Foo> Bar() { \n "
" return \n "
" { \n "
" { \" 1 \" }, \n "
" { \" 2 \" }, \n "
" { \" 3 \" } \n "
" }; \n "
2014-02-16 10:32:10 +01:00
" } " , nullptr , true , false , false , false ) ;
2013-08-06 20:27:09 +02:00
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2013-06-15 17:49:10 +02:00
}
2013-09-26 07:07:48 +02:00
void checkComparisonFunctionIsAlwaysTrueOrFalse ( ) {
// positive test
check ( " bool f(int x){ \n "
" return isless(x,x); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (warning) Comparison of two identical variables with isless(x,x) evaluates always to false. \n " , errout . str ( ) ) ;
check ( " bool f(int x){ \n "
" return isgreater(x,x); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (warning) Comparison of two identical variables with isgreater(x,x) evaluates always to false. \n " , errout . str ( ) ) ;
check ( " bool f(int x){ \n "
" return islessgreater(x,x); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (warning) Comparison of two identical variables with islessgreater(x,x) evaluates always to false. \n " , errout . str ( ) ) ;
check ( " bool f(int x){ \n "
" return islessequal(x,x); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (warning) Comparison of two identical variables with islessequal(x,x) evaluates always to true. \n " , errout . str ( ) ) ;
check ( " bool f(int x){ \n "
" return isgreaterequal(x,x); \n "
" } " ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (warning) Comparison of two identical variables with isgreaterequal(x,x) evaluates always to true. \n " , errout . str ( ) ) ;
// no warning should be reported for
check ( " bool f(int x, int y){ \n "
" return isgreaterequal(x,y) && islessequal(x,y) && islessgreater(x,y) && isgreater(x,y) && isless(x,y); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2014-06-05 16:41:10 +02:00
void integerOverflow ( ) { // 5895
// no signed integer overflow should happen
2014-06-07 13:16:02 +02:00
check ( " void f(unsigned long long ull) { \n "
" if (ull == 0x89504e470d0a1a0a || ull == 0x8a4d4e470d0a1a0a) ; \n "
2014-06-05 16:41:10 +02:00
" } \n " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
}
2014-09-27 21:31:04 +02:00
void testReturnIgnoredReturnValue ( ) {
check ( " void foo() { \n "
" strcmp(a, b); \n "
" } " , " test.cpp " , false , false , false , true , & settings_std ) ;
ASSERT_EQUALS ( " [test.cpp:2]: (warning) Return value of function strcmp() is not used. \n " , errout . str ( ) ) ;
check ( " void foo() { \n "
" return strcmp(a, b); \n "
" } " , " test.cpp " , false , false , false , true , & settings_std ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() { \n "
" if(strcmp(a, b)); \n "
" } " , " test.cpp " , false , false , false , true , & settings_std ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
check ( " void foo() { \n "
" bool b = strcmp(a, b); \n "
" } " , " test.cpp " , false , false , false , true , & settings_std ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-09-29 10:14:58 +02:00
// #6194
check ( " void foo() { \n "
" std::ofstream log(logfile.c_str(), std::ios::out); \n "
" } " , " test.cpp " , false , false , false , true , & settings_std ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-09-29 19:54:50 +02:00
// #6197
check ( " void foo() { \n "
2014-09-29 19:57:27 +02:00
" DebugLog::getInstance().log(systemInfo.getSystemInfo()); \n "
2014-09-29 19:54:50 +02:00
" } " , " test.cpp " , false , false , false , true , & settings_std ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-09-27 21:31:04 +02:00
}
2008-12-19 22:15:18 +01:00
} ;
2013-05-09 15:39:33 +02:00
REGISTER_TEST ( TestOther )