string_test: coverity woe 00/16700/2
authorSteven <sluong@cisco.com>
Sun, 6 Jan 2019 19:23:24 +0000 (11:23 -0800)
committerDave Barach <openvpp@barachs.net>
Mon, 7 Jan 2019 22:38:39 +0000 (22:38 +0000)
Remove the needless tests and checks which coverity complains about in
string_test.c

Change-Id: I971650cada77136f06528a65625ef99bd3d7e915
Signed-off-by: Steven <sluong@cisco.com>
src/plugins/unittest/string_test.c

index 65b7c62..0d41bb2 100644 (file)
@@ -349,10 +349,6 @@ test_clib_strcmp (vlib_main_t * vm, unformat_input_t * input)
   /* Null pointers comparison */
   s = 0;
   indicator = clib_strcmp (s, s);
-  if (indicator != 0)
-    return -1;
-  /* verify it against strcmp */
-  indicator = strcmp (s, s);
   if (indicator != 0)
     return -1;
 
@@ -518,8 +514,6 @@ test_clib_strncmp (vlib_main_t * vm, unformat_input_t * input)
                         sizeof ("Every moment is a fresh beginning") - 1);
   if (v_indicator != 0)
     return -1;
-  if (v_indicator != indicator)
-    return -1;
 
   /* OK, seems to work */
   return 0;