Revert "add debugging for odd OOM or hang on 5 architectures, all where configure runs sha224sum"

This reverts commit 238a935f9c.

The OOM was cabal's way of telling us it couldn't resolve dependencies.
This commit is contained in:
Joey Hess 2014-04-22 20:23:37 -04:00
parent c0b6022b25
commit dc0a8b7618

View file

@ -7,7 +7,6 @@ import Control.Applicative
import System.Environment (getArgs)
import Control.Monad.IfElse
import Control.Monad
import System.IO
import Build.TestConfig
import Build.Version
@ -63,11 +62,7 @@ shaTestCases l = map make l
key = "sha" ++ show n
search [] = return Nothing
search (c:cmds) = do
putStr $ "(" ++ c
hFlush stdout
sha <- externalSHA c n "/dev/null"
putStr $ ":" ++ show sha ++ ")"
hFlush stdout
if sha == Right knowngood
then return $ Just c
else search cmds