From c45b82be564aa9737ecdec9f2e3ab80e5ba046d8 Mon Sep 17 00:00:00 2001 From: Neil Brown Date: Mon, 4 Feb 2008 08:05:16 +0000 Subject: [PATCH] Removed the setting of csVerboseLevel in TestHarness that was accidentally committed --- common/TestHarness.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/TestHarness.hs b/common/TestHarness.hs index 4f3c433..6684215 100644 --- a/common/TestHarness.hs +++ b/common/TestHarness.hs @@ -57,7 +57,7 @@ automaticTimeTest scale fileName = readFile fileName >>* performTimeTest scale f -- Bit of a hard-hack, until usage-checking is on by default: defaultState :: CompState -defaultState = emptyState {csUsageChecking = True , csVerboseLevel = 2 } +defaultState = emptyState {csUsageChecking = True} -- | Tests if compiling the given source gives any errors. -- If there are errors, they are returned. Upon success, Nothing is returned