extracttests: disable TestUnusedVar::localvar2 tests they do not make sense externally

This commit is contained in:
Daniel Marjamäki 2021-05-13 21:31:44 +02:00
parent 2925627eb6
commit 1def0d797b
1 changed files with 2 additions and 3 deletions

View File

@ -2012,7 +2012,7 @@ private:
} }
void localvar2() { void localvar2() {
// extracttests.start: struct undefined { void f(); }; // extracttests.disable: uninitialized variables and stuff
functionVariableUsage("int foo()\n" functionVariableUsage("int foo()\n"
"{\n" "{\n"
@ -2036,7 +2036,6 @@ private:
"}"); "}");
ASSERT_EQUALS("", errout.str()); ASSERT_EQUALS("", errout.str());
// extracttests.disable
functionVariableUsage("undefined foo()\n" functionVariableUsage("undefined foo()\n"
"{\n" "{\n"
" undefined i;\n" " undefined i;\n"
@ -2044,7 +2043,6 @@ private:
"}\n", "}\n",
"test.c"); "test.c");
ASSERT_EQUALS("[test.c:3]: (style) Variable 'i' is not assigned a value.\n", errout.str()); ASSERT_EQUALS("[test.c:3]: (style) Variable 'i' is not assigned a value.\n", errout.str());
// extracttests.enable
functionVariableUsage("undefined *foo()\n" functionVariableUsage("undefined *foo()\n"
"{\n" "{\n"
@ -2149,6 +2147,7 @@ private:
" f(a+1);\n" " f(a+1);\n"
"}"); "}");
ASSERT_EQUALS("", errout.str()); ASSERT_EQUALS("", errout.str());
// extracttests.enable
} }
void localvar3() { void localvar3() {