Browse Source

Disable tests with incx,incy=0 (undefined behavior)

tags/v0.3.30
Martin Kroeker GitHub 7 months ago
parent
commit
3a4a9b21eb
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      utest/test_extensions/test_crot.c

+ 4
- 4
utest/test_extensions/test_crot.c View File

@@ -166,7 +166,7 @@ static float c_api_check_csrot(blasint n, blasint inc_x, blasint inc_y, float *c
norm += cblas_scnrm2(n, data_crot.y_test, inc_y_abs);
return (norm / 2);
}
#if 0
/**
* Fortran API specific test
* Test crot by comparing it with caxpby.
@@ -192,7 +192,7 @@ CTEST(crot, inc_x_0_inc_y_0)
float norm = check_csrot(n, inc_x, inc_y, c, s);
ASSERT_DBL_NEAR_TOL(0.0f, norm, SINGLE_EPS);
}
#endif
/**
* Fortran API specific test
* Test crot by comparing it with caxpby.
@@ -478,7 +478,7 @@ CTEST(crot, check_n_zero)
float norm = check_csrot(n, inc_x, inc_y, c, s);
ASSERT_DBL_NEAR_TOL(0.0f, norm, SINGLE_EPS);
}
#if 0
/**
* C API specific test
* Test crot by comparing it with caxpby.
@@ -504,7 +504,7 @@ CTEST(crot, c_api_inc_x_0_inc_y_0)
float norm = c_api_check_csrot(n, inc_x, inc_y, c, s);
ASSERT_DBL_NEAR_TOL(0.0f, norm, SINGLE_EPS);
}
#endif
/**
* C API specific test
* Test crot by comparing it with caxpby.


Loading…
Cancel
Save