summaryrefslogtreecommitdiff
path: root/TESTING/EIG/cerrec.f
diff options
context:
space:
mode:
authorNick Papior <nickpapior@gmail.com>2016-09-18 15:21:11 +0200
committerNick Papior <nickpapior@gmail.com>2016-09-18 15:21:11 +0200
commit87c31223b1a90302bf75ee3f6f58c84233bf5cec (patch)
tree4f19973955b3f6c0b7c2ef01cf8dc3cb52126e5b /TESTING/EIG/cerrec.f
parent7bd944279193dd7d85294286973b40c2ee80ba5b (diff)
downloadlapack-87c31223b1a90302bf75ee3f6f58c84233bf5cec.tar.gz
lapack-87c31223b1a90302bf75ee3f6f58c84233bf5cec.tar.bz2
lapack-87c31223b1a90302bf75ee3f6f58c84233bf5cec.zip
bug: fixes always failing tests for *TREXC which was erroneous tests
There where checks for *TREXC for the argument of N = 0 with a return value of -7. However, the documentation of the *TREXC routines specify that N = 0 is a valid argument with instant return. Hence the checks have been removed and the quick returns established in the affected routines. Also comments for [dz]errec.f files are fixed. Signed-off-by: Nick Papior <nickpapior@gmail.com>
Diffstat (limited to 'TESTING/EIG/cerrec.f')
-rw-r--r--TESTING/EIG/cerrec.f5
1 files changed, 1 insertions, 4 deletions
diff --git a/TESTING/EIG/cerrec.f b/TESTING/EIG/cerrec.f
index 90ada2f7..fa476e00 100644
--- a/TESTING/EIG/cerrec.f
+++ b/TESTING/EIG/cerrec.f
@@ -152,9 +152,6 @@
INFOT = 1
CALL CTREXC( 'X', 1, A, 1, B, 1, IFST, ILST, INFO )
CALL CHKXER( 'CTREXC', INFOT, NOUT, LERR, OK )
- INFOT = 7
- CALL CTREXC( 'N', 0, A, 1, B, 1, IFST, ILST, INFO )
- CALL CHKXER( 'CTREXC', INFOT, NOUT, LERR, OK )
INFOT = 4
ILST = 2
CALL CTREXC( 'N', 2, A, 1, B, 1, IFST, ILST, INFO )
@@ -180,7 +177,7 @@
ILST = 2
CALL CTREXC( 'V', 1, A, 1, B, 1, IFST, ILST, INFO )
CALL CHKXER( 'CTREXC', INFOT, NOUT, LERR, OK )
- NT = NT + 8
+ NT = NT + 7
*
* Test CTRSNA
*