diff options
author | Sylvain Joubert <joubert.sy@gmail.com> | 2017-11-22 18:54:00 (GMT) |
---|---|---|
committer | Sylvain Joubert <joubert.sy@gmail.com> | 2017-11-22 18:54:00 (GMT) |
commit | 72d3161a7f5d350d848d5b44cf343bac19e22238 (patch) | |
tree | 7778dfd294b2afb88acba8af4037daf0d1efa76b /Templates | |
parent | 51ccfaacb88303bb2774cead91069e1c25888137 (diff) | |
download | CMake-72d3161a7f5d350d848d5b44cf343bac19e22238.zip CMake-72d3161a7f5d350d848d5b44cf343bac19e22238.tar.gz CMake-72d3161a7f5d350d848d5b44cf343bac19e22238.tar.bz2 |
TestDriver: fix style-'variableScope' cppcheck warning
When applied on a user project, cppcheck complains that the 'test_name'
variable could have a reduced scope.
Diffstat (limited to 'Templates')
-rw-r--r-- | Templates/TestDriver.cxx.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Templates/TestDriver.cxx.in b/Templates/TestDriver.cxx.in index bf61be4..ff3c869 100644 --- a/Templates/TestDriver.cxx.in +++ b/Templates/TestDriver.cxx.in @@ -58,7 +58,7 @@ static char* lowercase(const char* string) int main(int ac, char* av[]) { int i, testNum = 0, partial_match; - char *arg, *test_name; + char *arg; int testToRun = -1; @CMAKE_TESTDRIVER_ARGVC_FUNCTION@ @@ -99,7 +99,7 @@ int main(int ac, char* av[]) arg = lowercase(av[1 + partial_match]); } for (i = 0; i < NumTests && testToRun == -1; ++i) { - test_name = lowercase(cmakeGeneratedFunctionMapEntries[i].name); + char *test_name = lowercase(cmakeGeneratedFunctionMapEntries[i].name); if (partial_match != 0 && strstr(test_name, arg) != NULL) { /* NOLINT */ testToRun = i; ac -= 2; |