41 SUBROUTINE slasum( TYPE, IOUNIT, IE, NRUN )
50 INTEGER ie, iounit, nrun
57 WRITE( iounit, fmt = 9999 )type,
': ', ie,
' out of ', nrun,
58 $
' tests failed to pass the threshold'
60 WRITE( iounit, fmt = 9998 )
'All tests for ', type,
61 $
' passed the threshold ( ', nrun,
' tests run)'
63 9999 format( 1x, a3, a2, i4, a8, i5, a35 )
64 9998 format( / 1x, a14, a3, a24, i5, a11 )