diff --git a/testing/testing_zlange.c b/testing/testing_zlange.c
index 404c7d3f5fe475b43eacf7cadf9f3fa2dde05413..16906f8422fbfb89dd9f9763e5529f10e6b8fd82 100644
--- a/testing/testing_zlange.c
+++ b/testing/testing_zlange.c
@@ -136,13 +136,13 @@ testing_zlange_std( run_arg_list_t *args, int check )
 
     /* Calculates the norm */
     testing_start( &test_data );
-    norm = CHAMELEON_zlange( norm_type, M, N, A, LDA ); 
+    norm = CHAMELEON_zlange( norm_type, M, N, A, LDA );
     test_data.hres = hres;
     testing_stop( &test_data, flops_zlange( norm_type, M, N ) );
 
     /* Checks the solution */
     if ( check ) {
-        hres = check_znorm_std( ChamGeneral, norm_type, ChamUpperLower, ChamNonUnit, norm, M, N, A, LDA );
+        hres = check_znorm_std( args, ChamGeneral, norm_type, ChamUpperLower, ChamNonUnit, norm, M, N, A, LDA );
     }
 
     free( A );
diff --git a/testing/testing_zlanhe.c b/testing/testing_zlanhe.c
index a761f5a0c7e19be5486a9973eee6bd8ef99af4c8..bc714cb6aae835053ebcc956fe0b23c827216df7 100644
--- a/testing/testing_zlanhe.c
+++ b/testing/testing_zlanhe.c
@@ -138,13 +138,13 @@ testing_zlanhe_std( run_arg_list_t *args, int check )
 
     /* Calculates the norm */
     testing_start( &test_data );
-    norm = CHAMELEON_zlanhe( norm_type, uplo, N, A, LDA ); 
+    norm = CHAMELEON_zlanhe( norm_type, uplo, N, A, LDA );
     test_data.hres = hres;
     testing_stop( &test_data, flops_zlanhe( norm_type, N ) );
 
     /* Checks the solution */
     if ( check ) {
-        hres = check_znorm_std( ChamHermitian, norm_type, uplo, ChamNonUnit, norm, N, N, A, LDA );
+        hres = check_znorm_std( args, ChamHermitian, norm_type, uplo, ChamNonUnit, norm, N, N, A, LDA );
     }
 
     free( A );
diff --git a/testing/testing_zlansy.c b/testing/testing_zlansy.c
index aaef481f2b93404ae2f5b726ec5ded3214ac1c26..572cbdb55ba7f73d5c30fff583925df979561064 100644
--- a/testing/testing_zlansy.c
+++ b/testing/testing_zlansy.c
@@ -144,7 +144,7 @@ testing_zlansy_std( run_arg_list_t *args, int check )
 
     /* Checks the solution */
     if ( check ) {
-        hres = check_znorm_std( ChamSymmetric, norm_type, uplo, ChamNonUnit, norm, N, N, A, LDA );
+        hres = check_znorm_std( args, ChamSymmetric, norm_type, uplo, ChamNonUnit, norm, N, N, A, LDA );
     }
 
     free( A );
diff --git a/testing/testing_zlantr.c b/testing/testing_zlantr.c
index ce6ce9e7f80b930bf5c085b9c695046bbe10e5b6..fcbb174b39f84da2ba143b9185ad5001cb9c47ac 100644
--- a/testing/testing_zlantr.c
+++ b/testing/testing_zlantr.c
@@ -165,7 +165,7 @@ testing_zlantr_std( run_arg_list_t *args, int check )
 
     /* Checks the solution */
     if ( check ) {
-        hres = check_znorm_std( ChamTriangular, norm_type, uplo, diag, norm, M, N, A, LDA );
+        hres = check_znorm_std( args, ChamTriangular, norm_type, uplo, diag, norm, M, N, A, LDA );
     }
 
     free( A );