Skip to content
Snippets Groups Projects
Commit a7fece19 authored by John Ericson's avatar John Ericson
Browse files

Don't print the number of deps in count-deps tests

It is redundant information and a source of needless version control
conflicts when multiple MRs are changing the deps list.

Just printing the list and not also its length is fine.
parent 04209f2a
No related branches found
No related tags found
No related merge requests found
Found 287 Language.Haskell.Syntax module dependencies
Found Language.Haskell.Syntax module dependencies
GHC.Builtin.Names
GHC.Builtin.PrimOps
GHC.Builtin.PrimOps.Ids
......
Found 294 GHC.Parser module dependencies
Found GHC.Parser module dependencies
GHC.Builtin.Names
GHC.Builtin.PrimOps
GHC.Builtin.PrimOps.Ids
......
......@@ -40,8 +40,7 @@ printDeps libdir modName dot = do
if not dot then
do
let modules = Map.keys modGraph
num = length modules
putStrLn $ "Found " ++ show num ++ " " ++ modName ++ " module dependencies"
putStrLn $ "Found " ++ modName ++ " module dependencies"
forM_ modules putStrLn
else
-- * Copy the digraph output to a file ('deps.dot' say)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment