Remove duplicate test

This partially reverts commit 047418dda1
This commit is contained in:
Dmitry-Me 2019-12-11 19:17:59 +03:00
parent b0b8b2608a
commit 064795a705
1 changed files with 0 additions and 8 deletions

View File

@ -6997,14 +6997,6 @@ private:
"}");
ASSERT_EQUALS("[test.cpp:3]: (warning) Storing getchar() return value in char variable and then comparing with EOF.\n", errout.str());
check("void f() {\n"
" unsigned char c;\n"
" while( EOF != ( c = getchar() ) )\n"
" {\n"
" }\n"
"}");
ASSERT_EQUALS("[test.cpp:3]: (warning) Storing getchar() return value in char variable and then comparing with EOF.\n", errout.str());
check("void f() {\n"
" int i; i = getchar();\n"
" while( i != EOF)\n"