1 SUBROUTINE DLASUM( TYPE, IOUNIT, IE, NRUN )
2 *
3 * -- LAPACK auxiliary test routine (version 3.1) --
4 * Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd..
5 * November 2006
6 *
7 * .. Scalar Arguments ..
8 CHARACTER*3 TYPE
9 INTEGER IE, IOUNIT, NRUN
10 * ..
11 *
12 * Purpose
13 * =======
14 *
15 * DLASUM prints a summary of the results from one of the test routines.
16 *
17 * =====================================================================
18 *
19 * .. Executable Statements ..
20 *
21 IF( IE.GT.0 ) THEN
22 WRITE( IOUNIT, FMT = 9999 )TYPE, ': ', IE, ' out of ', NRUN,
23 $ ' tests failed to pass the threshold'
24 ELSE
25 WRITE( IOUNIT, FMT = 9998 )'All tests for ', TYPE,
26 $ ' passed the threshold (', NRUN, ' tests run)'
27 END IF
28 9999 FORMAT( 1X, A3, A2, I4, A8, I5, A35 )
29 9998 FORMAT( / 1X, A14, A3, A23, I5, A11 )
30 RETURN
31 *
32 * End of DLASUM
33 *
34 END
2 *
3 * -- LAPACK auxiliary test routine (version 3.1) --
4 * Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd..
5 * November 2006
6 *
7 * .. Scalar Arguments ..
8 CHARACTER*3 TYPE
9 INTEGER IE, IOUNIT, NRUN
10 * ..
11 *
12 * Purpose
13 * =======
14 *
15 * DLASUM prints a summary of the results from one of the test routines.
16 *
17 * =====================================================================
18 *
19 * .. Executable Statements ..
20 *
21 IF( IE.GT.0 ) THEN
22 WRITE( IOUNIT, FMT = 9999 )TYPE, ': ', IE, ' out of ', NRUN,
23 $ ' tests failed to pass the threshold'
24 ELSE
25 WRITE( IOUNIT, FMT = 9998 )'All tests for ', TYPE,
26 $ ' passed the threshold (', NRUN, ' tests run)'
27 END IF
28 9999 FORMAT( 1X, A3, A2, I4, A8, I5, A35 )
29 9998 FORMAT( / 1X, A14, A3, A23, I5, A11 )
30 RETURN
31 *
32 * End of DLASUM
33 *
34 END