CurryInfo: currycheck-4.0.0 / CurryCheck.checkModules

definition:
checkModules :: Options -> [String] -> IO ()
checkModules opts mods = do
  currypath  <- ccLoadPath
  putStrLnIfDebug opts $ "SET CURRYPATH=" ++ currypath
  setEnv "CURRYPATH" currypath
  testModules <- mapM (analyseModule opts) mods
  pid  <- getPID
  let staticerrs       = concatMap staticErrors (concat testModules)
      finaltestmodules = filter testThisModule (concat testModules)
      testmodname = if null (optMainProg opts)
                      then "TEST" ++ show pid
                      else optMainProg opts
  if not (null staticerrs)
   then do showStaticErrors staticerrs
           putStrLn $ withColor opts red "Testing aborted!"
           cleanup opts testmodname finaltestmodules
           printTestStatistics opts mods testmodname 1 []
           exitWith 1
   else
     if null finaltestmodules
       then do
         printTestStatistics opts mods testmodname 0 []
         exitWith 0
       else do
         putStrIfNormal opts $ withColor opts blue $
           "Generating main test module '"++testmodname++"'..."
         putStrIfDetails opts "\n"
         finaltests <- genMainTestModule opts testmodname finaltestmodules
         showGeneratedModule opts "main test" testmodname
         putStrIfNormal opts $ withColor opts blue $ "and compiling it...\n"
         let runcmd = unwords $
                        [ installDir </> "bin" </> "curry"
                        , "--noreadline" ] ++
                        (if null currypath then [] else ["--nocypm"]) ++
                        [ ":set -time"
                        , ":set " ++ if optVerb opts > 3 then "v1" else "v0"
                        , ":set parser -Wnone" ] ++
                        (if null currypath
                           then []
                           else [":set path \"" ++ currypath ++ "\""]) ++
                        [ ":l "++testmodname, ":eval main :q" ]
         putStrLnIfDebug opts $ "Executing command:\n" ++ runcmd
         ret <- system runcmd
         cleanup opts testmodname finaltestmodules
         printTestStatistics opts mods testmodname ret finaltests
         exitWith ret
 where
  showStaticErrors errs = putStrLn $ withColor opts red $
    unlines (line : "STATIC ERRORS IN PROGRAMS:" : errs) ++ line

  line = take 78 (repeat '=')
demand:
no demanded arguments
deterministic:
deterministic operation
indeterministic:
might be indeterministic
infix:
no fixity defined
name:
checkModules
precedence:
no precedence defined
result-values:
_
signature:
CC.Options.Options -> [String] -> Prelude.IO ()
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term