Skip to content
Snippets Groups Projects
Commit 3a3c1eb4 authored by Iustin Pop's avatar Iustin Pop
Browse files

More hlint fixes

This makes (for now) the code hlint-clean. This is per se not a huge
gain, but it allows easier tracking of regressions in style later
(one-two new violations are easier to diagnose when not hidden among 20
“known” ones).
parent c15f7183
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,7 @@ size = IntMap.size
-- | Locate a key in the map (must exist).
find :: Key -> Container a -> a
find k c = c IntMap.! k
find k = (IntMap.! k)
-- | Add or update one element to the map.
add :: Key -> a -> Container a -> Container a
......
......@@ -170,13 +170,13 @@ prop_Instance_runStatus_True inst =
let run_st = Instance.running inst
run_tx = Instance.runSt inst
in
run_tx == "running" || run_tx == "ERROR_up" ==> run_st == True
run_tx == "running" || run_tx == "ERROR_up" ==> run_st
prop_Instance_runStatus_False inst =
let run_st = Instance.running inst
run_tx = Instance.runSt inst
in
run_tx /= "running" && run_tx /= "ERROR_up" ==> run_st == False
run_tx /= "running" && run_tx /= "ERROR_up" ==> not run_st
testInstance =
[ run prop_Instance_setIdx
......@@ -200,7 +200,7 @@ prop_Text_Load_Instance name mem dsk vcpus status pnode snode pdx sdx =
else sdx
ndx = [(pnode, pdx), (rsnode, rsdx)]
inst = Text.loadInst ndx
(name:mem_s:dsk_s:vcpus_s:status:pnode:rsnode:[])::
[name, mem_s, dsk_s, vcpus_s, status, pnode, rsnode]::
Maybe (String, Instance.Instance)
_types = ( name::String, mem::Int, dsk::Int
, vcpus::Int, status::String
......@@ -249,10 +249,10 @@ testNode =
-- | Check that the cluster score is close to zero for a homogeneous cluster
prop_Score_Zero node count =
((not $ Node.offline node) && (not $ Node.failN1 node) && (count > 0) &&
(not (Node.offline node) && not (Node.failN1 node) && (count > 0) &&
(Node.tDsk node > 0) && (Node.tMem node > 0)) ==>
let fn = Node.buildPeers node Container.empty
nlst = (zip [1..] $ replicate count fn)::[(Types.Ndx, Node.Node)]
nlst = zip [1..] $ replicate count fn::[(Types.Ndx, Node.Node)]
nl = Container.fromAssocList nlst
score = Cluster.compCV nl
-- we can't say == 0 here as the floating point errors accumulate;
......
......@@ -114,9 +114,7 @@ sendMsg s buf =
sbytes <- withTimeout queryTimeout
"sending luxi message" $
S.send (socket s) obuf
(if sbytes == length obuf
then return ()
else _send (drop sbytes obuf))
unless (sbytes == length obuf) $ _send (drop sbytes obuf)
in _send (buf ++ [eOM])
-- | Waits for a message over a luxi transport.
......
......@@ -58,7 +58,7 @@ wrapTest ir t to = do
main :: IO ()
main = do
errs <- newIORef 0
let wrap lst = map (wrapTest errs) lst
let wrap = map (wrapTest errs)
runTests "PeerMap" options $ wrap testPeerMap
runTests "Container" options $ wrap testContainer
runTests "Instance" options $ wrap testInstance
......@@ -66,7 +66,7 @@ main = do
runTests "Text" options $ wrap testText
runTests "Cluster" options $ wrap testCluster
terr <- readIORef errs
(if (terr > 0)
(if terr > 0
then do
hPutStrLn stderr $ "A total of " ++ show terr ++ " tests failed."
exitWith $ ExitFailure 1
......
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