diff --git a/testing/testing_zcheck_aux.c b/testing/testing_zcheck_aux.c
index 3eb81bfc66f5784a04a96a6ba8a84d1f7c9c8a8a..d6b3158b8bc32d0397863ac2d7bdd8c6aa1b38be 100644
--- a/testing/testing_zcheck_aux.c
+++ b/testing/testing_zcheck_aux.c
@@ -631,7 +631,7 @@ int check_zscale_std( run_arg_list_t *args, cham_uplo_t uplo, int M, int N, CHAM
  */
 int check_zscale( run_arg_list_t *args, cham_uplo_t uplo, CHAMELEON_Complex64_t alpha, CHAM_desc_t *descAinit, CHAM_desc_t *descA )
 {
-    int info_solution;
+    int info_solution            = 0;
     int M                        = descA->m;
     int N                        = descA->n;
     int LDA                      = M;
diff --git a/testing/testing_zcheck_svd.c b/testing/testing_zcheck_svd.c
index 1bd74c6993f202e66e7f876c74698c26846f07d4..6c6772ee2d66caf74fe1f59937da88073fc51b38 100644
--- a/testing/testing_zcheck_svd.c
+++ b/testing/testing_zcheck_svd.c
@@ -227,7 +227,7 @@ int check_zgesvd_std( run_arg_list_t *args, cham_job_t jobu, cham_job_t jobvt, i
 int check_zgesvd( run_arg_list_t *args, cham_job_t jobu, cham_job_t jobvt, CHAM_desc_t *descAinit, CHAM_desc_t *descA,
                   double *Sinit, double *S, CHAMELEON_Complex64_t *U, int LDU, CHAMELEON_Complex64_t *Vt, int LDVt )
 {
-    int info_solution;
+    int info_solution = 0;
     int rank = CHAMELEON_Comm_rank();
     CHAMELEON_Complex64_t *Ainit = NULL;
     CHAMELEON_Complex64_t *A     = NULL;