packages feed

HSH-2.1.3: testsrc/runtests.hs

{- 
Copyright (C) 2004-2007 John Goerzen <jgoerzen@complete.org>
Please see the COPYRIGHT file
-}

module Main where 

import Test.HUnit
import Tests
import TestUtils
import System.IO
import Text.Printf

-- main = do runTestTT tests
main = do hSetBuffering stdout LineBuffering
          hSetBuffering stderr LineBuffering
          (c, _) <- performTest reportStart reportError reportFailure () tests
          printf "\n TESTS COMPLETE\n"
          printf "Cases: %d, Tried: %d, Errors: %d, Failures: %d\n"
                 (cases c) (tried c) (errors c) (failures c)

reportStart :: ReportStart ()
reportStart st () =
    do printf "[%-4d/%-4d] START   %s\n" (tried . counts $ st)
               (cases . counts $ st)
               (showPath . path $ st)
       hFlush stdout
       return ()

reportError :: ReportProblem ()
reportError = problem "ERROR  "

reportFailure :: ReportProblem ()
reportFailure = problem "FAILURE"

problem :: String -> ReportProblem ()
problem ptype ptext st () =
    do printf "[%-4d/%-4d] %s\n       %s\n" (tried . counts $ st)
           (cases . counts $ st)
           (showPath . path $ st) ptext
       hFlush stdout
       return ()