@@ -166,7 +166,7 @@ static float c_api_check_csrot(blasint n, blasint inc_x, blasint inc_y, float *c
166
166
norm += cblas_scnrm2 (n , data_crot .y_test , inc_y_abs );
167
167
return (norm / 2 );
168
168
}
169
-
169
+ #if 0
170
170
/**
171
171
* Fortran API specific test
172
172
* Test crot by comparing it with caxpby.
@@ -192,7 +192,7 @@ CTEST(crot, inc_x_0_inc_y_0)
192
192
float norm = check_csrot (n , inc_x , inc_y , c , s );
193
193
ASSERT_DBL_NEAR_TOL (0.0f , norm , SINGLE_EPS );
194
194
}
195
-
195
+ #endif
196
196
/**
197
197
* Fortran API specific test
198
198
* Test crot by comparing it with caxpby.
@@ -478,7 +478,7 @@ CTEST(crot, check_n_zero)
478
478
float norm = check_csrot (n , inc_x , inc_y , c , s );
479
479
ASSERT_DBL_NEAR_TOL (0.0f , norm , SINGLE_EPS );
480
480
}
481
-
481
+ #if 0
482
482
/**
483
483
* C API specific test
484
484
* Test crot by comparing it with caxpby.
@@ -504,7 +504,7 @@ CTEST(crot, c_api_inc_x_0_inc_y_0)
504
504
float norm = c_api_check_csrot (n , inc_x , inc_y , c , s );
505
505
ASSERT_DBL_NEAR_TOL (0.0f , norm , SINGLE_EPS );
506
506
}
507
-
507
+ #endif
508
508
/**
509
509
* C API specific test
510
510
* Test crot by comparing it with caxpby.
0 commit comments