From: sof Date: Thu, 16 Sep 1999 19:54:37 +0000 (+0000) Subject: [project @ 1999-09-16 19:54:37 by sof] X-Git-Tag: Approximately_9120_patches~5784 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=aef54212d5424e63c3f1d26d65a4c16fd905a87e;p=ghc-hetmet.git [project @ 1999-09-16 19:54:37 by sof] toInt wibble --- diff --git a/ghc/tests/programs/jeff-bug/Arithmetic.hs b/ghc/tests/programs/jeff-bug/Arithmetic.hs index b5bd247..384a482 100644 --- a/ghc/tests/programs/jeff-bug/Arithmetic.hs +++ b/ghc/tests/programs/jeff-bug/Arithmetic.hs @@ -10,6 +10,7 @@ module Arithmetic import Words import Word +import Int -- Begin Signature: Arithmetic ---------------------------------------------- {- diff --git a/ghc/tests/programs/jeff-bug/Makefile b/ghc/tests/programs/jeff-bug/Makefile index 72b7b2e..9f76a7e 100644 --- a/ghc/tests/programs/jeff-bug/Makefile +++ b/ghc/tests/programs/jeff-bug/Makefile @@ -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 diff --git a/ghc/tests/programs/jeff-bug/Signal.hs b/ghc/tests/programs/jeff-bug/Signal.hs index c4b2040..47d885f 100644 --- a/ghc/tests/programs/jeff-bug/Signal.hs +++ b/ghc/tests/programs/jeff-bug/Signal.hs @@ -4,6 +4,7 @@ import LazyST import List import Random import IOExts +import Int -- infixl 9 *! diff --git a/ghc/tests/programs/jeff-bug/Words.hs b/ghc/tests/programs/jeff-bug/Words.hs index 76d83c2..201e45d 100644 --- a/ghc/tests/programs/jeff-bug/Words.hs +++ b/ghc/tests/programs/jeff-bug/Words.hs @@ -1,6 +1,7 @@ module Words where import Word +import Int import Ix -- Begin Signature ---------------------------------------------------------