[project @ 1999-09-16 19:54:37 by sof]
authorsof <unknown>
Thu, 16 Sep 1999 19:54:37 +0000 (19:54 +0000)
committersof <unknown>
Thu, 16 Sep 1999 19:54:37 +0000 (19:54 +0000)
toInt wibble

ghc/tests/programs/jeff-bug/Arithmetic.hs
ghc/tests/programs/jeff-bug/Makefile
ghc/tests/programs/jeff-bug/Signal.hs
ghc/tests/programs/jeff-bug/Words.hs

index b5bd247..384a482 100644 (file)
@@ -10,6 +10,7 @@ module Arithmetic
 
 import Words
 import Word
+import Int
 
 -- Begin Signature: Arithmetic ----------------------------------------------
 {- 
index 72b7b2e..9f76a7e 100644 (file)
@@ -2,7 +2,8 @@ TOP = ..
 include $(TOP)/mk/boilerplate.mk
 
 SRC_HC_OPTS += -fglasgow-exts -cpp -optP-imacros -optPhawk-macros.h
-SRC_RUNTEST_OPTS += -d tex mygames.pgn
+# Lack sensible input file to test it with.
+SRC_RUNTEST_OPTS += -count /dev/null
 
 all :: runtest
 
index c4b2040..47d885f 100644 (file)
@@ -4,6 +4,7 @@ import LazyST
 import List
 import Random
 import IOExts
+import Int
 
 -- infixl 9 *!
 
index 76d83c2..201e45d 100644 (file)
@@ -1,6 +1,7 @@
 module Words where
 
 import Word
+import Int
 import Ix
 
 -- Begin Signature ---------------------------------------------------------