[project @ 1999-01-24 14:18:55 by sof]
[ghc-hetmet.git] / ghc / tests / numeric / should_run / arith011.hs
index 6499e01..b931228 100644 (file)
@@ -1,4 +1,4 @@
---!!! Testing Int and Word
+-- !!! Testing Int and Word
 module Main(main) where
 import Int
 import Word
@@ -125,7 +125,8 @@ testBits zero = do
   table2 ".|.  "            (.|.)         xs ys
   table2 "`xor`"            xor           xs ys
   table1 "complement"       complement    xs
-  table2 "`shift`"          shift         xs [0..3] 
+  table2 "`shiftL`"         shiftL        xs [0..3] 
+  table2 "`shiftR`"         shiftR        xs [0..3] 
   table2 "`rotate`"         rotate        xs ([-3..3])
   table1 "bit"              (\ x -> (bit x) `asTypeOf` zero)   [(0::Int)..3]
   table2 "`setBit`"         setBit        xs [0..3]