]> granicus.if.org Git - check/commitdiff
fix warning for unused variables
authorbrarcher <brarcher@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Sun, 4 Nov 2012 03:20:36 +0000 (03:20 +0000)
committerbrarcher <brarcher@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Sun, 4 Nov 2012 03:20:36 +0000 (03:20 +0000)
This fixes a number of cases where a variable is written to but
never read. Nothing functional has changed, simply silencing some
warnings.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@645 64e312b2-a51f-0410-8e61-82d0ca0eb02a

tests/check_check_log_internal.c
tests/check_check_pack.c
tests/check_check_sub.c

index 50b114b75c9b38db49e00ffe83efb0e0489229a3..c2235340da2752bf2f09a5e5b33c684a94f1f6ee 100644 (file)
@@ -38,16 +38,17 @@ END_TEST
 
 Suite *make_log_internal_suite(void)
 {
-
   Suite *s;
-  TCase *tc_core_subunit;
-
+  
   s = suite_create("Log");
-  tc_core_subunit = tcase_create("Core SubUnit");
 
 #if ENABLE_SUBUNIT
+  TCase *tc_core_subunit;
+  tc_core_subunit = tcase_create("Core SubUnit");
   suite_add_tcase(s, tc_core_subunit);
   tcase_add_test(tc_core_subunit, test_init_logging_subunit);
+#else
+  tcase_create("Core SubUnit");
 #endif
   
   return s;
index 919783671f75b5e04261f7c3eb2e50e990af72bc..4dc7a2ae9370e09675cb7431414a7329dde07cf7 100644 (file)
@@ -85,13 +85,12 @@ START_TEST(test_pack_ctx)
   CtxMsg cmsg;
   char *buf;
   enum ck_msg_type type;
-  int npk, nupk;
 
   cmsg.ctx = CK_CTX_SETUP;
-  npk = pack (CK_MSG_CTX, &buf, (CheckMsg *) &cmsg);
+  pack (CK_MSG_CTX, &buf, (CheckMsg *) &cmsg);
 
   cmsg.ctx = CK_CTX_TEARDOWN;
-  nupk = upack (buf, (CheckMsg *) &cmsg, &type);
+  upack (buf, (CheckMsg *) &cmsg, &type);
 
   fail_unless (type == CK_MSG_CTX,
               "Bad type unpacked for CtxMsg");
index e400acd113cc10086de5a437f6b3eba61598e8e9..a3c5dd730f4333922d2b04095238a054498d3c34 100644 (file)
@@ -377,13 +377,12 @@ START_TEST(test_null)
 {  
   Suite *s;
   TCase *tc;
-  SRunner *sr;
   
   s = suite_create(NULL);
   tc = tcase_create(NULL);
   suite_add_tcase (s, NULL);
   tcase_add_test (tc, NULL);
-  sr = srunner_create(NULL);
+  srunner_create(NULL);
   srunner_run_all (NULL, -1);
   srunner_free (NULL);
   fail("Completed properly");