[project @ 2001-06-29 13:53:55 by simonmar]
authorsimonmar <unknown>
Fri, 29 Jun 2001 13:53:55 +0000 (13:53 +0000)
committersimonmar <unknown>
Fri, 29 Jun 2001 13:53:55 +0000 (13:53 +0000)
Uncomment part of this test that works properly now.

ghc/tests/lib/IO/readFile001.hs

index 82a0dc2..6ce87ed 100644 (file)
@@ -13,11 +13,8 @@ main = do
   s <- readFile filename
 
   -- This open should fail, because the readFile hasn't been forced
-  -- and the file is therefore still locked.  But GHC currently has a
-  -- bug in that the openFile truncates the file before checking
-  -- whether it was locked or not.
-  --    r <- try (openFile filename WriteMode)
-  --    print r
+  -- and the file is therefore still locked.
+  try (openFile filename WriteMode) >>= print
 
   putStrLn s