Ticket #4928: copyarray-clonearray-test.dpatch

File copyarray-clonearray-test.dpatch, 124.5 KB (added by pumpkin, 2 years ago)
Line 
12 patches for repository http://darcs.haskell.org/testsuite:
2
3Tue Feb  1 08:46:24 EST 2011  Johan Tibell <johan.tibell@gmail.com>
4  * Add test for array copy/clone primops
5
6Wed Feb  2 15:01:26 EST 2011  Daniel Peebles <pumpkingod@gmail.com>
7  * Update cloneArray# test for new type signature without state token
8
9
10New patches:
11
12[Add test for array copy/clone primops
13Johan Tibell <johan.tibell@gmail.com>**20110201134624
14 Ignore-this: db40d9d97dcd096fedd53f4240423283
15] {
16hunk ./tests/ghc-regress/codeGen/should_run/all.T 74
17 test('cgrun061', normal, compile_and_run, [''])
18 test('cgrun062', normal, compile_and_run, [''])
19 test('cgrun063', normal, compile_and_run, [''])
20+test('cgrun064', normal, compile_and_run, [''])
21 
22 test('1861', extra_run_opts('0'), compile_and_run, [''])
23 
24addfile ./tests/ghc-regress/codeGen/should_run/cgrun064.hs
25hunk ./tests/ghc-regress/codeGen/should_run/cgrun064.hs 1
26+{-# LANGUAGE MagicHash, UnboxedTuples #-}
27+
28+-- !!! simple tests of copying/cloning primitive arrays
29+--
30+
31+module Main ( main ) where
32+
33+import GHC.Exts
34+import GHC.Prim
35+import GHC.ST
36+
37+main = putStr
38+       (test_copyArray
39+        ++ "\n" ++ test_copyMutableArray
40+        ++ "\n" ++ test_cloneArray
41+        ++ "\n" ++ test_cloneMutableArray
42+        ++ "\n" ++ test_freezeArray
43+        ++ "\n" ++ test_thawArray
44+        ++ "\n"
45+       )
46+
47+------------------------------------------------------------------------
48+-- Constants
49+
50+-- All allocated arrays are of this size
51+len :: Int
52+len = 130
53+
54+-- We copy these many elements
55+copied :: Int
56+copied = len - 2
57+
58+------------------------------------------------------------------------
59+-- copyArray#
60+
61+-- Copy a slice of the source array into a destination array and check
62+-- that the copy succeeded.
63+test_copyArray :: String
64+test_copyArray =
65+    let dst = runST $ do           
66+            src <- newArray len 0
67+            fill src 0 len
68+            src <- unsafeFreezeArray src
69+            dst <- newArray len (-1)
70+            -- Leave the first and last element untouched
71+            copyArray src 1 dst 1 copied
72+            unsafeFreezeArray dst
73+    in shows (toList dst len) "\n"
74+
75+------------------------------------------------------------------------
76+-- copyMutableArray#
77+
78+-- Copy a slice of the source array into a destination array and check
79+-- that the copy succeeded.
80+test_copyMutableArray :: String
81+test_copyMutableArray =
82+    let dst = runST $ do           
83+            src <- newArray len 0
84+            fill src 0 len
85+            dst <- newArray len (-1)
86+            -- Leave the first and last element untouched
87+            copyMutableArray src 1 dst 1 copied
88+            unsafeFreezeArray dst
89+    in shows (toList dst len) "\n"
90+
91+------------------------------------------------------------------------
92+-- cloneArray#
93+
94+-- Clone a slice of the source array into a destination array and
95+-- check that the clone succeeded.
96+test_cloneArray :: String
97+test_cloneArray =
98+    let dst = runST $ do           
99+            src <- newArray len 0
100+            fill src 0 len
101+            src <- unsafeFreezeArray src
102+            -- Don't include the first and last element.
103+            cloneArray src 1 copied
104+    in shows (toList dst copied) "\n"
105+
106+------------------------------------------------------------------------
107+-- cloneMutableArray#
108+
109+-- Clone a slice of the source array into a destination array and
110+-- check that the clone succeeded.
111+test_cloneMutableArray :: String
112+test_cloneMutableArray =
113+    let dst = runST $ do           
114+            src <- newArray len 0
115+            fill src 0 len
116+            -- Don't include the first and last element.
117+            dst <- cloneMutableArray src 1 copied
118+            unsafeFreezeArray dst
119+    in shows (toList dst copied) "\n"
120+
121+------------------------------------------------------------------------
122+-- freezeArray#
123+
124+-- Clone a slice of the source array into a destination array and
125+-- check that the clone succeeded.
126+test_freezeArray :: String
127+test_freezeArray =
128+    let dst = runST $ do           
129+            src <- newArray len 0
130+            fill src 0 len
131+            -- Don't include the first and last element.
132+            freezeArray src 1 copied
133+    in shows (toList dst copied) "\n"
134+
135+------------------------------------------------------------------------
136+-- thawArray#
137+
138+-- Clone a slice of the source array into a destination array and
139+-- check that the clone succeeded.
140+test_thawArray :: String
141+test_thawArray =
142+    let dst = runST $ do           
143+            src <- newArray len 0
144+            fill src 0 len
145+            src <- unsafeFreezeArray src
146+            -- Don't include the first and last element.
147+            dst <- thawArray src 1 copied
148+            unsafeFreezeArray dst
149+    in shows (toList dst copied) "\n"
150+
151+------------------------------------------------------------------------
152+-- Test helpers
153+
154+-- Initialize the elements of this array, starting at the given
155+-- offset.  The last parameter specifies the number of elements to
156+-- initialize.  Element at index @i@ takes the value @i*i@ (i.e. the
157+-- first actually modified element will take value @off*off@).
158+fill :: MArray s Int -> Int -> Int -> ST s ()
159+fill marr off count = go 0
160+  where
161+    go i
162+        | i >= count = return ()
163+        | otherwise = writeArray marr (off + i) (i*i) >> go (i + 1)
164+
165+------------------------------------------------------------------------
166+-- Convenience wrappers for Array# and MutableArray#
167+
168+data Array a = Array { unArray :: Array# a }
169+data MArray s a = MArray { unMArray :: MutableArray# s a }
170+
171+newArray :: Int -> a -> ST s (MArray s a)
172+newArray (I# n#) a = ST $ \s# -> case newArray# n# a s# of
173+    (# s2#, marr# #) -> (# s2#, MArray marr# #)
174+
175+indexArray :: Array a -> Int -> a
176+indexArray arr (I# i#) = case indexArray# (unArray arr) i# of
177+    (# a #) -> a
178+
179+writeArray :: MArray s a -> Int -> a -> ST s ()
180+writeArray marr (I# i#) a = ST $ \ s# ->
181+    case writeArray# (unMArray marr) i# a s# of
182+        s2# -> (# s2#, () #)
183+
184+unsafeFreezeArray :: MArray s a -> ST s (Array a)
185+unsafeFreezeArray marr = ST $ \ s# ->
186+    case unsafeFreezeArray# (unMArray marr) s# of
187+        (# s2#, arr# #) -> (# s2#, Array arr# #)
188+
189+copyArray :: Array a -> Int -> MArray s a -> Int -> Int -> ST s ()
190+copyArray src (I# six#) dst (I# dix#) (I# n#) = ST $ \ s# ->
191+    case copyArray# (unArray src) six# (unMArray dst) dix# n# s# of
192+        s2# -> (# s2#, () #)
193+
194+copyMutableArray :: MArray s a -> Int -> MArray s a -> Int -> Int -> ST s ()
195+copyMutableArray src (I# six#) dst (I# dix#) (I# n#) = ST $ \ s# ->
196+    case copyMutableArray# (unMArray src) six# (unMArray dst) dix# n# s# of
197+        s2# -> (# s2#, () #)
198+
199+cloneArray :: Array a -> Int -> Int -> ST s (Array a)
200+cloneArray src (I# six#) (I# n#) = ST $ \ s# ->
201+    case cloneArray# (unArray src) six# n# s# of
202+        (# s2#, arr# #) -> (# s2#, Array arr# #)
203+
204+cloneMutableArray :: MArray s a -> Int -> Int -> ST s (MArray s a)
205+cloneMutableArray src (I# six#) (I# n#) = ST $ \ s# ->
206+    case cloneMutableArray# (unMArray src) six# n# s# of
207+        (# s2#, marr# #) -> (# s2#, MArray marr# #)
208+
209+freezeArray :: MArray s a -> Int -> Int -> ST s (Array a)
210+freezeArray src (I# six#) (I# n#) = ST $ \ s# ->
211+    case freezeArray# (unMArray src) six# n# s# of
212+        (# s2#, arr# #) -> (# s2#, Array arr# #)
213+
214+thawArray :: Array a -> Int -> Int -> ST s (MArray s a)
215+thawArray src (I# six#) (I# n#) = ST $ \ s# ->
216+    case thawArray# (unArray src) six# n# s# of
217+        (# s2#, marr# #) -> (# s2#, MArray marr# #)
218+
219+toList :: Array a -> Int -> [a]
220+toList arr n = go 0
221+  where
222+    go i | i >= n = []
223+         | otherwise = indexArray arr i : go (i+1)
224addfile ./tests/ghc-regress/codeGen/should_run/cgrun064.stdout
225hunk ./tests/ghc-regress/codeGen/should_run/cgrun064.stdout 1
226+[-1,1,4,9,16,25,36,49,64,81,100,121,144,169,196,225,256,289,324,361,400,441,484,529,576,625,676,729,784,841,900,961,1024,1089,1156,1225,1296,1369,1444,1521,1600,1681,1764,1849,1936,2025,2116,2209,2304,2401,2500,2601,2704,2809,2916,3025,3136,3249,3364,3481,3600,3721,3844,3969,4096,4225,4356,4489,4624,4761,4900,5041,5184,5329,5476,5625,5776,5929,6084,6241,6400,6561,6724,6889,7056,7225,7396,7569,7744,7921,8100,8281,8464,8649,8836,9025,9216,9409,9604,9801,10000,10201,10404,10609,10816,11025,11236,11449,11664,11881,12100,12321,12544,12769,12996,13225,13456,13689,13924,14161,14400,14641,14884,15129,15376,15625,15876,16129,16384,-1]
227+
228+[-1,1,4,9,16,25,36,49,64,81,100,121,144,169,196,225,256,289,324,361,400,441,484,529,576,625,676,729,784,841,900,961,1024,1089,1156,1225,1296,1369,1444,1521,1600,1681,1764,1849,1936,2025,2116,2209,2304,2401,2500,2601,2704,2809,2916,3025,3136,3249,3364,3481,3600,3721,3844,3969,4096,4225,4356,4489,4624,4761,4900,5041,5184,5329,5476,5625,5776,5929,6084,6241,6400,6561,6724,6889,7056,7225,7396,7569,7744,7921,8100,8281,8464,8649,8836,9025,9216,9409,9604,9801,10000,10201,10404,10609,10816,11025,11236,11449,11664,11881,12100,12321,12544,12769,12996,13225,13456,13689,13924,14161,14400,14641,14884,15129,15376,15625,15876,16129,16384,-1]
229+
230+[1,4,9,16,25,36,49,64,81,100,121,144,169,196,225,256,289,324,361,400,441,484,529,576,625,676,729,784,841,900,961,1024,1089,1156,1225,1296,1369,1444,1521,1600,1681,1764,1849,1936,2025,2116,2209,2304,2401,2500,2601,2704,2809,2916,3025,3136,3249,3364,3481,3600,3721,3844,3969,4096,4225,4356,4489,4624,4761,4900,5041,5184,5329,5476,5625,5776,5929,6084,6241,6400,6561,6724,6889,7056,7225,7396,7569,7744,7921,8100,8281,8464,8649,8836,9025,9216,9409,9604,9801,10000,10201,10404,10609,10816,11025,11236,11449,11664,11881,12100,12321,12544,12769,12996,13225,13456,13689,13924,14161,14400,14641,14884,15129,15376,15625,15876,16129,16384]
231+
232+[1,4,9,16,25,36,49,64,81,100,121,144,169,196,225,256,289,324,361,400,441,484,529,576,625,676,729,784,841,900,961,1024,1089,1156,1225,1296,1369,1444,1521,1600,1681,1764,1849,1936,2025,2116,2209,2304,2401,2500,2601,2704,2809,2916,3025,3136,3249,3364,3481,3600,3721,3844,3969,4096,4225,4356,4489,4624,4761,4900,5041,5184,5329,5476,5625,5776,5929,6084,6241,6400,6561,6724,6889,7056,7225,7396,7569,7744,7921,8100,8281,8464,8649,8836,9025,9216,9409,9604,9801,10000,10201,10404,10609,10816,11025,11236,11449,11664,11881,12100,12321,12544,12769,12996,13225,13456,13689,13924,14161,14400,14641,14884,15129,15376,15625,15876,16129,16384]
233+
234+[1,4,9,16,25,36,49,64,81,100,121,144,169,196,225,256,289,324,361,400,441,484,529,576,625,676,729,784,841,900,961,1024,1089,1156,1225,1296,1369,1444,1521,1600,1681,1764,1849,1936,2025,2116,2209,2304,2401,2500,2601,2704,2809,2916,3025,3136,3249,3364,3481,3600,3721,3844,3969,4096,4225,4356,4489,4624,4761,4900,5041,5184,5329,5476,5625,5776,5929,6084,6241,6400,6561,6724,6889,7056,7225,7396,7569,7744,7921,8100,8281,8464,8649,8836,9025,9216,9409,9604,9801,10000,10201,10404,10609,10816,11025,11236,11449,11664,11881,12100,12321,12544,12769,12996,13225,13456,13689,13924,14161,14400,14641,14884,15129,15376,15625,15876,16129,16384]
235+
236+[1,4,9,16,25,36,49,64,81,100,121,144,169,196,225,256,289,324,361,400,441,484,529,576,625,676,729,784,841,900,961,1024,1089,1156,1225,1296,1369,1444,1521,1600,1681,1764,1849,1936,2025,2116,2209,2304,2401,2500,2601,2704,2809,2916,3025,3136,3249,3364,3481,3600,3721,3844,3969,4096,4225,4356,4489,4624,4761,4900,5041,5184,5329,5476,5625,5776,5929,6084,6241,6400,6561,6724,6889,7056,7225,7396,7569,7744,7921,8100,8281,8464,8649,8836,9025,9216,9409,9604,9801,10000,10201,10404,10609,10816,11025,11236,11449,11664,11881,12100,12321,12544,12769,12996,13225,13456,13689,13924,14161,14400,14641,14884,15129,15376,15625,15876,16129,16384]
237+
238}
239[Update cloneArray# test for new type signature without state token
240Daniel Peebles <pumpkingod@gmail.com>**20110202200126
241 Ignore-this: bb515c8675eee40e31946e9dfdaabfe9
242] {
243hunk ./tests/ghc-regress/codeGen/should_run/cgrun064.hs 78
244             fill src 0 len
245             src <- unsafeFreezeArray src
246             -- Don't include the first and last element.
247-            cloneArray src 1 copied
248+            return $ cloneArray src 1 copied
249     in shows (toList dst copied) "\n"
250 
251 ------------------------------------------------------------------------
252hunk ./tests/ghc-regress/codeGen/should_run/cgrun064.hs 174
253     case copyMutableArray# (unMArray src) six# (unMArray dst) dix# n# s# of
254         s2# -> (# s2#, () #)
255 
256-cloneArray :: Array a -> Int -> Int -> ST s (Array a)
257-cloneArray src (I# six#) (I# n#) = ST $ \ s# ->
258-    case cloneArray# (unArray src) six# n# s# of
259-        (# s2#, arr# #) -> (# s2#, Array arr# #)
260+cloneArray :: Array a -> Int -> Int -> Array a
261+cloneArray src (I# six#) (I# n#) = Array (cloneArray# (unArray src) six# n#)
262 
263 cloneMutableArray :: MArray s a -> Int -> Int -> ST s (MArray s a)
264 cloneMutableArray src (I# six#) (I# n#) = ST $ \ s# ->
265}
266
267Context:
268
269[Test Trac #4930
270simonpj@microsoft.com**20110201150913
271 Ignore-this: 25d3a6ad6c0715575bfc615f3d4b7dd9
272]
273[Test Trac #4908
274simonpj@microsoft.com**20110201122002
275 Ignore-this: ef07176031591e1c6423f94b18c9d2a3
276]
277[Fix bogus error message
278simonpj@microsoft.com**20110201121847
279 Ignore-this: 5fcac86be111b9c525fab0aa3bfe235d
280]
281[Follow changes to optimised code after fixing Trac #4908
282simonpj@microsoft.com**20110131113614
283 Ignore-this: caa80f59bf413a01aacde1a469ba0a9b
284]
285[Better simlifier output following SpecConstr fix
286simonpj@microsoft.com**20110128171844
287 Ignore-this: 51ea767b884feb50addcc30e21d93e6e
288]
289[adjust values for 32-bit
290Simon Marlow <marlowsd@gmail.com>**20110131150916
291 Ignore-this: 7af6d0bff4048bd76d410dcf47443f3
292]
293[Test Trac #4918
294simonpj@microsoft.com**20110126173138
295 Ignore-this: aa39b2a0a704dd6b7ec63189ee661ac0
296]
297[Test Trac #4903
298simonpj@microsoft.com**20110126170948
299 Ignore-this: 37de9727040f72685a2fac32f6ed179e
300]
301[Test Trac #4912
302simonpj@microsoft.com**20110126170850
303 Ignore-this: c88e06e3a8937e5350ea26bd746f092
304]
305[Redundant case is now eliminated
306simonpj@microsoft.com**20110125110654
307 Ignore-this: bc1957256bcca2434208f630769d6b16
308]
309[Test Trac #4917
310simonpj@microsoft.com**20110125102021
311 Ignore-this: 9d10796ffb1d7e0d174478700779484e
312]
313[DPH: update command line options of DPH tests
314Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20110124045030
315 Ignore-this: 5d67314f20f1ccf447f4c7295b34af8f
316]
317[Add 7.0 output for mdofail00* tests
318Ian Lynagh <igloo@earth.li>**20110121192858
319 Ignore-this: 24718179ab1da80476e4bff1b70948b2
320]
321[Add some 7.0 stderr's
322Ian Lynagh <igloo@earth.li>**20110121202204
323 Ignore-this: 7df382777ea7efd1ec7c2b43f2ff9fce
324]
325[Accept GHC 7.0 break024 output
326Ian Lynagh <igloo@earth.li>**20110121215528
327 Ignore-this: 83ffd5cadcddfb1aac4c6558ea0923f3
328]
329[T4488 fails in the 7.0 branch
330Ian Lynagh <igloo@earth.li>**20110121150724
331 Ignore-this: ed55cced1d9d8954bd74d6763929ce0d
332]
333[add test for #4895
334Simon Marlow <marlowsd@gmail.com>**20110121143747
335 Ignore-this: 4a3b61ced1fda405fa391ffe9fb4f0c9
336]
337[Track recent changes in error messages
338simonpj@microsoft.com**20110113115846
339 Ignore-this: c88274a4a1d0e343ef40a2b87a7f1eb
340]
341[Track changes to the finder's error messages
342simonpj@microsoft.com**20110113111453
343 Ignore-this: cd815b8f81e260a2234611761243966f
344]
345[Test Trac #2544
346simonpj@microsoft.com**20110112231544
347 Ignore-this: 67548a1e4cd594a581d9104a4624bea5
348]
349[Add a missing change
350simonpj@microsoft.com**20110112162208
351 Ignore-this: fa32533028d35b7c363e5054038ff781
352]
353[Massive bunch of changes to track my massive refactoring to the typechecker
354simonpj@microsoft.com**20110112150030
355 Ignore-this: a57c8b0e667563a4217709701ac6395
356]
357[Test Trac #2722
358simonpj@microsoft.com**20110112143651
359 Ignore-this: 343fe7f491024d90b75a94d4a4cdc44f
360]
361[Test Trac #4801
362simonpj@microsoft.com**20110112143610
363 Ignore-this: 72b047d63b1b2240c4d6c2e2bcd59d87
364]
365[Follow wibbles in conflicting-instance error messages
366simonpj@microsoft.com**20110110110717
367 Ignore-this: ff953840ff29a03c023ae8f157898caa
368]
369[Follow improvement in kind-error message
370simonpj@microsoft.com**20110110110647
371 Ignore-this: d0e4eafb94f8db63c286444e0079e514
372]
373[Follow change in out-of-scope variable suggestions
374simonpj@microsoft.com**20110110110611
375 Ignore-this: d13fb68320fc08757a39507288ba3a8a
376 
377 Now we don't suggest alternatives for single-character variables
378]
379[Test Trac #4870
380simonpj@microsoft.com**20110105002512
381 Ignore-this: 800ced0c67c94d81bc67dd278c8c061f
382]
383[Test Trac #4875
384simonpj@microsoft.com**20110105001510
385 Ignore-this: d89315c1b6a6534d126a38e2da85155b
386]
387[Update test mod90 with the new error message.
388Michal Terepeta <michal.terepeta@gmail.com>**20101127211634
389 Ignore-this: dc14c6764c2411d705ef98bc3f03ce0
390]
391[add test for #4876
392Simon Marlow <marlowsd@gmail.com>**20110107101003
393 Ignore-this: c2c409b7745e839ef44982878d1f12ff
394]
395[multiline command tests #4316
396Vivian McPhail <haskell.vivian.mcphail@gmail.com>**20101021022608]
397[add a test for multiline do, GHCi #4316
398Vivian McPhail <haskell.vivian.mcphail@gmail.com>**20101008092318
399 
400 This patch ensures the GHCi interpreter recognises multiline do
401 commands.
402]
403[bump stack size for ioref001
404Simon Marlow <marlowsd@gmail.com>**20110105115534
405 Ignore-this: 12883090f3f8d64d49af6bf17d161b7
406]
407[fix apirecomp001 following GHC API changes
408Simon Marlow <marlowsd@gmail.com>**20110105114859
409 Ignore-this: befe888a735954838c7d9d7be15e9b09
410]
411[update results following fix in #4383
412Simon Marlow <marlowsd@gmail.com>**20110105111143
413 Ignore-this: 37e73054ad3202e81bee49c4f7d97162
414]
415[T4321: on x86, optc and profc are giving slightly different results
416Simon Marlow <marlowsd@gmail.com>**20110105111005
417 Ignore-this: a54884208cc8f7c747665fb99cb7481
418]
419[update values for T3738 on 32-bit
420Simon Marlow <marlowsd@gmail.com>**20110105110046
421 Ignore-this: 26684b1cfb7f2b69fcc573edaedc9b5e
422]
423[Comments only
424simonpj@microsoft.com**20101224110204
425 Ignore-this: 4ad001f694d983759c82a34e0154e001
426]
427[Track error message changes
428simonpj@microsoft.com**20101224082224
429 Ignore-this: d55392e741f2c66b91d4064dedc6238a
430]
431[Add FlexibleInstances
432simonpj@microsoft.com**20101222175523
433 Ignore-this: 18ee3b07069488f4a73442c3e4e064e3
434]
435[Track changes in fuzzy-matching in error messages
436simonpj@microsoft.com**20101222175510
437 Ignore-this: e5a8b4f3663aa378957570ac8b8ee323
438]
439[mdofail004 now compiles
440simonpj@microsoft.com**20101222132307
441 Ignore-this: f87cc1540e1e3907f36d4482ce910fbc
442]
443[add an old ForeignPtr stress test I found in my tree
444Simon Marlow <marlowsd@gmail.com>**20101222093600
445 Ignore-this: cbfcb1ee5af1f3b8182d8de4d5229ef1
446]
447[add test for #3837
448Simon Marlow <marlowsd@gmail.com>**20101222091439
449 Ignore-this: 4ee89700a0f89ba8c8f7b820eaa9012d
450]
451[Update bytes allocated for T3738
452Simon Marlow <marlowsd@gmail.com>**20101222083809
453 Ignore-this: 8d4a3b2388841469214f4391ebaacd39
454 RTS was changed to calculate allocations more accurately
455]
456[Update bytes allocated for space_leak_001
457Simon Marlow <marlowsd@gmail.com>**20101222083739
458 Ignore-this: 625d728cb4694d985aaa44368eba88e
459 RTS was changed to calculate allocations more accurately
460]
461[Add test for #4850
462Simon Marlow <marlowsd@gmail.com>**20101221122731
463 Ignore-this: 48a51d945f1286f4564ebe5ad6376b50
464 I couldn't reproduce the bug reliably, but I made a test that
465 demonstrated the problem by creating more OS threads than it
466 should have.
467]
468[Cabal tests no longer need to be run 'alone'
469Ian Lynagh <igloo@earth.li>**20101218155222
470 Ignore-this: 4b90bbe30efc7221be2897578b8e99aa
471]
472[Add GADTSyntax tests
473Ian Lynagh <igloo@earth.li>**20101218154243]
474[Add the stderr for T3208b
475Ian Lynagh <igloo@earth.li>**20101216150258
476 Ignore-this: 31f74f90a6fcbda78279f3f2d319a38a
477]
478[Remove some redundant CPP checks
479Ian Lynagh <igloo@earth.li>**20101216134058]
480[add test for stack overflow/underflow with unboxed tuples
481Simon Marlow <marlowsd@gmail.com>**20101216131224
482 Ignore-this: 3ae1ca9285d9d95da5f544661f59f97f
483]
484[add a test for -rtsopts=some (#3910)
485Simon Marlow <marlowsd@gmail.com>**20101216114432
486 Ignore-this: 13d8172e6e74bc49f720fd0adfc23260
487]
488[4813: remove -debug, it might not be available with certain ways (e.g. prof)
489Simon Marlow <marlowsd@gmail.com>**20101215113846
490 Ignore-this: 3b8a59e87cc1b8b32146b0e3719c7c2c
491]
492[Test Trac #2664
493simonpj@microsoft.com**20101215173400
494 Ignore-this: 1f0506d014e1d5d71df7b1842b6a0f99
495]
496[T3208b rightly rejects the program
497simonpj@microsoft.com**20101215172701
498 Ignore-this: 7963d8fb7d2d352934f04f26b23111df
499]
500[Test Trac #3460
501simonpj@microsoft.com**20101215171537
502 Ignore-this: ee9d81d55f194c2f917bbbfa2bcde1da
503]
504[Test Trac #3484
505simonpj@microsoft.com**20101215171307
506 Ignore-this: 5c7cda40787e35fcb5a5a376ae80ce1c
507]
508[Widen the boundaries for T3064
509Simon Marlow <marlowsd@gmail.com>**20101215143239
510 Ignore-this: c6f4255f6c706a77aca6e8344c872e5d
511 The limits were very tight; my validate build went just over the
512 allocs limit, while the nightly builds were falling under the lower
513 bounds for peak memory use and residency.
514]
515[Simplify test case a bit, and add comments
516simonpj@microsoft.com**20101215124036
517 Ignore-this: c2310f93959aaf6b9acf55adc796d3ba
518]
519[Test Trac #4816
520simonpj@microsoft.com**20101215123944
521 Ignore-this: 8f8c607c3f61459a06bf0427e362ff9d
522]
523[Wibbles to error message wording
524simonpj@microsoft.com**20101215123507
525 Ignore-this: 6ad2fa65997f0b9b7b95d63c37a73ca7
526]
527[Test Trac #4528, twice
528simonpj@microsoft.com**20101215123453
529 Ignore-this: ad3677c8229b55f673284c15f327a104
530]
531[Add FlexibleInstances to tests that need it
532simonpj@microsoft.com**20101214180607
533 Ignore-this: b004119e3a65ee4c7af707874955ec1d
534]
535[HsExpr must be an instance of Typeable1
536simonpj@microsoft.com**20101213171854
537 Ignore-this: c9fd7bb1c0a1e782a3854ecfee52b890
538]
539[Comments only
540simonpj@microsoft.com**20101213171832
541 Ignore-this: ed8b97f89496fa151370a032f5028baa
542]
543[Error message wibbles
544simonpj@microsoft.com**20101213171818
545 Ignore-this: cc2dd5eb0213d44e33385dade661fe4
546]
547[Test Trac 4809
548simonpj@microsoft.com**20101213171706
549 Ignore-this: 7eacfa78afcce197b235db80adf8b78c
550]
551[Another, simple, superclass loop test
552simonpj@microsoft.com**20101207172733
553 Ignore-this: f7f577e3ca45a3351464dc35afa8e2e3
554]
555[T4478 fails in the 7.0 branch
556Ian Lynagh <igloo@earth.li>**20101213003532]
557[4262 fails in the 7.0 branch
558Ian Lynagh <igloo@earth.li>**20101210130855]
559[Test Trac #4534
560simonpj@microsoft.com**20101210123643
561 Ignore-this: 9d6f09e44ddea2bcbace247575debc0a
562]
563[Add Test for Trac #4830
564simonpj@microsoft.com**20101210123009
565 Ignore-this: 8ff60b3cf9405a60640ca51bd368927a
566]
567[add a 'threaded1_ls' way, like threaded1 but with +RTS -ls
568Simon Marlow <marlowsd@gmail.com>**20101210094529
569 Ignore-this: 3c2eedd108fa55b80e83918a19e9ec9e
570]
571[Accept core ppr wibble
572Ben Lippmeier <benl@ouroborus.net>**20101210060610
573 Ignore-this: 4fe4b9f646ec7e34610fc7972acd3b7a
574]
575[update results following fix in #4383
576Simon Marlow <marlowsd@gmail.com>**20101209133921
577 Ignore-this: 8a89c32205f5cf44405fd6b86c6a1491
578]
579[add test for #4383
580Simon Marlow <marlowsd@gmail.com>**20101209131059
581 Ignore-this: bcaf9fe3f55c38d3dbbee848a8dca51e
582]
583[Add a test for #4007
584Ian Lynagh <igloo@earth.li>**20101205194504]
585[-XPArr is now -XParallelArrays
586Ben Lippmeier <benl@ouroborus.net>**20101206003146
587 Ignore-this: c89a0686abf48211c8e9842860081134
588]
589[Update hist001: The GHCi debugger gives us better locations again
590Ian Lynagh <igloo@earth.li>**20101205172123
591 Ignore-this: 857508354da9f90b8f9f4a158c59db55
592]
593[Add a test for Read/Show of Data.Fixed
594Ian Lynagh <igloo@earth.li>**20101116213911]
595[Add a test for #4478
596Ian Lynagh <igloo@earth.li>**20101205150656]
597[Add a test for deprecated [$foo| ... |]  quaosquote syntax
598Ian Lynagh <igloo@earth.li>**20101204202844]
599[Add some more files to be cleaned
600Ian Lynagh <igloo@earth.li>**20101204202255]
601[add test for #4811
602Simon Marlow <marlowsd@gmail.com>**20101203101717
603 Ignore-this: dfe3858c026326a69bad60d5344d671d
604]
605[cope if the compiler doesn't tell us the "Global Package DB"
606Simon Marlow <marlowsd@gmail.com>**20101203100524
607 Ignore-this: b2fe16599d8ab430e768dbaf6f215b6e
608]
609[add test for #4813
610Simon Marlow <marlowsd@gmail.com>**20101202162639
611 Ignore-this: 6aecc1eb2848e9bd38cc241abc2e0b0c
612]
613[add a test for #4469
614Simon Marlow <marlowsd@gmail.com>**20101202120429
615 Ignore-this: 3a4ce85de33253809eb09b2e0a2a4caf
616]
617[add test for #4808
618Simon Marlow <marlowsd@gmail.com>**20101201144135
619 Ignore-this: d63f51f43a17ff9fd8e313baba74806c
620]
621[Add a smaller test for recursive superclasses (T3731 simplified)
622simonpj@microsoft.com**20101202135655
623 Ignore-this: 4a3157d339d829df2b75ce0098f59f19
624]
625[Test Trac #4814
626simonpj@microsoft.com**20101202124219
627 Ignore-this: d03acc36dffc8b27076ba4eeffc6e6d5
628]
629[-XPArr is now -XParallelArrays
630Ben Lippmeier <benl@ouroborus.net>**20101202062002
631 Ignore-this: 8ecbfb85fc8d898c02c32c90180b51d1
632]
633[Remove NewQualifiedOperators tests (extension no longer supported)
634Ian Lynagh <igloo@earth.li>**20101201192653]
635[Test Trac #4524
636simonpj@microsoft.com**20101126114353
637 Ignore-this: 8c978224974f081d457d98f42a05fd05
638]
639[add test for #4373
640Simon Marlow <marlowsd@gmail.com>**20101126090234
641 Ignore-this: 5a74a5ef1cb347fc7f8c363520d45e3f
642]
643[skip #4262, it doesn't give reliable results
644Simon Marlow <marlowsd@gmail.com>**20101126085846
645 Ignore-this: 9adf4930eaf3d90289c9174cd2add605
646]
647[add test for #4262
648Simon Marlow <marlowsd@gmail.com>**20101125161945
649 Ignore-this: 9dff19af548f1cf485eb913e29c228d7
650]
651[Add a test for reliable encoding errors
652Simon Marlow <marlowsd@gmail.com>**20101125121717
653 Ignore-this: f6a5a7e02786995ff16d560d151c7615
654]
655[update expected values
656Simon Marlow <marlowsd@gmail.com>**20101125111820
657 Ignore-this: 129120cd70f3f322f7e92d8725c9024c
658]
659[add some Unicdoe to the hSeek/hTell test
660Simon Marlow <marlowsd@gmail.com>**20101125111812
661 Ignore-this: ba16eb9e2768dcf5e5576da4c753b96d
662]
663[And and update RelaxedLayout tests
664Ian Lynagh <igloo@earth.li>**20101125012733
665 Ignore-this: fee2adf5572f686c206423351e7fedcf
666]
667[NondecreasingIndentation tests
668Ian Lynagh <igloo@earth.li>**20101125012715
669 Ignore-this: 38a9ca2af04040d94a042f84f4e34608
670]
671[Allow a lower peak_megabytes_allocated value
672Ian Lynagh <igloo@earth.li>**20101124223908]
673[Accept output
674simonpj@microsoft.com**20101122173526
675 Ignore-this: b661dd0e645d6cbb2cb5e70d6a26da88
676]
677[update expected values
678Simon Marlow <marlowsd@gmail.com>**20101122100855
679 Ignore-this: e3aa7612df8e6b302cae1a17d5bcf75e
680]
681[Accept output for hist001 (#3165)
682Ian Lynagh <igloo@earth.li>**20101121195535
683 Ignore-this: 775218d3f65fd64186d3aefc567ba5b2
684]
685[Add RelaxedLayout to T4437
686Ian Lynagh <igloo@earth.li>**20101120224005
687 Ignore-this: 3bae3b3d039afe2fd62ee6a4fc639cde
688]
689[de-tab readFail027, and remove trailing whitespace
690Ian Lynagh <igloo@earth.li>**20101120210226]
691[Remove old stdout/stderr files for old GHCs
692Ian Lynagh <igloo@earth.li>**20101120160723]
693[Remove special results for old GHC versions
694Ian Lynagh <igloo@earth.li>**20101120154900]
695[Fix 7.0-branch testsuite behaviour
696Ian Lynagh <igloo@earth.li>**20101120151351]
697[Follow error message change (Trac #4499)
698simonpj@microsoft.com**20101118085349
699 Ignore-this: f757e7c967ffc66578cd32be7704d42a
700]
701[Test Trac #4497
702simonpj@microsoft.com**20101117225538
703 Ignore-this: dd7fb950ca646598321497c13307e596
704]
705[Test Trac #4498
706simonpj@microsoft.com**20101117101314
707 Ignore-this: 2474ab772627df0ff478c1e3828ed0d7
708]
709[Reworded error message, and slightly fewer -fwarn-lazy-unlifted-bindings warnings
710simonpj@microsoft.com**20101116172727
711 Ignore-this: 2771fca7fd4a1f8bba35267e1850e7d
712]
713[Improved warning
714simonpj@microsoft.com**20101116172645
715 Ignore-this: faf9f95b2317d973472e7705c1b569d4
716]
717[-fwarn-identities doesn't test for fromInteger and fromRational
718simonpj@microsoft.com**20101116172625
719 Ignore-this: 44dcd0267701ba56b4e51b1cd3ba11b3
720]
721[Test Trac #4488
722simonpj@microsoft.com**20101116125019
723 Ignore-this: efad62fa084f48a60ef89599dc723eaa
724]
725[Test Trac #4489
726simonpj@microsoft.com**20101115232231
727 Ignore-this: fb212af67f76cef3debb11a845190811
728]
729[Add tests for deriving Typable on data families
730simonpj@microsoft.com**20101115230859
731 Ignore-this: adf8ecebd59610f8bc29f69fc3e276c8
732]
733[Test Trac #4174
734simonpj@microsoft.com**20101115145634
735 Ignore-this: 7bd5a6f7524ce29595a23ea54d152647
736]
737[Test Snoyman's emailed data family deriving program
738simonpj@microsoft.com**20101115145605
739 Ignore-this: 2497b69995d72aa252e830ef7763f76f
740]
741[Add test for Trac #4485
742simonpj@microsoft.com**20101115143315
743 Ignore-this: 9a2d376996b49a2f9701d9a96e8f2561
744 
745 This just checks that instance overlap is reported properly.
746]
747[Test Trac #4494
748simonpj@microsoft.com**20101115121240
749 Ignore-this: 9ccdfda4bf0d0148a8f2f445f7b7a4d
750]
751[Use a local database for cabal01
752Ian Lynagh <igloo@earth.li>**20101114170803]
753[Add a framework test for the package cache file being modified
754Ian Lynagh <igloo@earth.li>**20101114165530
755 Tests shouldn't touch the compiler's package database
756]
757[Add 32-bit memory usage numbers for T3738
758Ian Lynagh <igloo@earth.li>**20101114160958]
759[Add 32-bit memory usage figures for MethSharing
760Ian Lynagh <igloo@earth.li>**20101114160804]
761[Update 32-bit memory usage for T3064, following GHC space improvement
762Ian Lynagh <igloo@earth.li>**20101114160346]
763[Lower the bounds for T3064
764Ian Lynagh <igloo@earth.li>**20101112222304
765 Ignore-this: f5fd8dd3e0c064c104236a1a3a8be7c3
766 GHC is now more efficient; hurrah!
767]
768[More LANGUAGE BangPatterns
769simonpj@microsoft.com**20101112180827
770 Ignore-this: b9f442be341a5f1f50d8abce44bedbbd
771]
772[Follow error message changes with new typechecker
773simonpj@microsoft.com**20101112130443
774 Ignore-this: 4f5d3de2832bed1b2ed972c63c94d17a
775]
776[Test "frozen" type errors
777simonpj@microsoft.com**20101112130424
778 Ignore-this: 4690017d0e528fbd62050114aabe6335
779]
780[Test Trac #4484
781simonpj@microsoft.com**20101112120535
782 Ignore-this: dc8a7378b421211d41ba430c65437a65
783]
784[Add test for Trac #4492
785simonpj@microsoft.com**20101112120309
786 Ignore-this: 2c3ac16b2c1e2420a929fca1821f454a
787]
788[Add a test for #4464: -rtsopts and dynamic libraries
789Ian Lynagh <igloo@earth.li>**20101110151322
790 Ignore-this: bb77af3d1cf1cab6937ca6696cf8a86b
791]
792[Add 'unless_os' testlib helper
793Ian Lynagh <igloo@earth.li>**20101110142610]
794[Add a test for returning memory to the OS
795Ian Lynagh <igloo@earth.li>**20101101163247
796 Ignore-this: 9c516a195056483088ab29b391cffdd9
797]
798[Add test for Trac #3440
799simonpj@microsoft.com**20101101170458
800 Ignore-this: 28624abee7339acc478e83b4854b7502
801]
802[Comments only
803simonpj@microsoft.com**20101101165149
804 Ignore-this: f7b7651a22454a6abff4df9a86182a3c
805]
806[Follow change in typechecker error messages
807simonpj@microsoft.com**20101101165107
808 Ignore-this: 5cc5fabf209728303598e076e36063a
809]
810[Add a test for #2846
811Ian Lynagh <igloo@earth.li>**20101029185404]
812[Add a test for trac #4444
813Ian Lynagh <igloo@earth.li>**20101029181318]
814[Add method-sharing test
815simonpj@microsoft.com**20101027191522
816 Ignore-this: c260314c993f787f1a823daa41f94933
817]
818[accept output (some re-ordering in error messages)
819Simon Marlow <marlowsd@gmail.com>**20101027121056
820 Ignore-this: ac09fe04a5cc3b4e17f33ffa32009ace
821]
822[accept output (more warnings)
823Simon Marlow <marlowsd@gmail.com>**20101027091423
824 Ignore-this: 7d442e32b62922052ab96f6bd58cd81a
825]
826[add test for #1666
827Simon Marlow <marlowsd@gmail.com>**20101027091414
828 Ignore-this: a3c971090727208a55b4621b9eefbf93
829]
830[Add a test for #4437 (check all the GHC extensions are registered with Cabal)
831Ian Lynagh <igloo@earth.li>**20101026230752
832 Ignore-this: 41b41a5f269acee99d93623d9d818d67
833]
834[Add tests for Trac #4436, #4439
835simonpj@microsoft.com**20101026103300
836 Ignore-this: c886acc2244d5d154071d3919abe131b
837]
838[Test Trac #3638
839simonpj@microsoft.com**20101022084806
840 Ignore-this: 183669f4185f809bd1c60e857a965529
841]
842[Give break007 its own copy of Test3.hs
843Ian Lynagh <igloo@earth.li>**20101024153735
844 It compiles it, so it can cause problems with other tests if it shares
845 the same source, as they get confused by object files appearing and
846 disappearing.
847]
848[T3064 allocates less in the stable branch
849Ian Lynagh <igloo@earth.li>**20101024151908
850 Ignore-this: 90189b7b4f2849b9d2a39bc04412439e
851]
852[Add a performance test for #3064
853Ian Lynagh <igloo@earth.li>**20101024150427]
854[Follow GHC.Bool/GHC.Types merge
855Ian Lynagh <igloo@earth.li>**20101023165725
856 Ignore-this: d0ed37abeea7d391f05fd072d2218199
857]
858[Add a performance test for #3738
859Ian Lynagh <igloo@earth.li>**20101023162651]
860[Add a performance test for #3736
861Ian Lynagh <igloo@earth.li>**20101023144419]
862[Follow test output changes
863simonpj@microsoft.com**20101022160304
864 Ignore-this: ee2f56fc1df2c1f476c0fd8c9fe23c52
865]
866[Use the RebindableSyntax flag, not NoImplicitPrelude
867simonpj@microsoft.com**20101022143053
868 Ignore-this: d759af21e6272d0db6d6cb42b8f69807
869]
870[trac #836 tests
871amsay@amsay.net**20101021220635
872 Ignore-this: 8c5a4e9755686bc0782f769b3df17168
873]
874[Add test for Trac #4356
875simonpj@microsoft.com**20101021113459
876 Ignore-this: 1e970c507d2b0f5754bf388f15e3238
877]
878[Follow warning message change
879simonpj@microsoft.com**20101021101621
880 Ignore-this: a8d199d90732d8f1c5cff2d6d0bd5d4a
881]
882[Test Trac #4398
883simonpj@microsoft.com**20101021101609
884 Ignore-this: 13a1ab9863a876bb7a44d38c89d0179c
885]
886[Add tests for view patterns in template haskell (Trac #2399)
887Reiner Pope <reiner.pope@gmail.com>**20101010120943
888 Ignore-this: 98cfc2c4426437ef3ef49605290c84e1
889]
890[add test for #4334 (space leak in Data.List.lines)
891Simon Marlow <marlowsd@gmail.com>**20101020103953
892 Ignore-this: 66ae22d83b3410da0d50f936df915547
893]
894[Add test for Trac #4418
895simonpj@microsoft.com**20101020075409
896 Ignore-this: 7e1ae205043924f74014b4568d3d9490
897]
898[Update output
899simonpj@microsoft.com**20101019143434
900 Ignore-this: 8971be2d7828fc51d4cb2c395d15225d
901]
902[T3651 isn't in this directory!  It's in gadt/
903simonpj@microsoft.com**20101019143422
904 Ignore-this: 7c4add47b14e5572accd2953522ee7da
905]
906[GHC 7.0 now rejects superclass equalities (rather than behaving inconsistently)
907simonpj@microsoft.com**20101019143358
908 Ignore-this: 615139d9ef7c733a480b00f6293bba42
909]
910[Accept output
911simonpj@microsoft.com**20101019103608
912 Ignore-this: bd06fba9d0461ff76e96e55ee739c1fc
913]
914[Accept output
915simonpj@microsoft.com**20101019103554
916 Ignore-this: 64b83ccec658af1827fd0a8ac55e5dfa
917]
918[add HasKey test
919simonpj@microsoft.com**20101019103531
920 Ignore-this: 6346c15fa3e98b02ea190d6c65f78403
921]
922[Accept changes
923simonpj@microsoft.com**20101019103254
924 Ignore-this: da56c2ca51da3baa06d2f32442283616
925]
926[Test Trac #3023 and 4358
927simonpj@microsoft.com**20101019100432
928 Ignore-this: 2b92573291298425670bd6d7dcf0dda4
929]
930[Debugger improvements
931simonpj@microsoft.com**20101019100210
932 Ignore-this: 1ecc03168581b9a8fff1c723c4611e2
933]
934[Trac 3651 works
935simonpj@microsoft.com**20101019100109
936 Ignore-this: c80d00c7ebe6303e1f466b409d5a3cd9
937]
938[Roll back bogus changes to debugger output
939simonpj@microsoft.com**20101015134037
940 Ignore-this: 7e963b3ccb8e6ab7c0d786c37e68f57f
941]
942[Test Trac #3023
943simonpj@microsoft.com**20101011072351
944 Ignore-this: 5bc8fbbe197daf33cec63b383a3acb9e
945]
946[scc001 is broken (#4414)
947Ian Lynagh <igloo@earth.li>**20101018153859]
948[Add a test for SCCs being correctly generated
949Ian Lynagh <igloo@earth.li>**20101018151902]
950[Fix dph-smvm, follows move to Data.Vector
951benl@ouroborus.net**20101018003627
952 Ignore-this: a8962dfaf5ba9a16d7e1294eba67a839
953]
954[FIX #4409
955Daniel Fischer <daniel.is.fischer@web.de>**20101016150253
956 Ignore-this: f08e44ea3ad0f3a455f83a469448d1cb
957 Now needs the NPlusKPatterns extension.
958]
959[Replace the test for #3731
960Ian Lynagh <igloo@earth.li>**20101016204637
961 Ignore-this: 1dac091fc3f175bf88ac5e9f1e45802e
962 The old test was broken. The new one is from teh ticket, merged into one
963 file and cut down.
964]
965[Add a test for #3651
966Ian Lynagh <igloo@earth.li>**20101016192255]
967[Add a test for #4404
968Ian Lynagh <igloo@earth.li>**20101015224955
969 Ignore-this: 41ee0d622b9c17abff7338278d5b16ab
970]
971[Add a test for #4401
972Ian Lynagh <igloo@earth.li>**20101015224839
973 Ignore-this: 15090c297ab26e830f3490cad7ce2cec
974]
975[Add a test for -fno-ghci-sandbox
976Ian Lynagh <igloo@earth.li>**20101015201030
977 Ignore-this: c5c72ada14c28335619d1e6be91a8998
978]
979[Test Trac #1634
980Reiner Pope <reiner.pope@gmail.com>**20101013053856
981 Ignore-this: 17d248c6f029589df5adbd1b7b826d0f
982]
983[accept output (InlPrag no longer has sat-args for NOINLINE)
984Simon Marlow <marlowsd@gmail.com>**20101015102535
985 Ignore-this: 87144f8e907afb0fece5d03cd6b045f0
986]
987[Nilsson needs ScopedTypeVariables
988Simon Marlow <marlowsd@gmail.com>**20101014091036
989 Ignore-this: 2a59a44f916035df73c76faff63e126f
990]
991[gadt2 needs ExplicitForall
992Simon Marlow <marlowsd@gmail.com>**20101014090933
993 Ignore-this: 11f3c24bc05ddee911939fae9c539a0
994]
995[need MagicHash
996Simon Marlow <marlowsd@gmail.com>**20101014084813
997 Ignore-this: d7345edcad4157e4b15babc161230064
998]
999[omit conc068(threaded2), it is non-deterministic
1000Simon Marlow <marlowsd@gmail.com>**20101014084623
1001 Ignore-this: 9db7271b6ed7f2190bcfdd389df3f466
1002]
1003[add test for #4381
1004Simon Marlow <marlowsd@gmail.com>**20101013114331
1005 Ignore-this: 93ac113377c06f68f5b7f799cf5cc7d
1006]
1007[fix expected output
1008Simon Marlow <marlowsd@gmail.com>**20101013111944
1009 Ignore-this: d56404b84e0d53338f99a076d4dd137b
1010]
1011[Add tests for interruptible FFI annotation
1012Edward Z. Yang <ezyang@mit.edu>**20100902233336
1013 Ignore-this: e9d0dc9793b6cabc69225a4110083be1
1014]
1015[Add -ignore-dot-ghci to a ghci test
1016Ian Lynagh <igloo@earth.li>**20101013175348
1017 Ignore-this: afbca743bea7d340c77133ecaa407a4e
1018]
1019[Fix cc004
1020Ian Lynagh <igloo@earth.li>**20101012171636]
1021[Tweak tests
1022Ian Lynagh <igloo@earth.li>**20101008133339
1023 Ignore-this: 25557d42194aeb4bb01f2e10f5cfab19
1024]
1025[Remove more -fglasgow-exts uses from tests
1026Ian Lynagh <igloo@earth.li>**20101008124121
1027 Ignore-this: f1085e92c6b93b6bf3ef231be0842ce7
1028]
1029[Add a MAkefile
1030Ian Lynagh <igloo@earth.li>**20101008122517
1031 Ignore-this: 31f535190fc250c0c77fc0355bc03e20
1032]
1033[Remove more -fglasgow-exts uses from tests
1034Ian Lynagh <igloo@earth.li>**20101008010222
1035 Ignore-this: 1f3bd4846b2d58e7e5cb0bda34bd10ef
1036]
1037[Update tests now -fglasgow-exts is deprecated
1038Ian Lynagh <igloo@earth.li>**20101006234836
1039 Ignore-this: 6958cc4c382b3fc2099b69a0b745f8bb
1040]
1041[Test Trac #4358
1042simonpj@microsoft.com**20101008152517
1043 Ignore-this: 412cb11fa77a583b479fc22c1d1b2d35
1044]
1045[Add mtl dependency for T4355
1046simonpj@microsoft.com**20101008152043
1047 Ignore-this: a6577dd36666f7f6fa4406937095df86
1048]
1049[Test Trac #4355
1050simonpj@microsoft.com**20101008151829
1051 Ignore-this: 38d6100147aa21fe39b32ab5caea4f8a
1052]
1053[Accept output
1054simonpj@microsoft.com**20101008151009
1055 Ignore-this: d61a889a07a957bbcbf5167b70e3e5b1
1056]
1057[Add tests for Trac #4345 and #4361
1058simonpj@microsoft.com**20101008133946
1059 Ignore-this: 5a1fc9e69a5a6255f73cf7e7058ea74e
1060]
1061[Accept output
1062simonpj@microsoft.com**20101008115058
1063 Ignore-this: b058c980e44b23d7f14e7ab2bf6a4f1d
1064]
1065[Accept error message changes
1066simonpj@microsoft.com**20101008081901
1067 Ignore-this: 308c45e60aee0e705b2939983eaa9dea
1068]
1069[Accept changes
1070simonpj@microsoft.com**20101007084223
1071 Ignore-this: 3d93b6a7f4cf9a7e34d6115c227e80f4
1072]
1073[Test Trac #4371
1074simonpj@microsoft.com**20101006115237
1075 Ignore-this: 4918e5488bbbb4d6919b77311e72d259
1076]
1077[update output (-fwarn-tabs)
1078Simon Marlow <marlowsd@gmail.com>**20101005155236
1079 Ignore-this: 37de9a666223ef6fd4a9f9bdb3839f4
1080]
1081[T4321: use -msse2 to get reproducible floating-point results on x86
1082Simon Marlow <marlowsd@gmail.com>**20101005114848
1083 Ignore-this: 311261cca5daf538eff9bec873d50de5
1084]
1085[accept output (:show packages)
1086Simon Marlow <marlowsd@gmail.com>**20101005105522
1087 Ignore-this: 956a2281b4bb667a78d3c7797a5c044
1088]
1089[run stdcall tests on non-Windows platforms too (#3336)
1090Simon Marlow <marlowsd@gmail.com>**20100924152516
1091 Ignore-this: 140946b32472be26614619466a25e368
1092]
1093[Pass OUTPUT_SUMMARY on to the testsuite driver
1094Ian Lynagh <igloo@earth.li>**20100930225033]
1095[comment including ticket no. for #4274 test
1096Simon Marlow <marlowsd@gmail.com>**20100926151351
1097 Ignore-this: 381c7e793247be9852aafe7f5a8168f6
1098]
1099[add test for #4274
1100Simon Marlow <marlowsd@gmail.com>**20100926151324
1101 Ignore-this: df83b884a0ea35639c96fa057e183ab9
1102]
1103[Fix reading the --info outputs on Windows
1104Ian Lynagh <igloo@earth.li>**20100925120927
1105 Ignore-this: c712c9ecc2daedd0be5f62b321f59b5a
1106]
1107[Add a test for #4321
1108Ian Lynagh <igloo@earth.li>**20100924144747]
1109[simplrun006, which is a CSE test is broken again
1110simonpj@microsoft.com**20100924155938
1111 Ignore-this: 43847b24162395d63ebda7b17f7659bc
1112 
1113 It's a very delicate case and we aren't supposed to
1114 catch it yet.
1115]
1116[Accept (better) output
1117simonpj@microsoft.com**20100924155907
1118 Ignore-this: 35d93f6f71137faf88bd7c5538761a1
1119]
1120[Update output: OPTIONS -> OPTIONS_GHC
1121Ian Lynagh <igloo@earth.li>**20100924120322
1122 Ignore-this: e81e10666ba263c2957db1a05f16b6d9
1123]
1124[Impredicative types no longer deprecated
1125simonpj@microsoft.com**20100923145145
1126 Ignore-this: 2573f282601fd418737f668a5b149a88
1127]
1128[Test Trac #2193
1129simonpj@microsoft.com**20100923123441
1130 Ignore-this: b185f989fbdd2593b2f79082cd63c4be
1131]
1132[Fix a couple of framework errors
1133Ian Lynagh <igloo@earth.li>**20100922231752
1134 Ignore-this: e54951429c9d9baee150d55ded9195f4
1135]
1136[Add a test for #4255: can't use TH with a profiled compiler
1137Ian Lynagh <igloo@earth.li>**20100922151720]
1138[Skip some more tests when the compiler is profiled
1139Ian Lynagh <igloo@earth.li>**20100922150943
1140 Ignore-this: d8b16c9544328f03740906f3f466aa60
1141]
1142[Remove a GHC < 6.11 test
1143Ian Lynagh <igloo@earth.li>**20100922150024]
1144[Remove a GHC < 6.11 test
1145Ian Lynagh <igloo@earth.li>**20100922145937]
1146[Remove a GHC < 6.11 test
1147Ian Lynagh <igloo@earth.li>**20100922145842]
1148[Add an if_compiler_profiled helper
1149Ian Lynagh <igloo@earth.li>**20100921234751
1150 and use it to skip the th, ghci and debugger tests when GHC is profiled.
1151]
1152[Remove a GHC < 6.11 test
1153Ian Lynagh <igloo@earth.li>**20100921233942]
1154[Remove some handling for GHC < 6.9
1155Ian Lynagh <igloo@earth.li>**20100921230921]
1156[fix hClose002 test output on i386-solaris2 platform
1157Karel Gardas <kgardas@objectsecurity.com>**20100906125227
1158 Ignore-this: bf719186dfc64821f73ffa55b1f949a4
1159]
1160[Add four tests
1161simonpj@microsoft.com**20100922155714
1162 Ignore-this: a6156e6ad154ad0e82cfc2dca658e19b
1163]
1164[Accept test output
1165simonpj@microsoft.com**20100922154821
1166 Ignore-this: 6fb3bc924c968b923a4a112ac8c8e9f3
1167]
1168[Test Trac #4178
1169simonpj@microsoft.com**20100917152612
1170 Ignore-this: b079a4e9b770a88cd9aa7cd5deb11b27
1171]
1172[when calling ghc-pkg for reqlib(), add --no-user-package-conf
1173Simon Marlow <marlowsd@gmail.com>**20100920090146
1174 Ignore-this: 90a3198c9a4251254bfe1931af7c291f
1175]
1176[Tests for Trac #700, 2239
1177simonpj@microsoft.com**20100919192942
1178 Ignore-this: 728032f93d0f16d5533d0693d0cbf8
1179]
1180[Add tests for Trac #3851, 4200, 3692, 3500
1181simonpj@microsoft.com**20100919192405
1182 Ignore-this: 816c06a26ac7b7083e6c488f44801e38
1183]
1184[Test Trac #1123
1185simonpj@microsoft.com**20100919154829
1186 Ignore-this: 1c1f37c5d17f69097c297ebb92decc51
1187]
1188[Add test for Trac #3696
1189simonpj@microsoft.com**20100919153712
1190 Ignore-this: 41dad7dff4fb2fdca9be79a3d4bd63e3
1191]
1192[Changed error message wording
1193simonpj@microsoft.com**20100919153658
1194 Ignore-this: 52617ab4b5bc5a9724f85bfb6fcbd6d3
1195]
1196[Change in error message wording
1197simonpj@microsoft.com**20100919153629
1198 Ignore-this: 91af9f10902e278b3b20de648a010132
1199]
1200[Add tests for Trac 4179, 4254
1201simonpj@microsoft.com**20100919153605
1202 Ignore-this: 1b9afcb310e729df9544da55977ea3cd
1203]
1204[Accept improved error message
1205simonpj@microsoft.com**20100919153548
1206 Ignore-this: eece43743fa5d67afebbb2485e4b26cb
1207]
1208[Test Trac #3826
1209simonpj@microsoft.com**20100919153511
1210 Ignore-this: 1074876f42a190057278167ad960350f
1211]
1212[Trac #4235 works now
1213simonpj@microsoft.com**20100919153441
1214 Ignore-this: 4e2e0d5c1a86c16e1826f46f7ae96d8
1215]
1216[Add a test for #4325
1217Ian Lynagh <igloo@earth.li>**20100919124018]
1218[Add a test for #3972
1219Ian Lynagh <igloo@earth.li>**20100918131451]
1220[Remove spurious "rm -f"s
1221Ian Lynagh <igloo@earth.li>**20100918125650]
1222[Add two implicit-parameter tests
1223simonpj@microsoft.com**20100917151718
1224 Ignore-this: 59bd0387697d53a9076bcf6a74fa7c40
1225]
1226[Accept error message changes
1227simonpj@microsoft.com**20100917151638
1228 Ignore-this: 8d65a3a17894db179a1e0eef4c99792c
1229]
1230[Make these typechecker tests run in the optimised way too
1231simonpj@microsoft.com**20100917081938
1232 Ignore-this: eb699be1f1388ce1129cfaa5327deb2
1233 
1234 The coercion optimiser is stressed by optimisation.
1235 I don't think this will slow down the test runs much
1236]
1237[Add test for Trac #4160
1238simonpj@microsoft.com**20100917081856
1239 Ignore-this: a94aeac401a82ae4b2719535bcc1027f
1240]
1241[Add tests for T3330
1242simonpj@microsoft.com**20100917081730
1243 Ignore-this: c3b812f7008dbcd0188307eea18932f6
1244]
1245[T3787 should pass
1246simonpj@microsoft.com**20100916080622
1247 Ignore-this: e811d1f7e9836eece4597daefaf4c496
1248]
1249[Test Trac #2683
1250simonpj@microsoft.com**20100915230050
1251 Ignore-this: 7a6c8cbea1f296b001252a514f834429
1252]
1253[Test Trac #3787
1254simonpj@microsoft.com**20100915230034
1255 Ignore-this: 824f5ccd5ca1e785bf30987a5f82ba5d
1256]
1257[Test Trac #4093
1258simonpj@microsoft.com**20100915230020
1259 Ignore-this: b58383f02d09421a63adfbfb321f040c
1260]
1261[Test Trac #4201 (eta reduction)
1262simonpj@microsoft.com**20100915211700
1263 Ignore-this: 5140532abe8a4b89eb66e5db2ccafd7b
1264]
1265[Test for Trac #4240 works now
1266simonpj@microsoft.com**20100915165620
1267 Ignore-this: c29ab512a26b3a20e4c77d8939f8fdc7
1268]
1269[Update for TH instance reification
1270simonpj@microsoft.com**20100915160444
1271 Ignore-this: c963188d59f3f12f9da9ec5fb293bc77
1272]
1273[Test instance reification (Trac #1835)
1274simonpj@microsoft.com**20100915151418
1275 Ignore-this: efb30fa52aef9af46de1084accf00ef6
1276]
1277[Accept error message changes
1278simonpj@microsoft.com**20100915144640
1279 Ignore-this: 98424402919df659f13344bb4b6ea94e
1280]
1281[speedup testsuite driver startup on Windows/OSX
1282Simon Marlow <marlowsd@gmail.com>**20100915105900
1283 Ignore-this: 9daf5f73f417583f33fc3eb0fe5d1b74
1284 Instead of calling "ghc-pkg list" and "ghc-pkg field" for each
1285 package, call "ghc-pkg dump" and grep the output.  Saves a few seconds
1286 on Windows for 'make TEST=foo'.
1287]
1288[Add test for Trac #4246
1289simonpj@microsoft.com**20100915123136
1290 Ignore-this: 12e93634a4e0dab2609ee8e31402c518
1291]
1292[Add a syb-like test
1293simonpj@microsoft.com**20100915071518
1294 Ignore-this: 41e4fb410e2aaaa5b320ea510acddaf9
1295]
1296[Add comment
1297simonpj@microsoft.com**20100914213850
1298 Ignore-this: 3a949543dbb90bbe6c4044fa22d4956d
1299]
1300[Error message wibbles
1301simonpj@microsoft.com**20100914213813
1302 Ignore-this: 1c907aa8d48ab2cb83092f052e3c4a6b
1303]
1304[Accept changes (some tests now work)
1305simonpj@microsoft.com**20100914115238
1306 Ignore-this: 6a07a16fe8c1d40a4bfd7843d5d60190
1307]
1308[Test Trac #4306
1309simonpj@microsoft.com**20100914114936
1310 Ignore-this: 671e8471c24946ca5960b6b3a61a32cd
1311]
1312[Add test for Trac #4302
1313simonpj@microsoft.com**20100913170452
1314 Ignore-this: ebf15fa5a11d357dd606dbd96da3ede6
1315]
1316[Add missing simpl017.stderr
1317simonpj@microsoft.com**20100913130354
1318 Ignore-this: 2edb5ca59ce23f8b88a948e065c823c0
1319]
1320[Update output
1321simonpj@microsoft.com**20100913095739
1322 Ignore-this: 279c0cda0386d3d51d50d4ee89a41d53
1323]
1324[Monster patch of testsuite changes with the new typechecker
1325simonpj@microsoft.com**20100913094429
1326 Ignore-this: 5f0384923c3bd99db406c8322903e4b9
1327 
1328 Very many of these changes are minor error-message wibbles,
1329 but there are some to do with higher-rank and impredicativity
1330 that are more substantial.  I'm looking at those separately,
1331 but meanwhile validate works.
1332 
1333]
1334[Accept output
1335simonpj@microsoft.com**20100909101315
1336 Ignore-this: d645bfc25d64325b54e27b81c7d350fc
1337]
1338[simpl017 should fail (impredicative)
1339simonpj@microsoft.com**20100909085549
1340 Ignore-this: 394b4d23cc8997dc8eff7a4fb7c9c693
1341]
1342[Accept output
1343simonpj@microsoft.com**20100909085524
1344 Ignore-this: 35e194ec9ebede11d71817ec5b2073a1
1345]
1346[tc216 fails now (fundep divergence)
1347simonpj@microsoft.com**20100907144424
1348 Ignore-this: b163740c36a5ed83da1c869c2fd40c7
1349]
1350[Impredicative breakage
1351simonpj@microsoft.com**20100907144227
1352 Ignore-this: 2126d84fb742132bdb6b8fd96f72f1aa
1353]
1354[Expected breakages
1355simonpj@microsoft.com**20100907144123
1356 Ignore-this: ee3796a764cc9084d60d0b9161ec417
1357]
1358[Accept error message change
1359simonpj@microsoft.com**20100907144017
1360 Ignore-this: 28d223d93da94690ad5f0d3187e28875
1361]
1362[Comments only
1363simonpj@microsoft.com**20100907143932
1364 Ignore-this: 4da37bf1eaa515a90910d17826d62be8
1365]
1366[Can't do type-function equalities under forall
1367simonpj@microsoft.com**20100907143639
1368 Ignore-this: 5a7f47d3db48b44404db0eee4277f17c
1369]
1370[Two expected breakages
1371simonpj@microsoft.com**20100907143613
1372 Ignore-this: 27f718b49fe59aac780795e7eb32a8b5
1373]
1374[Cant unify under an implication
1375simonpj@microsoft.com**20100907143328
1376 Ignore-this: 3886fadd3ba7fc4012fcf91113874e73
1377]
1378[Impredicative breakage
1379simonpj@microsoft.com**20100907142533
1380 Ignore-this: ec0cdc4335b51c56a2586461ef4962e1
1381]
1382[GADT12 passes now
1383simonpj@microsoft.com**20100906115533
1384 Ignore-this: 228d4263c7a97877588064994b62554f
1385]
1386[More wibbles
1387simonpj@microsoft.com**20100903165323
1388 Ignore-this: 2776e0b21eec31428ea17ac91a1a48f5
1389]
1390[Comments
1391simonpj@microsoft.com**20100902234651
1392 Ignore-this: 80f57360926561fc27e19e2c4900a573
1393]
1394[Accept changes
1395simonpj@microsoft.com**20100902234557
1396 Ignore-this: 68228f8a415784eee038b9bdae6efbc4
1397]
1398[Accept output
1399simonpj@microsoft.com**20100902234514
1400 Ignore-this: 4a146e46262e911bfdfcbb90e690e0b6
1401]
1402[More update to deriving
1403simonpj@microsoft.com**20100825112545
1404 Ignore-this: 37dbf73defa69c4b2d8af8058a778ce6
1405]
1406[Update deriving test for type families/gadts
1407simonpj@microsoft.com**20100825093140
1408 Ignore-this: 74c31984f8b328cea4f8bc6f88faa5b6
1409]
1410[Accept output
1411simonpj@microsoft.com**20100824105202
1412 Ignore-this: 515f1c367c9f8f4d37616c31c3d1b515
1413]
1414[Add test for Trac #4235
1415simonpj@microsoft.com**20100824105041
1416 Ignore-this: a51f35bdb1960086080b60c6fd581965
1417]
1418[test wibbles
1419simonpj@microsoft.com**20100819105603
1420 Ignore-this: 4785d45ddc508e31a7afff3477fbba1a
1421]
1422[Comments only
1423simonpj@microsoft.com**20100819091759
1424 Ignore-this: 535229ef7997053d3f36c1094052a04c
1425]
1426[Add type signature for top-level error
1427simonpj@microsoft.com**20100819091658
1428 Ignore-this: 4922b231f617783bd9c43d813245aec7
1429]
1430[Add a type signature in the test
1431simonpj@microsoft.com**20100819091601
1432 Ignore-this: fa54f25ae36835e1bd10f0c3ea96a819
1433]
1434[Make tc159 (generalised newtype deriving) into a runnable test
1435simonpj@microsoft.com**20100819091527
1436 Ignore-this: 1f99a81e95b84da9a7bb590b7ba270e9
1437]
1438[Update error messages for new typechecker
1439simonpj@microsoft.com**20100819091108
1440 Ignore-this: 79b457e39dc3fcd2d0a0e38ff11fd12f
1441]
1442[Add test from ghc-users mailing list about GADTs
1443simonpj@microsoft.com**20100818065253
1444 Ignore-this: 678300e7e7546abc97b6b6162576776a
1445]
1446[Update output
1447Ian Lynagh <igloo@earth.li>**20100911203252]
1448[add a test to catch over-allocation in lazy bytestrings
1449Simon Marlow <marlowsd@gmail.com>**20100909122210
1450 Ignore-this: 4442346380d50efdbc94ef9b507646ac
1451]
1452[remove enum04
1453Simon Marlow <marlowsd@gmail.com>**20100903113825
1454 Ignore-this: 7e8efc8c0629bc58c5f31e818c6b3cd4
1455]
1456[fix enum04 - it is no longer an expected failure
1457Simon Marlow <marlowsd@gmail.com>**20100903113813
1458 Ignore-this: 3f51e02d9374a9307d8c39163c43c686
1459]
1460[update test for containers-0.4
1461Simon Marlow <marlowsd@gmail.com>**20100903113754
1462 Ignore-this: 91f7df0c09622b2bc46cda3d9980bc5b
1463]
1464[Make a "fast" way for the dph tests so we can still run them during validate
1465benl@ouroborus.net**20100831032929
1466 Ignore-this: 81661552edbf16555fd6d3efdab02c7e
1467 Setting -fno-rewrite-rules means we still test out the vectoriser, but
1468 don't spend ages optimising the generated core code.
1469]
1470[Fix "/bin/sh: llvmc: command not found" noise when running testsuite
1471Ian Lynagh <igloo@earth.li>**20100826230011
1472 This also made the "run_command $MAKE" tests fail, as they were also
1473 sending this to stderr.
1474]
1475[Enable the optllvm way if llvmc is found
1476Simon Marlow <marlowsd@gmail.com>**20100823101851
1477 Ignore-this: 818122d5d448112b69bb523254be4e95
1478]
1479[another attempt to make the test more robust
1480Simon Marlow <marlowsd@gmail.com>**20100820081004
1481 Ignore-this: 88dd8b36ad97787a75bb1623dc87e5eb
1482]
1483[T3807 can't be run on Windows, and fails on OS X (#4264)
1484Ian Lynagh <igloo@earth.li>**20100821013620
1485 Ignore-this: 94add65c168a0078c8eff5954f375e59
1486]
1487[Add a test for #3807: shared library generation
1488Ian Lynagh <igloo@earth.li>**20100820162053]
1489[make this test a little more robust
1490Simon Marlow <marlowsd@gmail.com>**20100817075410
1491 Ignore-this: ade2edda500a890ea9d9fa6f36642ebf
1492]
1493[update output
1494Simon Marlow <marlowsd@gmail.com>**20100817075014
1495 Ignore-this: 5c9a8374883931c7bbe98f67207e07b
1496]
1497[Test Trac #3959
1498simonpj@microsoft.com**20100813170839
1499 Ignore-this: be8b4b14efcb95657649914e4dcc8ff6
1500]
1501[Test Trac #3983
1502simonpj@microsoft.com**20100813170240
1503 Ignore-this: 80863eca3671a9f3da4e052cc9acf80f
1504]
1505[Test Trac #4120
1506simonpj@microsoft.com**20100813163530
1507 Ignore-this: f335a19e2ed61413b02f09f2918796ed
1508]
1509[Accept output
1510simonpj@microsoft.com**20100813163235
1511 Ignore-this: 242b79bfaf5cd561027cf8b645964ffe
1512 
1513 The arity patch improves debugger output slightly
1514]
1515[Fix cabal01 so that it works even if your local package database is faulty
1516simonpj@microsoft.com**20100813161657
1517 Ignore-this: 7d3dd8e9c86c4c839e85d9afc5acf4f2
1518 
1519 The test modifies the user database, and you might get
1520    "WARNING: there are broken packages"
1521 for no fault of your own, which messes up validate
1522]
1523[Add test for Trac #4099
1524simonpj@microsoft.com**20100531163503
1525 Ignore-this: 87f30e5ffa84e0cd1f837069215817ef
1526]
1527[Test Trac #469
1528simonpj@microsoft.com**20100812135623
1529 Ignore-this: ec1f20e170dfc175eb35b99e4f78e570
1530]
1531[Modify Trac #4233 tests
1532simonpj@microsoft.com**20100812132559
1533 Ignore-this: 69ddb334513e8b3dce3b699a7632ec10
1534]
1535[Test Trac #4203
1536simonpj@microsoft.com**20100812130555
1537 Ignore-this: cfb90dbbe3f29b83c1c4aa360267bd96
1538]
1539[Test Trac #4220
1540simonpj@microsoft.com**20100812130526
1541 Ignore-this: 588c86c877749e1112a5973ea1f6b8c4
1542]
1543[missed part of the patch to add #4221 test
1544Simon Marlow <marlowsd@gmail.com>**20100812112530
1545 Ignore-this: dd0a4a0c30480a7296f32cb1f59d7028
1546]
1547[expect conc016(threaded2) to fail
1548Simon Marlow <marlowsd@gmail.com>**20100812112425
1549 Ignore-this: 93335923341df450611a14d54429db88
1550]
1551[fix expected values (Windows)
1552Simon Marlow <marlowsd@gmail.com>**20100812102122
1553 Ignore-this: a53359c76e9bbb75a6c8b86afd198ff9
1554]
1555[update output (Windows)
1556Simon Marlow <marlowsd@gmail.com>**20100812102114
1557 Ignore-this: 2406d797fcf984b0ff1d737e8a9cd185
1558]
1559[T3822(ghci) is broken due to #1333
1560Simon Marlow <marlowsd@gmail.com>**20100811084615
1561 Ignore-this: 30367653d4928cdf28937a29dec83ae9
1562]
1563[add missing output files
1564Simon Marlow <marlowsd@gmail.com>**20100811083451
1565 Ignore-this: 4670483901ec2d1eeab541688fa8195b
1566]
1567[remove a non-deterministic part of the output
1568Simon Marlow <marlowsd@gmail.com>**20100811082616
1569 Ignore-this: 58bde2f613b09e832f30b06df6331826
1570]
1571[Add more parse error tests for #3811
1572Ian Lynagh <igloo@earth.li>**20100810162229
1573 Ignore-this: c6ac6d6cbd98f1eba9b73fba0a3e6c1e
1574]
1575[Update output following parser error improvements
1576Ian Lynagh <igloo@earth.li>**20100809233647
1577 Ignore-this: b63df572fadfd789b77cd97b990456d2
1578]
1579[add test for #4221
1580Simon Marlow <marlowsd@gmail.com>**20100810151900
1581 Ignore-this: a9248f6e9af0810a787e78cd870831c4
1582]
1583[update test output (compilation messages now go to stdout)
1584Simon Marlow <marlowsd@gmail.com>**20100810081830
1585 Ignore-this: 2729012c5198caa9cf5b6885c4969de2
1586]
1587[Update output for error message changes
1588Ian Lynagh <igloo@earth.li>**20100808202258
1589 Ignore-this: 3d1cebe66a1bee713ca3b41f718f1ab8
1590]
1591[Add DoAndIfThenElse tests
1592Ian Lynagh <igloo@earth.li>**20100808194748
1593 Ignore-this: c845d12d3105d613441e1a23b9a85a16
1594]
1595[Add a couple of tests for #3811
1596Ian Lynagh <igloo@earth.li>**20100808193403
1597 Ignore-this: 4f0d68abe31bab969f4ce07b468684f7
1598]
1599[Remove some errmsg normalisation (removing paths from filenames)
1600Ian Lynagh <igloo@earth.li>**20100808185751
1601 This wasn't needed, but was breaking "data/newtype" in an error message
1602]
1603[Update output now ghci module-loading output goes to stdout
1604Ian Lynagh <igloo@earth.li>**20100808142248
1605 Ignore-this: 9fdfc82b64b37c1cd8a82224d5c2de39
1606]
1607[Update rtsOpts test
1608Ian Lynagh <igloo@earth.li>**20100805014605
1609 Ignore-this: de5ba32769817d57478a257adeca1fa3
1610]
1611[Add a test for #4240
1612Ian Lynagh <igloo@earth.li>**20100804204328]
1613[Add a test for #4239
1614Ian Lynagh <igloo@earth.li>**20100804203308]
1615[Add a test for trac #4233
1616Ian Lynagh <igloo@earth.li>**20100804164916]
1617[Tests for trac#1344
1618a**20100721195132
1619 Ignore-this: 8073bb5e7715a87df99282a7a457156e
1620]
1621[Fix more tests now H2010 is default
1622Ian Lynagh <igloo@earth.li>**20100725135716
1623 Ignore-this: 70664929663317d3174a22b3069d39ff
1624]
1625[Skip the via-C ways for read065
1626Ian Lynagh <igloo@earth.li>**20100725135611
1627 Ignore-this: 1eb3606b7451efca5e7b65a579fca4ad
1628 We get spurious failures due to deprecation messages
1629]
1630[Fix the apirecomp001 test; it needs to flatten the flags now
1631Ian Lynagh <igloo@earth.li>**20100725133949
1632 Ignore-this: 4cc65a4bf8bb3f427352d46750703141
1633]
1634[Fix a couple more tests now H2010 is the default
1635Ian Lynagh <igloo@earth.li>**20100725124507
1636 Ignore-this: 7d6b75fe8673286c1ebedb322f39a37d
1637]
1638[Fix ds tests that use NPlusKPatterns
1639Ian Lynagh <igloo@earth.li>**20100725121914
1640 Ignore-this: 497326b6b08fdf3c33fc96403624a9e3
1641]
1642[ds020 uses NPlusKPatterns
1643Ian Lynagh <igloo@earth.li>**20100725114205
1644 Ignore-this: ff7f01704bff8f0285664e4d44d022f
1645]
1646[Remove n+k pattern from cgrun058
1647Ian Lynagh <igloo@earth.li>**20100725112632
1648 Ignore-this: daea25cd765d80228e5e2f30c3b410f2
1649]
1650[readFail035 assumes Haskell98
1651Ian Lynagh <igloo@earth.li>**20100725111901
1652 Ignore-this: ffd53d6662dc72eb6519f88d158b114d
1653]
1654[Remove n+k pattern from readFail001
1655Ian Lynagh <igloo@earth.li>**20100725111830
1656 Ignore-this: fc22ebac97c437c812cc23a5e4fe03df
1657]
1658[The rebindable tests use NPlusKPatterns
1659Ian Lynagh <igloo@earth.li>**20100725111153
1660 Ignore-this: 1b9869d496364cdfc1675bf907bfbcc
1661]
1662[Fix some tests now H2010 is the default
1663Ian Lynagh <igloo@earth.li>**20100725105621
1664 Ignore-this: abf57799e44ee73966dfdb5a6051f31f
1665]
1666[Add a test for #4150
1667Ian Lynagh <igloo@earth.li>**20100725105324
1668 Ignore-this: 44d12d3edc9e700ff295b9981969bd7f
1669]
1670[tcfail144 only fails in H98 mode
1671Ian Lynagh <igloo@earth.li>**20100724234939
1672 Ignore-this: b6af020515cc49d5f97dad4d2550258
1673]
1674[tcfail126: accept output
1675Ian Lynagh <igloo@earth.li>**20100724211513
1676 Ignore-this: 56e7055e331083646cc6ef393a0847c3
1677]
1678[Skip the dph tests when running the fast testsuite
1679Ian Lynagh <igloo@earth.li>**20100724205835
1680 Ignore-this: c8d2a84f6f22e436257ecaef76dabd4f
1681 These 7 tests were taking almost half the testsuite time
1682]
1683[fromdos ghci023.script
1684Ian Lynagh <igloo@earth.li>**20100724202533
1685 Ignore-this: d7ed3cf5396198cda66aafb8ca8a5f99
1686]
1687[Add read065 stderr now that NewQualifiedOperators is deprecated
1688Ian Lynagh <igloo@earth.li>**20100719161644
1689 Ignore-this: d0d18f20877367612e369a6601763585
1690]
1691[Add test for Trac #4188
1692simonpj@microsoft.com**20100721145832
1693 Ignore-this: 61e5525aec663188b83b8e949c38a2fe
1694]
1695[Update error output
1696simonpj@microsoft.com**20100721145700
1697 Ignore-this: ae538b10b0466a1b1d37c66587755b4f
1698]
1699[add test for numSparks
1700Simon Marlow <marlowsd@gmail.com>**20100720152517
1701 Ignore-this: 9ebea06e43920d03cb1171f21b01e199
1702]
1703[move to parallel package
1704Simon Marlow <marlowsd@gmail.com>**20100720090343
1705 Ignore-this: a7cb4c1a6b4b0932a59d6e101c3534d1
1706]
1707[lower bound for T3294 on x86_64/Linux
1708Simon Marlow <marlowsd@gmail.com>**20100714133546
1709 Ignore-this: 7ac4b17616b8366e7024708b58d8f561
1710]
1711[Run the dph tests alone
1712Ian Lynagh <igloo@earth.li>**20100713224524
1713 Ignore-this: 8db6ac6c2a43c36bc8046e5558953d4a
1714 They use a lot of RAM
1715]
1716[Retab the dph .T files
1717Ian Lynagh <igloo@earth.li>**20100713195500
1718 Ignore-this: 752616140c8632d7ab6a4f968b36ae69
1719]
1720[Add test for Trac #4136
1721simonpj@microsoft.com**20100707135549
1722 Ignore-this: df8488e971df34a0e36af8de0235c304
1723]
1724[Improve test
1725simonpj@microsoft.com**20100701151018
1726 Ignore-this: 762b40569a048134715b4940a04f05e8
1727]
1728[Add a RelaxedPolyRec test
1729simonpj@microsoft.com**20100701150827
1730 Ignore-this: 66e1ce1f6eadd5bd3b5661e33e2e9438
1731 
1732 ..suggested by Haskell Cafe email (Job Vranish)
1733]
1734[Test the second bug reported in Trac #4127
1735simonpj@microsoft.com**20100701135930
1736 Ignore-this: 51530feb7ef23d43cd8efa7a76225c90
1737]
1738[add/modify tests for new async exceptions API
1739Simon Marlow <marlowsd@gmail.com>**20100709130426
1740 Ignore-this: 739a08b8c2bb29afb35b0041e6b2e421
1741]
1742[T1969, T3294: widen the limits on Windows
1743Simon Marlow <marlowsd@gmail.com>**20100708093112
1744 Ignore-this: b28a90d6ca0cf3ebc88fa8ae9e6aa4fc
1745]
1746[cg003: remove -fvia-C
1747Simon Marlow <marlowsd@gmail.com>**20100706074902
1748 Ignore-this: afebeb73473a203b8c1b2a24729bb0df
1749]
1750[ghci script for trac #2362
1751amsay@amsay.net**20100625032335
1752 Ignore-this: 804023b30a986bc5e59e2dd58f017643
1753]
1754[hReady002: omit ghci way
1755Simon Marlow <marlowsd@gmail.com>**20100705084035
1756 Ignore-this: 53327a56176eec36669c20592b7cbfe0
1757]
1758[Skip some tests the optc/profc ways
1759Ian Lynagh <igloo@earth.li>**20100702215429
1760 Rather than tweaking the GHC flags to get the test to pass, just
1761 skip them for the deprecated ways. This'll also make it easier
1762 to discover the workarounds and remove them once the ways are
1763 removed.
1764]
1765[add a test for #4144
1766Simon Marlow <marlowsd@gmail.com>**20100624143607
1767 Ignore-this: 7ddd98ec61b6fa99b06ebc543ac6cfab
1768]
1769[Omit optllvm way for derefnull test
1770David Terei <davidterei@gmail.com>**20100625122336
1771 Ignore-this: e036847454834b2f0945bc2db4d5e7d8
1772]
1773[Expect length001 to fail for llvm way.
1774David Terei <davidterei@gmail.com>**20100625122222
1775 Ignore-this: 135fd88058fc0a5606fd589f60510129
1776]
1777[Add a test for #3364
1778Ian Lynagh <igloo@earth.li>**20100624233948]
1779[For #3389, use -optP -C manually
1780Ian Lynagh <igloo@earth.li>**20100624113301]
1781[Add a test for #3449
1782Ian Lynagh <igloo@earth.li>**20100624110524]
1783[T3389 is broken
1784Ian Lynagh <igloo@earth.li>**20100624103305
1785 Ignore-this: 3ed35522723638a83bc659380776143f
1786]
1787[Add a test for #3389
1788Ian Lynagh <igloo@earth.li>**20100623170942
1789 Ignore-this: dcdb6bf48c840203a86c3cffd74094b2
1790]
1791[Fix 4038 test on Windows; it needs a larger C stack
1792Ian Lynagh <igloo@earth.li>**20100623161607]
1793[Add Windows output for ghcpkg05
1794Ian Lynagh <igloo@earth.li>**20100623160519]
1795[Add Windows output for ghcpkg03
1796Ian Lynagh <igloo@earth.li>**20100623155612]
1797[Fix quoting in TH_recompile
1798Ian Lynagh <igloo@earth.li>**20100622232233
1799 Ignore-this: d444f849da6d9a42dbd7ac6101069f46
1800]
1801[Add new llvm ways (llvm, optllvm) to testsuite
1802David Terei <davidterei@gmail.com>**20100622130303
1803 Ignore-this: 5c3fec70d2d10793883d596cdc5265bb
1804]
1805[More #1789 tests
1806Ian Lynagh <igloo@earth.li>**20100620124320
1807 Ignore-this: a2cbaf374126e2abfe703badad93d38a
1808]
1809[trac #1789 (tests for missing import lists)
1810amsay@amsay.net**20100618150432
1811 Ignore-this: e46a269a8abff8743f4700dc2873b66e
1812]
1813[Add a test for #3822
1814Ian Lynagh <igloo@earth.li>**20100619160049]
1815[add test for #4038
1816Simon Marlow <marlowsd@gmail.com>**20100506194357
1817 Ignore-this: ae45b36aeec8cbfe15fca102144e8ba9
1818]
1819[Update following fixes for #4104 and #4134
1820Simon Marlow <marlowsd@gmail.com>**20100616081041
1821 Ignore-this: a86bfdf4c17749713e03e3375304567a
1822]
1823[Add -fno-warn-deprecated-flags to tests that use -fvia-C / -C
1824Ian Lynagh <igloo@earth.li>**20100615160929
1825 Ignore-this: dd62883740ba86e2de9f50b76f5d13d9
1826]
1827[Use -fno-warn-deprecated-flags in the optc and profc ways
1828Ian Lynagh <igloo@earth.li>**20100615160012
1829 Ignore-this: f8cfe096debff1b915c163b7d2026df0
1830 as they use the -fvia-C flag, which is deprecated
1831]
1832[Test Trac #4127
1833simonpj@microsoft.com**20100614205937
1834 Ignore-this: fac60358d3b497b5c2987bb7cfce5ec4
1835]
1836[Track changes to type error messages
1837simonpj@microsoft.com**20100614151434
1838 Ignore-this: 7730f63e1ec4f3cd60a5d358abe22acd
1839]
1840[Fix T4113 on Windows
1841Ian Lynagh <igloo@earth.li>**20100613173553
1842 Ignore-this: 55789eef2e895487fa39ed7d2c3e4968
1843]
1844[Add a test for #4113
1845Ian Lynagh <igloo@earth.li>**20100613135527]
1846[Fix quoting in recomp007
1847Ian Lynagh <igloo@earth.li>**20100606204648
1848 Ignore-this: 238e13ed06428bc729678aa434503c6b
1849]
1850[Fix recomp007 on Windows
1851Ian Lynagh <igloo@earth.li>**20100606180331
1852 Ignore-this: ae2e572a7771a77d4151015083488e49
1853]
1854[Fix apirecomp001 on cygwin
1855Ian Lynagh <igloo@earth.li>**20100606171151
1856 Ignore-this: 4ec9de0b1bc5a07bad4acf8071a5c292
1857]
1858[Follow changes in ghc-pkg output
1859Ian Lynagh <igloo@earth.li>**20100606173537
1860 Ignore-this: bf7c14fba1782b0944045b915cbc1ef2
1861]
1862[Follow change in random library
1863Ian Lynagh <igloo@earth.li>**20100606111058
1864 Ignore-this: 8b26bffd88bf179876add35f6b6c051d
1865]
1866[Update error messages for printing singleton contexts
1867simonpj@microsoft.com**20100604110716
1868 Ignore-this: a62232e52ce98df8f87aed6259d85950
1869 
1870        f :: Eq a => a -> a
1871 rather than
1872        f :: (Eq a) => a -> a
1873]
1874[Add a test for #3911
1875Ian Lynagh <igloo@earth.li>**20100601181210]
1876[ffi005 is broken on OSX (#4105)
1877Ian Lynagh <igloo@earth.li>**20100529185103
1878 Ignore-this: f6c4570a47d47f206003f6b701f041cc
1879]
1880[hGetBufSome comes from System.IO now.
1881Simon Marlow <marlowsd@gmail.com>**20100524124205
1882 Ignore-this: 2f5e01b2092686264a0773000cad8494
1883]
1884[Remove duplicate T3955 test
1885Ian Lynagh <igloo@earth.li>**20100525195613]
1886[Add an indexed types performance test
1887Ian Lynagh <igloo@earth.li>**20100525194755]
1888[Accept output
1889simonpj@microsoft.com**20100525153044
1890 Ignore-this: 6836925a68c7285794b28acd5f3cec83
1891]
1892[Test Trac #4015
1893simonpj@microsoft.com**20100525153036
1894 Ignore-this: 76f0a1c0cf7cdf872f831e85da098409
1895]
1896[Test Trac #4056
1897simonpj@microsoft.com**20100525114455
1898 Ignore-this: 1222efc8e742438c66dbf39447fce7b1
1899]
1900[Test Trac #4087
1901simonpj@microsoft.com**20100525071514
1902 Ignore-this: 730275119b183e2a9d719e8d44893ffb
1903]
1904[Test Trac #3966
1905simonpj@microsoft.com**20100506165500
1906 Ignore-this: 138a777d57db3c9caa4e620efe09c7c0
1907]
1908[expand the shadow test a bit to cover #4072
1909Simon Marlow <marlowsd@gmail.com>**20100519115636
1910 Ignore-this: c8534171e0adac676a0eb07d28a9f438
1911]
1912[Fix the pkg02 test to not depend on the network package
1913Simon Marlow <marlowsd@gmail.com>**20100519102528
1914 Ignore-this: 112ae04883096bbdae62deb05c2a6528
1915]
1916[Move the ctypes import in the driver
1917Ian Lynagh <igloo@earth.li>**20100518194744
1918 The import is failing on sparky, and we only use it on Windows anyway,
1919 so move it inside an "if windows".
1920]
1921[update expected values for x86_64/Linux
1922Simon Marlow <marlowsd@gmail.com>**20100518074118
1923 Ignore-this: 93827f73b20743666dbec8496ec7b159
1924]
1925[update expected values for x86/Windows
1926Simon Marlow <marlowsd@gmail.com>**20100518073823
1927 Ignore-this: 228d2629c984d2857eb272bfbbe9edcd
1928]
1929[add test for #4078
1930Simon Marlow <marlowsd@gmail.com>**20100517133607
1931 Ignore-this: e3bc78a53966cc5aa75d3f0d75533071
1932]
1933[Add test for trac '3953
1934simonpj@microsoft.com**20100517121524
1935 Ignore-this: e182aa45cee5e141506fe01e5b71bf52
1936]
1937[Test Trac #3964
1938simonpj@microsoft.com**20100507132944
1939 Ignore-this: fad1bd07b2316281e4f532dc8a16a419
1940]
1941[Test Trac #3965
1942simonpj@microsoft.com**20100507132545
1943 Ignore-this: a77fe116785cc23d95111192e6d3e31a
1944]
1945[Test Trac #3955
1946simonpj@microsoft.com**20100507132509
1947 Ignore-this: b5f694428f704a60000388f8d43d6acc
1948]
1949[Add stderr file for T3953
1950simonpj@microsoft.com**20100507132230
1951 Ignore-this: f842e85d242cf9996f4bcfa93ea3fb86
1952]
1953[Add a test for #4003
1954Ian Lynagh <igloo@earth.li>**20100516212402]
1955[Add a test for #4059
1956Ian Lynagh <igloo@earth.li>**20100515182626]
1957[add test for #4066
1958Simon Marlow <marlowsd@gmail.com>**20100514130134
1959 Ignore-this: 8f54a8817a5965495ab3c4f62bbfa755
1960]
1961[add test for #4051
1962Simon Marlow <marlowsd@gmail.com>**20100510095333
1963 Ignore-this: e85162394da682cdbc8b53ce4b992838
1964]
1965[Remove invalid UNPACK pragma
1966simonpj@microsoft.com**20100510150826
1967 Ignore-this: b1976be9aa80cfc9017afececda780d
1968]
1969[add sample output
1970Simon Marlow <marlowsd@gmail.com>**20100408084849
1971 Ignore-this: 13cba4d81767448093bc70cce34fbc14
1972]
1973[Make tc212 actually need a specialize pragma
1974Ian Lynagh <igloo@earth.li>**20100506212837]
1975[Fix quoting in mod175
1976Ian Lynagh <igloo@earth.li>**20100506212141]
1977[Modify test slightly
1978simonpj@microsoft.com**20100506164827
1979 Ignore-this: 2dcecdaf673520d4d339971d8e2d50e9
1980]
1981[Test Trac #4042
1982simonpj@microsoft.com**20100506164751
1983 Ignore-this: 26d7b3c6fe10317f123f97e961f77ff1
1984]
1985[Modify test slightly
1986simonpj@microsoft.com**20100506164740
1987 Ignore-this: f31c5c3000c0bc7970b6a8fa7735311b
1988]
1989[Accept output
1990simonpj@microsoft.com**20100506164726
1991 Ignore-this: c7009b0121f9a5b9a16b5118b264949b
1992]
1993[Tidy up tcfail145 a little
1994simonpj@microsoft.com**20100430111321
1995 Ignore-this: 40218750b184b4b17ba8240dacb32353
1996]
1997[Test Trac #3955
1998simonpj@microsoft.com**20100430111048
1999 Ignore-this: 2208601251dad65f4a32a488961e84e5
2000]
2001[add a test for #3890
2002Simon Marlow <marlowsd@gmail.com>**20100505134053
2003 Ignore-this: 9dc7610e42efb9c9bcc14572af20e749
2004]
2005[fix conc059
2006Simon Marlow <marlowsd@gmail.com>**20100505113545
2007 Ignore-this: 212f93e976d6cd78332a659529003ced
2008]
2009[add test for #4030
2010Simon Marlow <marlowsd@gmail.com>**20100505112040
2011 Ignore-this: 6a5d21d94e031d69f08e0e7208a116f0
2012]
2013[test hGetBufSome
2014Simon Marlow <marlowsd@gmail.com>**20100504152635
2015 Ignore-this: b63e227ba8957ba3108bf1815b97b25c
2016]
2017[Fix creation of Config.hs in annrun01; fixes #4033
2018Ian Lynagh <igloo@earth.li>**20100504164921
2019 Ignore-this: f8eb70b61cd00b4b59d35d4de0d50650
2020]
2021[Updating expected output of spec-inline test.
2022Milan Straka <fox@ucw.cz>**20100430112716
2023 Ignore-this: 9e19b2dc3f01a529153da679a2ec40c0
2024 
2025 Using data structures from containers in GHC causes the arguments
2026 of a worker to be in a different order.
2027]
2028[Fix running dyn tests on OS X
2029Ian Lynagh <igloo@earth.li>**20100503165143]
2030[Fix the shared001 test
2031Ian Lynagh <igloo@earth.li>**20100503155014
2032 Ignore-this: 936e3385ce09da307c5f3b49a29f9ad4
2033]
2034[Make the dynlib tests work on Windows
2035Ian Lynagh <igloo@earth.li>**20100503140815
2036 Ignore-this: 16b457c5cbaa6efdc1d728dfd317ae3e
2037]
2038[Fix the ffi002 test
2039Ian Lynagh <igloo@earth.li>**20100428161112]
2040[ffi002: work around dependence on old cmd line semantics
2041Simon Marlow <marlowsd@gmail.com>**20100427084506
2042 Ignore-this: a264ee8bf5a771b43d7075285dc99c04
2043]
2044[TH_pragma: remove superfluous -S, which now breaks the test
2045Simon Marlow <marlowsd@gmail.com>**20100427082123
2046 Ignore-this: 32af45d78ff05eeeca5533c7e8782c09
2047]
2048[Remove -fno-code in various places
2049Simon Marlow <marlowsd@gmail.com>**20100427082002
2050 Ignore-this: 1200a4417e667af982145706a3026679
2051 These tests were relying on the old behaviour of -fno-code, and work
2052 just fine without it.
2053]
2054[avoid spurious extra output
2055Simon Marlow <marlowsd@gmail.com>**20100408085805
2056 Ignore-this: 7d7d6e28b650426136434e923b48b03
2057]
2058[Add test for Trac #3943
2059simonpj@microsoft.com**20100417142447
2060 Ignore-this: 9d7f8fc08eca6552dc1bf4146d5ea65
2061]
2062[Add test for Trac #3950
2063simonpj@microsoft.com**20100417142427
2064 Ignore-this: d8f9a8815b475d47d73da5fafd1fa53a
2065]
2066[Tests for spelling correction for LANGUAGE pragmas
2067Max Bolingbroke <batterseapower@hotmail.com>**20100413165334
2068 Ignore-this: 237c451280358c11378ba1dc009d38b2
2069]
2070[Fix quoting in Makefile
2071Ian Lynagh <igloo@earth.li>**20100416155420]
2072[Use ${PYTHON} instead of relying on #!/usr/bin/env python
2073Matthias Kilian <kili@outback.escape.de>**20100416114627
2074 Ignore-this: 5dce63bea46566dfebb700b56a47a051
2075]
2076[Fix running the testsuite on msys
2077Ian Lynagh <igloo@earth.li>**20100412184103
2078 I'm not entirely sure if the cygwin code is actually right (i.e. I'm
2079 not sure what calling convention it uses), but it seems to work.
2080]
2081[Run this test the threaded2 way only
2082Simon Marlow <marlowsd@gmail.com>**20100401101509
2083 Ignore-this: fa8be885eec598156d85023a4b8b3612
2084 It seems to be scheduling sensitive, and sometimes diverges when given
2085 only one core.
2086]
2087[not broken any more: the new Strategies library fixed it
2088Simon Marlow <marlowsd@gmail.com>**20100401091727
2089 Ignore-this: d23e727c87b8c6eae4640178e8b28714
2090]
2091[update to work with parallel-2
2092Simon Marlow <marlowsd@gmail.com>**20100401091120
2093 Ignore-this: b25bf553673a05b10f3eeda7367618e9
2094]
2095[we should be testing $(TEST_HC), not simply 'ghc'
2096Simon Marlow <marlowsd@gmail.com>**20100322131014
2097 Ignore-this: ca86cb1d1351019b1a249bac16be0392
2098]
2099[print021 now passes on Windows, presumably due to the codepage change
2100Ian Lynagh <igloo@earth.li>**20100321182848
2101 Ignore-this: 1be5611fe545a9bb55d3b7fdeace9a5
2102]
2103[dynHelloWorld currently fails on Windows; trac #3861
2104Ian Lynagh <igloo@earth.li>**20100321182638
2105 Ignore-this: 3f84d0bb2a93b0914c4802c03d66d07c
2106]
2107[Fix the cabal04 test on Windows
2108Ian Lynagh <igloo@earth.li>**20100321175551
2109 Ignore-this: bae70cf3ae40abb0c8b6504c7103e30b
2110]
2111[2816 now passes on Windows, presumably due to the codepage change
2112Ian Lynagh <igloo@earth.li>**20100321173113
2113 Ignore-this: b14bb8041c6c6a2ae1b2db9d00aa5aae
2114]
2115[2302 now passes on Windows, presumably due to the codepage change
2116Ian Lynagh <igloo@earth.li>**20100321172615
2117 Ignore-this: 35476fc95cb109ee32c74961f6994dc
2118]
2119[Use the UTF8 codepage when running on Windows
2120Ian Lynagh <igloo@earth.li>**20100319200751
2121 Fixes openTempFile001 for some system codepages, most notably 437 (US).
2122]
2123[Mark hsc2hs001 and hsc2hs002 broken on Windows (#3929)
2124Ian Lynagh <igloo@earth.li>**20100319160229]
2125[The T2267 test needs utf8-string
2126Ian Lynagh <igloo@earth.li>**20100318123144]
2127[Accept change in inline pragma format
2128simonpj@microsoft.com**20100317133405
2129 Ignore-this: b2fe17284fa97faceb178a4921c10011
2130]
2131[Add test for Trac #3920
2132simonpj@microsoft.com**20100317123757
2133 Ignore-this: c4085486f19633c8bba1ebea83b5d758
2134]
2135[Add dph-words test
2136benl@ouroborus.net**20100316042056
2137 Ignore-this: cf25c704fa4b18101faaf5d46feadd4e
2138 I've only set this to run with the "normal" way atm because it
2139 takes about 1.5 min to compile on my machine. SpecConstr blows out
2140 the size of the core program to about 400k, which is probably
2141 a good enough reason to have it in the testsuite.
2142]
2143[Update rtsOpts output
2144Ian Lynagh <igloo@earth.li>**20100315210245]
2145[Use -rtsopts for the outofmem2 test
2146Ian Lynagh <igloo@earth.li>**20100314173403]
2147[Update the rtsOpts test now that RTS options are off by default
2148Ian Lynagh <igloo@earth.li>**20100314172340]
2149[Always use -rtsopts when compiling things with GHC
2150Ian Lynagh <igloo@earth.li>**20100314171950]
2151[Add a test for -with-rtsopts
2152Ian Lynagh <igloo@earth.li>**20100313231306]
2153[Add a test for en/disabling RTS options
2154Ian Lynagh <igloo@earth.li>**20100313161942]
2155[do the throwto tests in a validate run
2156Simon Marlow <marlowsd@gmail.com>**20100311120646
2157 Ignore-this: 7a7212c6af06e61c15b4c5ab911d9359
2158]
2159[Add some tortuous throwTo tests
2160Simon Marlow <marlowsd@gmail.com>**20100311120231
2161 Ignore-this: 4bf901e3405e0f7c9e873731e459fd86
2162]
2163[Track change in printing of Activations
2164simonpj@microsoft.com**20100309173726
2165 Ignore-this: edab510554f9bda449254f1779daec3e
2166]
2167[Add test for Trac #1954
2168simonpj@microsoft.com**20100309173712
2169 Ignore-this: df6221f310d60fa3396d3006d4a180c7
2170]
2171[Fix running hp2ps in a directory containing spaces
2172Ian Lynagh <igloo@earth.li>**20100304015245]
2173[Fix detection of whether we have profiling libs
2174Ian Lynagh <igloo@earth.li>**20100303235023
2175 It broke when the installation path contained a space
2176]
2177[Track improvements in pretty-printing for group-by, order-by
2178simonpj@microsoft.com**20100304130820
2179 Ignore-this: dd7840365626ec02f8472a76e69827a
2180]
2181[Track change in -dsuppress-unique printing for TH
2182simonpj@microsoft.com**20100304130753
2183 Ignore-this: 3325f0fc735ecd5e21227a50bcf66f48
2184]
2185[Add test for Trac #3899
2186simonpj@microsoft.com**20100304130731
2187 Ignore-this: 2f0d99bb7c83643a08bea68395c8af56
2188]
2189[Add test for Trac #3901
2190simonpj@microsoft.com**20100304130619
2191 Ignore-this: 216cc68d1d40ce8add7b852ac0d7d97f
2192]
2193[Update layout tests
2194Ian Lynagh <igloo@earth.li>**20100302205840]
2195[Add a layout test
2196Ian Lynagh <igloo@earth.li>**20100302165911]
2197[A missing change from the InlinePrag pretty-print change
2198simonpj@microsoft.com**20100301173752
2199 Ignore-this: 42fc03950d97005f673512c8b2c126c6
2200]
2201[omit profiling ways for traceEvent
2202Simon Marlow <marlowsd@gmail.com>**20100301090451
2203 Ignore-this: e6f7fe3fc1a04bf54dec3f1fc55dc43
2204]
2205[Track extra suggestion in newtype deriving (cf Trac #3888)
2206simonpj@microsoft.com**20100301112517
2207 Ignore-this: a8d4656f5f92b4d7b4b8a15fc6089ca0
2208]
2209[Track changes in pretty-printing of IfacePrag
2210simonpj@microsoft.com**20100301112448
2211 Ignore-this: 59a46630a8ba4ddf2982fe335777e84e
2212]
2213[Add sparc specific version of smvm test data
2214benl@ouroborus.net**20100301061637]
2215[Add x86_64 specific version of smvm test data
2216benl@ouroborus.net**20100301060429
2217 Ignore-this: cfb955f47d04c25947c1fc6edac935bd
2218]
2219[Add DPH solution for 108th Euler problem
2220benl@ouroborus.net**20100301041657
2221 Ignore-this: 66545782ee8d19b57b24f6f864eddde5
2222]
2223[Add a test for #2578
2224Ian Lynagh <igloo@earth.li>**20100227172429]
2225[add test for GHC.Exts.traceEvent (#3874)
2226Simon Marlow <marlowsd@gmail.com>**20100226101321
2227 Ignore-this: 87505cea77315f35fb5a7209708e6530
2228]
2229[Add DPH solution for 1st Euler problem
2230benl@ouroborus.net**20100226045105
2231 Ignore-this: cb49b2afcceba6abd09e2093081f75b5
2232]
2233[Add missing Makefiles
2234benl@ouroborus.net**20100226033607]
2235[Add DPH smvm test
2236benl@ouroborus.net**20100226025630
2237 Ignore-this: c7f0ac34b7f092472aed1899eb40d0a
2238]
2239[Add DPH primes test
2240benl@ouroborus.net**20100226020034
2241 Ignore-this: 19f6625477a61e6db295e34480b19bd3
2242]
2243[In dph-dotp, compare with result computed via regular list fns.
2244benl@ouroborus.net**20100226014700
2245 Ignore-this: b18cd05a7c825897d9039f6d028472fb
2246]
2247[Prefix dph tests with 'dph-' to avoid name conflicts
2248benl@ouroborus.net**20100226013638
2249 Ignore-this: dbbc84fe4e61748ee9f32552a5376a30
2250]
2251[Add DPH dotp test
2252benl@ouroborus.net**20100225042634
2253 Ignore-this: cd51c73a0428abbde4f7fb0f83a17436
2254]
2255[arith012, arith008: use -msse2 on i386 if available
2256Simon Marlow <marlowsd@gmail.com>**20100224101434
2257 Ignore-this: 898b94793dd9df4a5d7889502e6464ea
2258]
2259[Add quickhull test output
2260benl@ouroborus.net**20100224071233]
2261[Add DPH quickhull test
2262benl@ouroborus.net**20100224052916
2263 Ignore-this: 97fd56a0e05f324f5c61832f95f79835
2264]
2265[expect_broken(3676)
2266Simon Marlow <marlowsd@gmail.com>**20100223105935
2267 Ignore-this: 16eea589ade1dcf21eed01bccd563c21
2268]
2269[disable annrun01(dyn) (see comments)
2270Simon Marlow <marlowsd@gmail.com>**20100223094835
2271 Ignore-this: 79baa6325aea23eba454ba8a89ae9d58
2272]
2273[omit via-C ways for this test, gcc takes too long
2274Simon Marlow <marlowsd@gmail.com>**20100223094241
2275 Ignore-this: 673323521cece51ee0b5393d5c0291ff
2276]
2277[omit profilng ways
2278Simon Marlow <marlowsd@gmail.com>**20100223094006
2279 Ignore-this: 492d40fd56d4d4d0e927c7b57c5dcaaf
2280]
2281[Add a test for recompilation when a package version changes
2282Simon Marlow <marlowsd@gmail.com>**20100217135321
2283 Ignore-this: b8a1bb3dc3acf79b4b1aafd970fe945e
2284]
2285[enable the asm ways for ffi009 on i386 if -msse2 is available
2286Simon Marlow <marlowsd@gmail.com>**20100216124514
2287 Ignore-this: 3c02d4aa1a224bd0911a285077663ffd
2288]
2289[add a test for a bug in noDuplicate#
2290Simon Marlow <marlowsd@gmail.com>**20100216123210
2291 Ignore-this: a0a6570b849a377d19e74eac417875af
2292]
2293[add test for #3676
2294Simon Marlow <marlowsd@gmail.com>**20100211131639
2295 Ignore-this: bb34821a52b63c854ba7d4150cd1eb15
2296]
2297[Test Trac #3845
2298simonpj@microsoft.com**20100210153741
2299 Ignore-this: 1e79fd99256f5d7feed19aa38233076d
2300]
2301[Fewer parens when printing HsPat
2302simonpj@microsoft.com**20100210110024
2303 Ignore-this: 7732b27e3e8b69be37e30e2486a7dedc
2304]
2305[New syntax for quasi-quotes, and record field names for QuasiQuoter type
2306simonpj@microsoft.com**20100210105911
2307 Ignore-this: fe4d96a31b22710b645963b3dbd4b2a4
2308]
2309[Add quasi-quote test for declaration and type quotes
2310simonpj@microsoft.com**20100210105822
2311 Ignore-this: e7745043c40d095693c0810b08ebe028
2312]
2313[Fix test T3831, and change to Unix coding
2314simonpj@microsoft.com**20100208155715
2315 Ignore-this: ba7c87186d1e2a699602206d29cb5da1
2316]
2317[accept output (#3848)
2318Simon Marlow <marlowsd@gmail.com>**20100202120626
2319 Ignore-this: b7b4edeaa4bd7fdd746f7bf787e9b03a
2320]
2321[Test Trac #3831: SpecConstr blowup
2322simonpj@microsoft.com**20100202072405
2323 Ignore-this: be443a4998f4322eaa8b6e614f94bf62
2324]
2325[Add a test for trac #3813
2326Ian Lynagh <igloo@earth.li>**20100130211256]
2327[Update column numbers for the HEAD
2328Ian Lynagh <igloo@earth.li>**20100130203147]
2329[Add tests for trac #3833 and #3834
2330Ian Lynagh <igloo@earth.li>**20100130203049]
2331[add test for #3674
2332Simon Marlow <marlowsd@gmail.com>**20100129104231
2333 Ignore-this: 417f1d3bb43965ab40ba3cf62f051705
2334]
2335[add test for #2464
2336Simon Marlow <marlowsd@gmail.com>**20100129104140
2337 Ignore-this: a6af5aedca49dc4fd2ef6f74dc697b07
2338]
2339[Update column numbers for the HEAD
2340Ian Lynagh <igloo@earth.li>**20100122154945]
2341[Expect T3823 to fail to compile
2342Ian Lynagh <igloo@earth.li>**20100122141329]
2343[Add a test for #3823
2344Ian Lynagh <igloo@earth.li>**20100122130735]
2345[add test for #3832
2346Simon Marlow <marlowsd@gmail.com>**20100120211706
2347 Ignore-this: 83899d7ca854569a004d23ee8b6f29c1
2348]
2349[OS X doesn't seem to support linker scripts
2350Ian Lynagh <igloo@earth.li>**20100120204812]
2351[Tweak the T2615 test
2352Ian Lynagh <igloo@earth.li>**20100120162214]
2353[FIX #2615 (linker scripts in .so files)
2354howard_b_golden@yahoo.com**20091216211220
2355 Ignore-this: 1cb087990cbf6210f60eb9abbb0d28c8
2356 This is the regression test for FIX #2615 (linker scripts in .so files).
2357 
2358 It does NOT apply to Windows. It applies only to systems using ELF files.
2359 
2360 In order for this test to work on all ELF systems, no assumption is
2361 made about whether or not real ELF shared libraries and linker scripts
2362 exist. Instead, this patch compiles a trivial C program into an ELF shared
2363 library. Also, a mock linker script (libfoo_script_T2615.so) is included in
2364 the patch. Note: This is marked as a binary, but it is a text file.
2365 
2366 Test approach:
2367 
2368 A small Haskell program (T2615.hs) imports the ObjLink module from GHC.
2369 It then calls the loadDLL function with the name of the mock linker script
2370 (libfoo_script_T2615.so). This mock script contains a link to a real
2371 shared library (libfoo_T2615.so) which the test has already created. If
2372 the dlopen (in the addDLL function in rts/Linker.c) works, the Haskell
2373 program will return a success message. Otherwise, it will return the error
2374 message it receives from loadDLL (which is actually the dlerror() message
2375 received by addDLL).
2376]
2377[Track error message change
2378simonpj@microsoft.com**20100120114813
2379 Ignore-this: 1cd39940600a5d29b018eca103993f8e
2380]
2381[Add a layout test
2382Ian Lynagh <igloo@earth.li>**20100116215414]
2383[Add a layout rule test
2384Ian Lynagh <igloo@earth.li>**20100116214141]
2385[fix cleaning in cabal03/cabal04
2386Simon Marlow <marlowsd@gmail.com>**20100115142516
2387 Ignore-this: 12c7dbc6ed9faddfe6feacfc705abab
2388]
2389[Improve the handling of TEST_HC
2390Ian Lynagh <igloo@earth.li>**20100108210400
2391 We now accept TEST_HC=ghc as well as TEST_HC=/usr/bin/ghc
2392 The code is also a little more correct, as it will now actually
2393 canonicalise the value of TEST_HC if it is given on the commandline.
2394]
2395[Always define IN_TREE_COMPILER in mk/boilerplate.mk
2396Ian Lynagh <igloo@earth.li>**20100108202040
2397 There was one path in which it was not being set.
2398]
2399[Add missing T3772_A.hs
2400simonpj@microsoft.com**20100108123553
2401 Ignore-this: e2e95176d17f14b88194d846b26c1e60
2402]
2403[Change debug print format
2404simonpj@microsoft.com**20100108084821
2405 Ignore-this: d38acdd3cc5253cbb5f86dbf92417ef4
2406]
2407[Improved "Invalid type signature" message
2408simonpj@microsoft.com**20100108084804
2409 Ignore-this: 9c835297d44665a754c1aaf7162f7d83
2410]
2411[Follow more-accurate spans in error messages
2412simonpj@microsoft.com**20100108084740
2413 Ignore-this: c19dcc6ce888c5251170463475a1d19b
2414]
2415[Use "test -x" rather than "test -e"; fixes trac #3778
2416Ian Lynagh <igloo@earth.li>**20100103131127
2417 Solaris doesn't support -e
2418]
2419[Test Trac #3792
2420simonpj@microsoft.com**20100104220030
2421 Ignore-this: 332e960aa57e8b24e05290802b95779d
2422]
2423[Accept specialised function argument order change
2424simonpj@microsoft.com**20100104152252
2425 Ignore-this: 8a737ca0a2fc8e3928def8df3516c2db
2426]
2427[Complete test Trac #3772
2428simonpj@microsoft.com**20091224155017
2429 Ignore-this: bcfc0e627d563a60f89a396209e90135
2430]
2431[Add test Trac #3731
2432simonpj@microsoft.com**20091224155001
2433 Ignore-this: 5ff04c1ea68c646bd79ced99b54d2d4
2434]
2435[Accept output
2436simonpj@microsoft.com**20091224154712
2437 Ignore-this: dd7b7f358f827aec71543c74843799f1
2438]
2439[Add test for Trac #3772
2440simonpj@microsoft.com**20091224143349
2441 Ignore-this: c294eeba0a6c4c54934d543289ff13c6
2442]
2443[T1969: drop lower bound for max_bytes_used on x86/Linux
2444Simon Marlow <marlowsd@gmail.com>**20091231194006
2445 Ignore-this: 457515ace9e5ece4be2cd46172e390c9
2446]
2447[Add some hsc2hs tests
2448Ian Lynagh <igloo@earth.li>**20100102210655]
2449[Fix quoting for the apirecomp001 test
2450Ian Lynagh <igloo@earth.li>**20100101165106]
2451[Fix some test name collisions
2452Ian Lynagh <igloo@earth.li>**20100101140641]
2453[Fix some test name collisions
2454Ian Lynagh <igloo@earth.li>**20100101135755]
2455[Fix a test name collision
2456Ian Lynagh <igloo@earth.li>**20100101134722]
2457[typo
2458Ian Lynagh <igloo@earth.li>**20100101134557]
2459[Fix some test name collisions
2460Ian Lynagh <igloo@earth.li>**20100101134144]
2461[Fix some test name collisions
2462Ian Lynagh <igloo@earth.li>**20100101133702]
2463[Fix some test naem collisions
2464Ian Lynagh <igloo@earth.li>**20100101133531]
2465[Fix some test name collisions
2466Ian Lynagh <igloo@earth.li>**20100101132814]
2467[Fix some test name collisions
2468Ian Lynagh <igloo@earth.li>**20100101132159]
2469[Fix some test name collisions
2470Ian Lynagh <igloo@earth.li>**20100101131743]
2471[Give more info in the testsuite output
2472Ian Lynagh <igloo@earth.li>**20100101130709]
2473[Check for duplicate test names, and report them as framework failures
2474Ian Lynagh <igloo@earth.li>**20100101123207]
2475[Test Trac #3776
2476simonpj@microsoft.com**20091221145155
2477 Ignore-this: 6da368e3ec0665d75371f7b194c957bc
2478]
2479[Add test for Trac #3245
2480simonpj@microsoft.com**20091218164740
2481 Ignore-this: 139f702cdd7e6ceaf4b040cd1ac62285
2482]
2483[accept output (better SrcLocs for lexer errors)
2484Simon Marlow <marlowsd@gmail.com>**20091221105853
2485 Ignore-this: e9b5577cc7cef3717f44b1ededd891b0
2486]
2487[add test for #3751
2488Simon Marlow <marlowsd@gmail.com>**20091217103719
2489 Ignore-this: 4ea7b2ac894242efa4b6b26f30002995
2490]
2491[Fix broken python syntax
2492Ian Lynagh <igloo@earth.li>**20091219171956]
2493[Add you more clean_cmd's
2494Ian Lynagh <igloo@earth.li>**20091219171108]
2495[Add some more clean_cmd's
2496Ian Lynagh <igloo@earth.li>**20091219165603]
2497[Refactor the cleaning code
2498Ian Lynagh <igloo@earth.li>**20091219165145]
2499[Remove unused clean_o_hi function
2500Ian Lynagh <igloo@earth.li>**20091219165003]
2501[Add clean_cmd to the testsuite, and use it in bug1465
2502Ian Lynagh <igloo@earth.li>**20091219164708]
2503[Remove debugging print
2504Ian Lynagh <igloo@earth.li>**20091219164331]
2505[Fix cleaning annrun01
2506Ian Lynagh <igloo@earth.li>**20091219154908]
2507[Add pre-command support to the testsuite, and fix annrun01 by using it
2508Ian Lynagh <igloo@earth.li>**20091219154502]
2509[Remove no-longer-used files
2510Ian Lynagh <igloo@earth.li>**20091218215745]
2511[Fix driver016,driver019,driver028
2512Ian Lynagh <igloo@earth.li>**20091218214802]
2513[Allow tests to behave differently depending on whether the compiler is in-tree
2514Ian Lynagh <igloo@earth.li>**20091218200358
2515 And skip testwsdeque if it is not in-tree, as we rely on some headers
2516 from the build tree.
2517]
2518[Remove a test for GHC < 6.11
2519Ian Lynagh <igloo@earth.li>**20091218195946]
2520[Update output
2521simonpj@microsoft.com**20091216165405
2522 Ignore-this: 1a4bf5cbe06aa347a11d173c90368e74
2523]
2524[Add test for applying specialisations inside InlineRules
2525simonpj@microsoft.com**20091216165352
2526 Ignore-this: a5514ebd31dfb2df2b042b603c19008b
2527]
2528[Test Trac #3717
2529simonpj@microsoft.com**20091216083323
2530 Ignore-this: 39238086fa5faf12d75bc533c7ad3b92
2531]
2532[Add test for type families, discovered by Roman
2533simonpj@microsoft.com**20091211122644
2534 Ignore-this: 82ee6c77a2bd741185ae01d94c4eb694
2535 
2536 Tests this patch:
2537 
2538   Fri Dec 11 12:01:22 GMT 2009  simonpj@microsoft.com
2539     * Fix two related bugs in u_tys
2540     
2541     When we normalise a type family application we must recursively call
2542     uTys, *not* 'go', because the latter loop is only there to look
2543     through type synonyms.  This bug made the type checker generate
2544     ill-typed coercions, which were rejected by Core Lint.
2545     
2546     A related bug only affects the size of coercions.  If faced with
2547       (m a) ~ (F b c)
2548     where F has arity 1, we want to decompose to
2549        m ~ F Int,  a ~ c
2550     rather than deferring.  The application decomposition was being
2551     tried last, so we were missing this opportunity.
2552]
2553[Tweak T3234 test and accept output
2554Ian Lynagh <igloo@earth.li>**20091215215340
2555 The test now suppresses uniques to avoid spurious changes in the output
2556]
2557[Accept output for T2486
2558Ian Lynagh <igloo@earth.li>**20091215215230]
2559[Tweak rule2 test and accept output
2560Ian Lynagh <igloo@earth.li>**20091215215020
2561 The test now suppresses uniques to avoid spurious changes in the output
2562]
2563[Decouple ghcpkg02 from the GHC build tree
2564Ian Lynagh <igloo@earth.li>**20091211215319]
2565[use a smaller stack limit for conc012(ghci)
2566Simon Marlow <marlowsd@gmail.com>**20091211094439
2567 Ignore-this: 48fee0dc80d6eb4d6370a451428030e6
2568]
2569[add test for #3742
2570Simon Marlow <marlowsd@gmail.com>**20091210124518
2571 Ignore-this: 60cea81bfbb8858702ae426142943f8
2572]
2573[add test for #3741
2574Simon Marlow <marlowsd@gmail.com>**20091210123354
2575 Ignore-this: aa00e7cbe59c34682516ac6849735b9d
2576]
2577[update expected value comments
2578Simon Marlow <marlowsd@gmail.com>**20091208141558
2579 Ignore-this: 67c22cc48656e7f955dd57a44f0c218e
2580]
2581[Fix quoting, and add some sanity checking
2582Ian Lynagh <igloo@earth.li>**20091209194521]
2583[Fix typos
2584Ian Lynagh <igloo@earth.li>**20091209190239]
2585[accept output (column numbers)
2586Simon Marlow <marlowsd@gmail.com>**20091208093207
2587 Ignore-this: 9ad2a53c9c34136f9a017040dd0be8a3
2588]
2589[accept output
2590Simon Marlow <marlowsd@gmail.com>**20091208091240
2591 Ignore-this: 93a72b8d9fa234e0c3476508dfb492dc
2592]
2593[Add output for T3102
2594simonpj@microsoft.com**20091207155644
2595 Ignore-this: 26a02326560e4c1c7e04126d28674dab
2596]
2597[Track error message changes for deriving
2598simonpj@microsoft.com**20091207130720
2599 Ignore-this: 254a66c5a42013393fac04c9a7b28ff1
2600]
2601[Test Trac #3012
2602simonpj@microsoft.com**20091207080303
2603 Ignore-this: 2ac253ce2a38488847286308643053f2
2604]
2605[Add another layout test
2606Ian Lynagh <igloo@earth.li>**20091205143631]
2607[Add another layout test
2608Ian Lynagh <igloo@earth.li>**20091205143228]
2609[Add another layout test
2610Ian Lynagh <igloo@earth.li>**20091205142902]
2611[Add another layout rule test
2612Ian Lynagh <igloo@earth.li>**20091205142413]
2613[Add another layout test
2614Ian Lynagh <igloo@earth.li>**20091205141351]
2615[Add a test for the difference between the H98 and the alternative layout rules
2616Ian Lynagh <igloo@earth.li>**20091205140933]
2617[Accept column change output in break021
2618Ian Lynagh <igloo@earth.li>**20091203143326]
2619[Accept output for break020
2620Ian Lynagh <igloo@earth.li>**20091203135642
2621 It now gets the columns right for the highlighting
2622]
2623[Add test for a loop in the simplifier
2624simonpj@microsoft.com**20091130144716
2625 Ignore-this: 8eee799e9b3a1aef88e40d163a46a73e
2626]
2627[Test Trac #3100
2628simonpj@microsoft.com**20091130144314
2629 Ignore-this: fbc050a60b29e474308a1096cd1bb76d
2630]
2631[fix driver033
2632Simon Marlow <marlowsd@gmail.com>**20091202150723
2633 Ignore-this: 121fdb538938be37d4d6ba36b75c354d
2634]
2635[add a test for #414
2636Simon Marlow <marlowsd@gmail.com>**20091130120404
2637 Ignore-this: 11d4a89e43473fabc1ee6f1e6a57ff5d
2638]
2639[add a test for #3677
2640Simon Marlow <marlowsd@gmail.com>**20091130112508
2641 Ignore-this: 5ccd81e580a6d245d69d6e8e01eb3243
2642]
2643[Fix cabal03
2644Ian Lynagh <igloo@earth.li>**20091129180625]
2645[In cabal03, don't register --inplace
2646Ian Lynagh <igloo@earth.li>**20091129180402
2647 This means it ignores the package database we tell it to use.
2648 Instead, do a normal register, but pass --force so it doesn't fail
2649 due to missing files.
2650]
2651[Tweak cabal03 test
2652Ian Lynagh <igloo@earth.li>**20091129180130]
2653[Add a missing package-db flag from cabal03
2654Ian Lynagh <igloo@earth.li>**20091129174833]
2655[Refactor the cabal03 test
2656Ian Lynagh <igloo@earth.li>**20091129173339]
2657[ghcpkg01: Follow Cabal changes
2658Ian Lynagh <igloo@earth.li>**20091129173106]
2659[Make more cabal tests run 'alone'
2660Ian Lynagh <igloo@earth.li>**20091129121350]
2661[Make 1372 use a local package database
2662Ian Lynagh <igloo@earth.li>**20091129120526
2663 Eliminates random failures when it's run in parallel with other tests
2664]
2665[Make bug1465 use a local package.conf
2666Ian Lynagh <igloo@earth.li>**20091129114552
2667 Eliminates random failures when it runs in parallel with other tests
2668]
2669[Make driver200 parallelisable
2670Ian Lynagh <igloo@earth.li>**20091128235452]
2671[Make 2566 parallelisable
2672Ian Lynagh <igloo@earth.li>**20091128235354]
2673[Remove now-unused cleanall function
2674Ian Lynagh <igloo@earth.li>**20091128235322]
2675[Make driver081* parallelisable
2676Ian Lynagh <igloo@earth.li>**20091128235220]
2677[driver100 doesn't need to be run alone
2678Ian Lynagh <igloo@earth.li>**20091128234812]
2679[Make driver080 parallelisable
2680Ian Lynagh <igloo@earth.li>**20091128234315]
2681[Make driver063 parallelisable
2682Ian Lynagh <igloo@earth.li>**20091128234055]
2683[Make more driver tests parallelisable
2684Ian Lynagh <igloo@earth.li>**20091128233708]
2685[Remove some unnecessary 'alone' calls
2686Ian Lynagh <igloo@earth.li>**20091128231738]
2687[Make driver062* parallelisable
2688Ian Lynagh <igloo@earth.li>**20091128231420]
2689[Make driver061* parallelisable
2690Ian Lynagh <igloo@earth.li>**20091128230329]
2691[Make driver060 parallelisable
2692Ian Lynagh <igloo@earth.li>**20091128225804]
2693[Make driver053 parallelisable
2694Ian Lynagh <igloo@earth.li>**20091128225358]
2695[Make driver052 parallelisable
2696Ian Lynagh <igloo@earth.li>**20091128225153]
2697[Make driver051 parallelisable
2698Ian Lynagh <igloo@earth.li>**20091128224704]
2699[Make driver045 parallelisable
2700Ian Lynagh <igloo@earth.li>**20091128224155]
2701[Make driver044 parallelisable
2702Ian Lynagh <igloo@earth.li>**20091128223850]
2703[Make driver043 parallelisable
2704Ian Lynagh <igloo@earth.li>**20091128223708]
2705[Make driver042 parallelisable
2706Ian Lynagh <igloo@earth.li>**20091128223501]
2707[Add some extra cleaning for driver033
2708Ian Lynagh <igloo@earth.li>**20091128223156]
2709[Make driver041 parallelisable
2710Ian Lynagh <igloo@earth.li>**20091128222953]
2711[Make driver035 parallelisable
2712Ian Lynagh <igloo@earth.li>**20091128222712]
2713[Make driver034 parallelisable
2714Ian Lynagh <igloo@earth.li>**20091128222402]
2715[Make driver032 and driver033 parallelisable
2716Ian Lynagh <igloo@earth.li>**20091128222110]
2717[Make driver031 parallelisable
2718Ian Lynagh <igloo@earth.li>**20091128221840]
2719[Make driver028 parallelisable
2720Ian Lynagh <igloo@earth.li>**20091128221704]
2721[Make driver027 parallelisable
2722Ian Lynagh <igloo@earth.li>**20091128221637]
2723[Make driver026 parallelisable
2724Ian Lynagh <igloo@earth.li>**20091128215610]
2725[Make driver025 parallelisable
2726Ian Lynagh <igloo@earth.li>**20091128214556]
2727[Make driver024a parallelisable
2728Ian Lynagh <igloo@earth.li>**20091128214322]
2729[Make driver022 and driver023 parallelisable
2730Ian Lynagh <igloo@earth.li>**20091128213834]
2731[Make driver021 parallelisable
2732Ian Lynagh <igloo@earth.li>**20091128213625]
2733[Make driver024 parallelisable
2734Ian Lynagh <igloo@earth.li>**20091128213022]
2735[Make driver019 parallelisable
2736Ian Lynagh <igloo@earth.li>**20091128212154]
2737[Make driver018* parallelisable
2738Ian Lynagh <igloo@earth.li>**20091128212029]
2739[Make driver017 parallelisable
2740Ian Lynagh <igloo@earth.li>**20091128211842]
2741[Make driver016 parallelisable
2742Ian Lynagh <igloo@earth.li>**20091128211816]
2743[Make driver014 and driver015 parallelisable
2744Ian Lynagh <igloo@earth.li>**20091128210459]
2745[Make driver013 parallelisable
2746Ian Lynagh <igloo@earth.li>**20091128210204]
2747[Make driver012 parallelisable
2748Ian Lynagh <igloo@earth.li>**20091128210041]
2749[Make driver011 parallelisable
2750Ian Lynagh <igloo@earth.li>**20091128205850]
2751[Make the driver/ tests declare themselves 'alone' individually
2752Ian Lynagh <igloo@earth.li>**20091128205533
2753 This way we can fix them one by one
2754]
2755[Print out how many tests we have done and the total when we run a test
2756Ian Lynagh <igloo@earth.li>**20091128181104
2757 This isn't perfect, as it doesn't account for tests that will be skipped
2758 in the total. But that's hard to work out, as we might skip a test in
2759 only some ways and we currently don't work out which ways to run it until
2760 later, so I think this is good enough for now.
2761]
2762[Gather all tests at once, rather than doing them directory by directory
2763Ian Lynagh <igloo@earth.li>**20091128180207
2764 This increases the parallelism possible, and allows us to track what
2765 progress we are making.
2766]
2767[Follow column number changes now that SrcLoc knows how tabs work
2768Ian Lynagh <igloo@earth.li>**20091128153543]
2769[Add some tests for error positions
2770Ian Lynagh <igloo@earth.li>**20091128150625]
2771[Follow column number changes
2772Ian Lynagh <igloo@earth.li>**20091128145450]
2773[Remove some @s from a Makefile
2774Ian Lynagh <igloo@earth.li>**20091128144830]
2775[Quoting fixes
2776Ian Lynagh <igloo@earth.li>**20091128144802]
2777[Follow column number changes in the break016 script
2778Ian Lynagh <igloo@earth.li>**20091128125754]
2779[Accept changes in break016 and break020
2780Ian Lynagh <igloo@earth.li>**20091128125439]
2781[Follow column number changes
2782Ian Lynagh <igloo@earth.li>**20091128005352]
2783[Follow column number changes in indexed-types/should_fail
2784Ian Lynagh <igloo@earth.li>**20091128001749]
2785[Follow column number changes in deriving/should_fail
2786Ian Lynagh <igloo@earth.li>**20091128001535]
2787[Follow column number changes in module
2788Ian Lynagh <igloo@earth.li>**20091128000900]
2789[Follow column number changes in rename/should_fail
2790Ian Lynagh <igloo@earth.li>**20091128000255]
2791[Follow column number changes in parser/should_fail
2792Ian Lynagh <igloo@earth.li>**20091127235453]
2793[Follow column number changes in tcfail
2794Ian Lynagh <igloo@earth.li>**20091127233405]
2795[rtsflags001: run only the normal way
2796Simon Marlow <marlowsd@gmail.com>**20091124102523]
2797[add 32-bit output
2798Simon Marlow <marlowsd@gmail.com>**20091124102456]
2799[ffi005: run only the via-C way on x86 platforms
2800Simon Marlow <marlowsd@gmail.com>**20091124101434
2801 due to 80-bit vs. 64-bit precision leading to floating point
2802 differences when using the native code generator.  -fvia-C uses the
2803 -ffloat-store gcc sledgehammer to avoid this.
2804]
2805[grab the target architecture from GHC, and add an if_arch() test
2806Simon Marlow <marlowsd@gmail.com>**20091124101223]
2807[Follow changes in tcfail073
2808Ian Lynagh <igloo@earth.li>**20091124001804]
2809[Follow changes in ghci011
2810Ian Lynagh <igloo@earth.li>**20091124001658]
2811[Make test 1959 even more informative when run by hand
2812Ian Lynagh <igloo@earth.li>**20091123212719]
2813[Fix test 1959
2814Ian Lynagh <igloo@earth.li>**20091123212708]
2815[Make test 1959 tell us what's going on
2816Ian Lynagh <igloo@earth.li>**20091123212535]
2817[Tweak testsuite results for 6.12 branch
2818Ian Lynagh <igloo@earth.li>**20091122161944]
2819[add a test for #3633
2820Simon Marlow <marlowsd@gmail.com>**20091120145056
2821 Ignore-this: 2bc645eefce88143d218447b0955f430
2822]
2823[accept output (for the time being)
2824Simon Marlow <marlowsd@gmail.com>**20091120143156
2825 Ignore-this: 2d0df30f243b6f22c23f1b9b522f7336
2826 the test output has changed due to differences in the compiled code
2827 for GHC.IO.Exception.ioError.
2828]
2829[make this test do what it was supposed to do
2830Simon Marlow <marlowsd@gmail.com>**20091120142907
2831 Ignore-this: 8f555308e8570e956e749f734b5ee7e
2832]
2833[accept output
2834Simon Marlow <marlowsd@gmail.com>**20091120102108
2835 Ignore-this: a500f2797238168afdbbd42fbf00055b
2836]
2837[add missing files
2838Simon Marlow <marlowsd@gmail.com>**20091117161023
2839 Ignore-this: aabd4f258ec4293682213d50dab5b555
2840]
2841[Bump the ulimits for outofmem/outofmem2
2842Simon Marlow <marlowsd@gmail.com>**20091117160230
2843 Ignore-this: fe6981dd4419219422b9459b044256ea
2844 They just started failing on x86-64/Linux here, no idea why.
2845]
2846[Accept wobbles in error messages
2847simonpj@microsoft.com**20091117125024
2848 Ignore-this: 8ab65ba7fb0d8a263ea4bef48daf292a
2849]
2850[Test for higher rank rules
2851simonpj@microsoft.com**20091117124949
2852 Ignore-this: 6b21f072e61968110e2395c8426eeb95
2853]
2854[fix framework failure
2855Simon Marlow <marlowsd@gmail.com>**20091113112345
2856 Ignore-this: e993d787a36d8394297fc3a2fc0e061c
2857]
2858[add test for #3586 (newArray performance)
2859Simon Marlow <marlowsd@gmail.com>**20091112144020
2860 Ignore-this: 9eaa959836eef25d55ec3d1025de1c26
2861]
2862[Rearrange perf-related tests
2863Simon Marlow <marlowsd@gmail.com>**20091112143943
2864 Ignore-this: 23349e39f3fca86494e6971fbfb3eaa0
2865 
2866   perf/            -- performance tests...
2867   perf/should_run  -- for generated code
2868   perf/compiler    -- for GHC itself
2869   perf/space_leaks -- for space leaks in generated code or the RTS
2870]
2871[Add coercion test for PushC rule
2872simonpj@microsoft.com**20091112115950
2873 Ignore-this: 6d01514c9f3c3b0210fccfdca039705c
2874]
2875[Fix setting of utf8 locale on Mac OS X
2876Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20091112002857
2877 Ignore-this: 7d710c5f8030ba0f572bb3888d983227
2878]
2879[add test for #3624
2880Simon Marlow <marlowsd@gmail.com>**20091109144626
2881 Ignore-this: 99aaae47f6ce6773e550f335cad7a527
2882]
2883[Track trace output
2884simonpj@microsoft.com**20091109104246
2885 Ignore-this: 28a01cf22284bb06ed1cf83c569d735d
2886]
2887[Fix finding GHC on cygwin
2888Ian Lynagh <igloo@earth.li>**20091107133429]
2889[Add test for Trac #3640
2890simonpj@microsoft.com**20091105172220
2891 Ignore-this: 95a5568df1f36a55f55290a1481319e9
2892]
2893[Track changes in duplicate/shadowed errors
2894simonpj@microsoft.com**20091105171343
2895 Ignore-this: f89d13fa61bf1b206fac1d2998a6d17a
2896]
2897[Fix quoting in the 3171 test
2898Ian Lynagh <igloo@earth.li>**20091105171455]
2899[Fix the code to append .exe to program paths
2900Ian Lynagh <igloo@earth.li>**20091105163040]
2901[The bindisttest GHC is now always in the same directory
2902Ian Lynagh <igloo@earth.li>**20091105160718
2903 We therefore don't have to try to work out if we are on Windows or not
2904 in order to find it.
2905]
2906[Add source file for T3234
2907simonpj@microsoft.com**20091105113934
2908 Ignore-this: 58931497be31da47de18d32fb053d42a
2909]
2910[Test Trac #3234 (foldr/single rule)
2911simonpj@microsoft.com**20091103155057
2912 Ignore-this: f6e41f8eb01de107ebc4dcd91e8fd70c
2913]
2914[Add test for Trac #1735
2915simonpj@microsoft.com**20091104230920
2916 Ignore-this: 8cccf608a2db46fe64f6ca465e42333d
2917]
2918[add test for #3604 (template-haskell + -dynamic)
2919Simon Marlow <marlowsd@gmail.com>**20091104141623
2920 Ignore-this: 3e97399bfcc83ad991844a18dba49d3b
2921]
2922[add config.have_shared_libs
2923Simon Marlow <marlowsd@gmail.com>**20091104141602
2924 Ignore-this: 56d5180cfb2c398b68b1b4509856a6be
2925]
2926[add a test for single-stepping over getArgs
2927Simon Marlow <marlowsd@gmail.com>**20091103165423
2928 Ignore-this: dff2b0f4825234a32057e42ba4d3f4e8
2929]
2930[Only run T3294 if we have an NCG (#3548)
2931Simon Marlow <marlowsd@gmail.com>**20091103121126
2932 Ignore-this: 87d6f9bfaa8557ce12a3c39a48ee7bc6
2933]
2934[Track change in how LANGUAGE-pragma errors are reported
2935simonpj@microsoft.com**20091102172730
2936 Ignore-this: 6524c82c2fcf1c2a401b5408543c35e6
2937]
2938[Add -fno-warn-deprecated-flags to tests involving -XImpredicativeTypes
2939simonpj@microsoft.com**20091102145236
2940 Ignore-this: 72073af560c642a2cba1b73af9c579b3
2941 
2942 Now that -XImpredicativeTypes is deprecated, suppress the warning
2943]
2944[Add test for Trac #3621
2945simonpj@microsoft.com**20091029164034
2946 Ignore-this: db06616aff863b98e32d03b2cd11543a
2947]
2948[Update tests for INLINE patch
2949simonpj@microsoft.com**20091029115217
2950 Ignore-this: 5e59b11610b5959be11870e23561652f
2951]
2952[Add stderr files for depreceated-mdo warnings
2953simonpj@microsoft.com**20091029110009
2954 Ignore-this: 44f66966feab44cbfcd7e353895b04db
2955]
2956[Add undecidable instance test
2957simonpj@microsoft.com**20091029100304
2958 Ignore-this: 1c11f13de056188af33846472a1e8176
2959]
2960[Don't use threads on Windows
2961Ian Lynagh <igloo@earth.li>**20091028175421
2962 It seems to cause some sort of deadlock
2963]
2964[Test Trac #3613, and track error message change
2965simonpj@microsoft.com**20091028154810
2966 Ignore-this: 424cdcc459da20dd84bd9c09e65da0de
2967]
2968[Track changes arising from improved location info in list comprehensions
2969simonpj@microsoft.com**20091028154735
2970 Ignore-this: f31abf18ad5fd5bbf28dd5389246efe
2971]
2972[Add test for 'rec' in do blocks
2973simonpj@microsoft.com**20091028154137
2974 Ignore-this: 5a661bcff3acdf7632169b21d6587670
2975]
2976[Update tests following deprecating mdo
2977simonpj@microsoft.com**20091028154027
2978 Ignore-this: ae1677b319abf946c5cc2a85f5c98aab
2979]
2980[Add missing stdout file for T3591
2981simonpj@microsoft.com**20091026092600
2982 Ignore-this: c3a14010a4c324e8b086c589f4e68245
2983]
2984[Update test so it does not use Control.Monad.Reader
2985simonpj@microsoft.com**20091026092332
2986 Ignore-this: 445bb58f3549572f2bbcaaf20d8e86b9
2987]
2988[Test Trac #3590
2989simonpj@microsoft.com**20091021153401
2990 Ignore-this: 3b84e69e7e0ecfc8c80de15a201773ae
2991]
2992[Always use the python timeout program on non-Windows
2993Ian Lynagh <igloo@earth.li>**20091025155424
2994 Use a python timeout program, so that we don't have to worry about
2995 whether or not the compiler we're testing has built the timeout
2996 program correctly
2997 
2998 The python timeout program doesn't work on mingw, so we still use the
2999 Haskell program on Windows
3000]
3001[Complete timeout.py's unix support
3002Ian Lynagh <igloo@earth.li>**20091025151821]
3003[More quoting fixes
3004Ian Lynagh <igloo@earth.li>**20091022000028]
3005[Quoting fixes
3006Ian Lynagh <igloo@earth.li>**20091021140545]
3007[Normalise slashes
3008Ian Lynagh <igloo@earth.li>**20091021124749]
3009[Quoting fixes
3010Ian Lynagh <igloo@earth.li>**20091021114723]
3011[Always use / to join paths; stops "make -C .\ clean" being misparsed
3012Ian Lynagh <igloo@earth.li>**20091021114601]
3013[Quoting fix
3014Ian Lynagh <igloo@earth.li>**20091021114048]
3015[Fix more path quoting
3016Ian Lynagh <igloo@earth.li>**20091021113037]
3017[Add more quoting for paths with spaces
3018Ian Lynagh <igloo@earth.li>**20091013154240]
3019[Test Trac #3591
3020simonpj@microsoft.com**20091020153719
3021 Ignore-this: 8959e243135e0afe1b37edef64a05e98
3022]
3023[renamed prof_ways -> extra_prof_ways to avoid clash
3024Simon Marlow <marlowsd@gmail.com>**20091020095920
3025 Ignore-this: 2e2bc6ea216af7c92100f4815e10289b
3026]
3027[Adapt test to avoid uniquies
3028simonpj@microsoft.com**20091020125421
3029 Ignore-this: 8b9d9862ce736edc00731dfd98ff61ec
3030]
3031[Test Trac #3600
3032simonpj@microsoft.com**20091020080443
3033 Ignore-this: 3bf6c6e3057e15fbc81b4cb4d7bbd190
3034]
3035[omit prof ways for ffi005
3036Simon Marlow <marlowsd@gmail.com>**20091016084735
3037 Ignore-this: 6f86586bd8619c2c8ef48edfb3453c26
3038]
3039[add classes of ways: prof_ways and threaded_ways
3040Simon Marlow <marlowsd@gmail.com>**20091016084722
3041 Ignore-this: 2cdf387557ed74ef3344afcd30666919
3042]
3043[tcfail188 compiles fine, now that Trac #959 is fixed
3044simonpj@microsoft.com**20091015122716
3045 Ignore-this: 9a48055e6190494263673b7b31eff349
3046]
3047[Test Trac #3263
3048simonpj@microsoft.com**20091015113930
3049 Ignore-this: dd25cdf88c0b3fa5d3208370330e925
3050]
3051[Test Trac #3572
3052simonpj@microsoft.com**20091015112954
3053 Ignore-this: c406dc59f283fb27e35ee893fcc48258
3054]
3055[re-enable ffi005 with the non-portable bits removed
3056Simon Marlow <marlowsd@gmail.com>**20091014135945
3057 Ignore-this: bae1ba5a6f9846feb43a164b85e63af4
3058]
3059[add a test for foreign import '&foo' with GHCi
3060Simon Marlow <marlowsd@gmail.com>**20091014135154
3061 Ignore-this: d67f40340cb8a5f3659d3fc82b6d8f29
3062]
3063[might as well make the finalizer do a callback to make the test more interesting
3064Simon Marlow <marlowsd@gmail.com>**20091014133651
3065 Ignore-this: d0cf65c656ac266205789b7fc8b3824a
3066]
3067[add test for #3579
3068Simon Marlow <marlowsd@gmail.com>**20091014103109
3069 Ignore-this: adec758a51a433cf8a0d52bcfa870236
3070]
3071[add test program from #3561
3072Simon Marlow <marlowsd@gmail.com>**20091013110835
3073 Ignore-this: 5db8e8f8c9e729e620953c69c8c67e4c
3074]
3075[Fix quoting in the testsuite timeout program's Makefile
3076Ian Lynagh <igloo@earth.li>**20091013144352]
3077[Define BIN_ROOT in a way that works if the path contains spaces
3078Ian Lynagh <igloo@earth.li>**20091013125358]
3079[Fix the config.timeout setting
3080Ian Lynagh <igloo@earth.li>**20091013124252]
3081[Add some diagnostics to timeout
3082Ian Lynagh <igloo@earth.li>**20091013124204]
3083[Switch back to a BIN_ROOT definition that works on all platforms
3084Ian Lynagh <igloo@earth.li>**20091013121846
3085 provided there are no spaces in the path
3086]
3087[Fixes for spaces in paths
3088Ian Lynagh <igloo@earth.li>**20091013115808]
3089[Fixes for paths containing spaces
3090Ian Lynagh <igloo@earth.li>**20091013113417]
3091[ghc is "ghc.exe", not "ghc", on Windows
3092Ian Lynagh <igloo@earth.li>**20091013110938]
3093[Fix the Windows detection in the testsuite Makefiles
3094Ian Lynagh <igloo@earth.li>**20091013110615
3095 We need to look at "ghc +RTS --info", not "ghc --info".
3096]
3097[T1074 needs mtl
3098Ian Lynagh <igloo@earth.li>**20091009225330]
3099[Tell the testsuite driver about the bindisttest GHC location
3100Ian Lynagh <igloo@earth.li>**20091009203043]
3101[Drop "NEW_BUILD_SYSTEM_" prefix on Makefile variable names
3102Ian Lynagh <igloo@earth.li>**20091009194209]
3103[Remove old build system support from the testsuite makefiles
3104Ian Lynagh <igloo@earth.li>**20091009193748]
3105[tweak T1969 values on x86-64
3106Simon Marlow <marlowsd@gmail.com>**20091008110545
3107 Ignore-this: 5ecf9b8e39bb22f6fab1764763c3a1cf
3108]
3109[Test -XExplicitForALl
3110simonpj@microsoft.com**20091007155725
3111 Ignore-this: 72391b90a12fbbd194897decb2d0f742
3112]
3113[tidy up
3114Simon Marlow <marlowsd@gmail.com>**20091006123420
3115 Ignore-this: a577ddd29deb53d86f2718190d33562f
3116]
3117[Add a test for shadowing/overlapping packages with Cabal
3118Simon Marlow <marlowsd@gmail.com>**20091006123415
3119 Ignore-this: e184a9a859af6e13b1c378462d9e402
3120]
3121[the threaded2 way tests event logging too
3122Simon Marlow <marlowsd@gmail.com>**20090930084841
3123 Ignore-this: 64146a607ace4508fea4e5999067204c
3124]
3125[Fix #3551: conc0{69,70} should be skipped when -threaded is not available
3126Simon Marlow <marlowsd@gmail.com>**20090929145526
3127 Ignore-this: baa4b7199433f7684cfbad247be89283
3128]
3129[Tweak tcrun007 to not depend on syb
3130Ian Lynagh <igloo@earth.li>**20091003212610]
3131[Update tests; ghc is a bit more consistent about flags
3132simonpj@microsoft.com**20091002072021
3133 Ignore-this: 7441d47cd9ce86d45bf1d1eeb8c4d8ea
3134]
3135[Track error message changes
3136simonpj@microsoft.com**20090930110742
3137 Ignore-this: cac29e62d8f2e0a6293db4969ad9e8c3
3138]
3139[Test Trac #3540
3140simonpj@microsoft.com**20090930110712
3141 Ignore-this: 1329e8d3902ccf4080c3f4dfe4c90b9d
3142]
3143[tweak the boundaries for T1969 (we got better)
3144Simon Marlow <marlowsd@gmail.com>**20090929113638
3145 Ignore-this: 44b2b0d767aa942724115b4f3bf7a8a6
3146]
3147[wibbles to setting LC_ALL, trying to fix buildbot test failures
3148Simon Marlow <marlowsd@gmail.com>**20090929090410
3149 Ignore-this: ea290fa166ce8ff81bff95c928404453
3150]
3151[tweak acceptable limits for T3294
3152Simon Marlow <marlowsd@gmail.com>**20090928133758
3153 Ignore-this: 669aa7582240e174bc705e2ac72b3d21
3154]
3155[Tweak tcfail163 to not need syb
3156Ian Lynagh <igloo@earth.li>**20090922215149]
3157[tc191 and tc220 need syb
3158Ian Lynagh <igloo@earth.li>**20090922215017]
3159[Tweak ds055 to not need syb
3160Ian Lynagh <igloo@earth.li>**20090922214835]
3161[drvrun022 needs syb
3162Ian Lynagh <igloo@earth.li>**20090922214543]
3163[Tweak deriving-1935 to not need syb
3164Ian Lynagh <igloo@earth.li>**20090922214439]
3165[Move syb tests from the testsuite repo to the syb repo
3166Ian Lynagh <igloo@earth.li>**20090922212525]
3167[T3087 need syb
3168Ian Lynagh <igloo@earth.li>**20090922212502]
3169[Tweak T2573 to not need syb
3170Ian Lynagh <igloo@earth.li>**20090922210550]
3171[Tweak T2394 to not need syb
3172Ian Lynagh <igloo@earth.li>**20090922205045]
3173[Tweak T2378 to not need syb
3174Ian Lynagh <igloo@earth.li>**20090922204936]
3175[arith008(dyn) and arith012(dyn) are expected failures on x86
3176Simon Marlow <marlowsd@gmail.com>**20090918125134]
3177[add test for #2881
3178Simon Marlow <marlowsd@gmail.com>**20090918124532
3179 Ignore-this: 253d872d99e5caa568b63639bdfb70c9
3180]
3181[expand the test for shadowing to include overriding with -package-id
3182Simon Marlow <marlowsd@gmail.com>**20090917120250
3183 Ignore-this: d1499b3bb7e693817b83fc10bdd2d395
3184]
3185[Fix runtests.py for Python 2.6.1
3186Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20090917105117
3187 Ignore-this: 11f9aaab6c3e93bca0bff3e8b3603f04
3188 - This is the version of Python that comes with Snow Leopard
3189]
3190[accept output
3191Simon Marlow <marlowsd@gmail.com>**20090914134844
3192 Ignore-this: ce62cebb1bc44889a027ea4d2ee89fb2
3193]
3194[use "ghc-pkg init" to create databases, and update test output
3195Simon Marlow <marlowsd@gmail.com>**20090914105851
3196 Ignore-this: 89cd71a2cf2ffaca6fcd9da44dde69bd
3197]
3198[add a test for the NCG space leak I found while looking at #3294
3199Simon Marlow <marlowsd@gmail.com>**20090914105002]
3200[update to not require -fglasgow-exts
3201Simon Marlow <marlowsd@gmail.com>**20090911134243
3202 Ignore-this: c779a91dc6adff182ca415cc0650ccef
3203]
3204[remove -fglasgow-exts
3205Simon Marlow <marlowsd@gmail.com>**20090911125732
3206 Ignore-this: 75112c664be1e5329bb0928beff4e061
3207]
3208[Use +RTS -I0.1 -RTS for ghci tests
3209Simon Marlow <marlowsd@gmail.com>**20090911125702
3210 Ignore-this: 642db417f7460a307819cb2b12d700b2
3211 Now that GHCi has a longer default idle GC time
3212]
3213[Update tests to not rely on -fglasgow-exts
3214Simon Marlow <marlowsd@gmail.com>**20090911125458
3215 Ignore-this: 31ad4e4ef43cf9d9519b9390bfae66cb
3216]
3217[make this test more robust, don't depend on the format of package.conf
3218Simon Marlow <marlowsd@gmail.com>**20090911132255
3219 Ignore-this: 4f724d35ff62505a9ece79e57aba17c6
3220]
3221[accept output
3222Simon Marlow <marlowsd@gmail.com>**20090911090801
3223 Ignore-this: 22a874484c7e6d8778bc9cb9efd16f1
3224]
3225[Test nested splices: TH_NestedSplices
3226simonpj@microsoft.com**20090911090629
3227 Ignore-this: 7de5c9bb9f09d608a6c53d99ab8deb69
3228]
3229[Follow TH changes
3230simonpj@microsoft.com**20090910132948
3231 Ignore-this: 97e9d3ff4fc76e17433ea8b0098b504f
3232]
3233[Track changes in error message format (TH related)
3234simonpj@microsoft.com**20090910132238
3235 Ignore-this: f5603863af6f74d3b962bff67b1186dc
3236]
3237[Update output
3238simonpj@microsoft.com**20090910131048
3239 Ignore-this: 71335c64b8afa855886336f01e049f80
3240]
3241[Add test for empty data declarations
3242simonpj@microsoft.com**20090904135719
3243 Ignore-this: 81132b905e487c41cb0b20d043b230e4
3244 
3245 Test some modest extensions of empty data decls:
3246    data T1 :: * -> *
3247    data T2 :: * where
3248 
3249]
3250[Test Trac #3467
3251simonpj@microsoft.com**20090830220420
3252 Ignore-this: e1b511a4462bfbdfa9d44219a5d0e2fd
3253]
3254[Add output for T3403
3255simonpj@microsoft.com**20090910123153
3256 Ignore-this: 79feb3a6aafc4f1665ee66762967e0c0
3257]
3258[update tests following package-related changes in GHC/ghc-pkg
3259Simon Marlow <marlowsd@gmail.com>**20090910115403
3260 Ignore-this: ab12e0e5e335473e8cfad1603674ed78
3261]
3262[Make this test a little more stable
3263Matthias Kilian <kili@outback.escape.de>**20090829102358
3264 Ignore-this: b6e4f541193b785410af602eeb6816aa
3265 
3266 On slow machines, ghci can take more than one second to launch,
3267 which produces confusing failure output like
3268 
3269 +cat: 3171.pid: No such file or directory
3270 +usage: kill [-s signame | -signum | -signame] { job | pid | pgrp } ...
3271 +       kill -l [exit_status ...]
3272 
3273 Fix this by
3274 
3275 1) increasing the time before sending a SIGINT from 1 to 2 seconds,
3276 2) running the test program in the background and asking the shell for
3277    its pid instead of relying on the program to write the pid file
3278    quick enough.
3279 
3280 Of course you'll still see failures on *very* slow or overloaded
3281 machines; that would probably a stderr diff like `-Interrupted'.
3282 
3283]
3284[expect_broken(3498): unicode output doesn't work on Windows (yet)
3285Simon Marlow <marlowsd@gmail.com>**20090909132447
3286 Ignore-this: 86ff6937b615cb332080abb30d51e1ca
3287]
3288[accept output
3289Simon Marlow <marlowsd@gmail.com>**20090908145608
3290 Ignore-this: a4e321a6312d0a971ae004fb6c37a1ce
3291]
3292[add a test for package shadowing
3293Simon Marlow <marlowsd@gmail.com>**20090906112234
3294 Ignore-this: c67c26ca3ff1fa84795400583270a075
3295]
3296[Test Trac #3403
3297simonpj@microsoft.com**20090908131728
3298 Ignore-this: 28d36facd5b29885e35cf7e03ee2fed6
3299]
3300[Test Trac #3468
3301simonpj@microsoft.com**20090908125744
3302 Ignore-this: e4647da95ea2a7bcb4f48cb6cddc8bbd
3303]
3304[tweak the values on x86-64/Linux (max_bytes_used improved)
3305Simon Marlow <marlowsd@gmail.com>**20090908103124
3306 Ignore-this: 68d835bf9cedeaed558e9031242ac601
3307]
3308[omit various non-optimised ways for space_leak_001
3309Simon Marlow <marlowsd@gmail.com>**20090908102828
3310 Ignore-this: 5ee32992a22c97ce9934f41afd572c86
3311]
3312[accept output
3313Simon Marlow <marlowsd@gmail.com>**20090908102234
3314 Ignore-this: 9a27198973ff8b24babd4dfd91095f31
3315]
3316[omit prof ways for ffi020
3317Simon Marlow <marlowsd@gmail.com>**20090908102043
3318 Ignore-this: aa413ce3f4870f362d94761dd6059755
3319]
3320[Use a stable ordering of the export list
3321Simon Marlow <marlowsd@gmail.com>**20090908101607
3322 Ignore-this: 45889cb9ad7add61a8f2327f22274c3
3323]
3324[T3391: omit profc, profasm
3325Simon Marlow <marlowsd@gmail.com>**20090908100123
3326 Ignore-this: 40c4326534af9123fd2fa570db07c49f
3327]
3328[follow changes from #3310
3329Simon Marlow <marlowsd@gmail.com>**20090830153325
3330 Ignore-this: 670b7c1ef02114a8d8ceb3f0698d49
3331]
3332[fix a bug: the sequence was incorrect, rather than incomplete
3333Simon Marlow <marlowsd@gmail.com>**20090829173621
3334 Ignore-this: 102cebecb218e2df8df33d46576810fd
3335]
3336[update ghc-pkg tests following the addition of installedPackageId
3337Simon Marlow <marlowsd@gmail.com>**20090825075513
3338 Ignore-this: 11e93fe86f380719a29acfaf7b5356b6
3339]
3340[follow change in Cabal: package -> sourcePackageId
3341Simon Marlow <marlowsd@gmail.com>**20090825075134
3342 Ignore-this: a8a6691cebf577efcb788fdb771e6f5a
3343]
3344[Test Trac #3406
3345simonpj@microsoft.com**20090825073011
3346 Ignore-this: 41fbfb08f09cfffae469f0b8fd44a54b
3347]
3348[add extra_clean for T3286
3349Simon Marlow <marlowsd@gmail.com>**20090824091047
3350 Ignore-this: 45f1ed1ca4d9ddeb6851eb71fcc75da0
3351]
3352[TFs: T3423 was missing -XFlexibleInstances
3353Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20090824025100
3354 Ignore-this: 748adedd772e71de8ce6ef2923275c7b
3355]
3356[TFs: T3220
3357Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20090824024755
3358 Ignore-this: 3032db152dd0668bb1f2f39d8d50b7f
3359]
3360[Test Trac #2850
3361simonpj@microsoft.com**20090821211351
3362 Ignore-this: 55733f9b3a70231c38a8aeda2606dd89
3363]
3364[Test Trac #3423
3365simonpj@microsoft.com**20090821210544
3366 Ignore-this: 6fefeb3dfa3fdb3d263b9c4d420792ff
3367]
3368[Use the dynamic way if we have a dynamic RTS
3369Ian Lynagh <igloo@earth.li>**20090821153355]
3370[Add a dynamic hello world test, that gets run during validate
3371Ian Lynagh <igloo@earth.li>**20090821153314]
3372[Test Trac #3371
3373simonpj@microsoft.com**20090821100750
3374 Ignore-this: 2f20fa7f0cc2332f35cb3240638a7589
3375]
3376[Test Trac #3437
3377simonpj@microsoft.com**20090821095347
3378 Ignore-this: e3f80cd609ddf79b2b245e7c848bb005
3379]
3380[Track wording changes in error messages
3381simonpj@microsoft.com**20090820162121
3382 Ignore-this: cc430b5e53ee4c284655b0aea40d6ce6
3383]
3384[add the test from #3424
3385Simon Marlow <marlowsd@gmail.com>**20090820145325
3386 Ignore-this: 88bc0b2e548875961b69400fa724f0a
3387]
3388[follow changes in the base package
3389Simon Marlow <marlowsd@gmail.com>**20090819142958
3390 Ignore-this: cb7b532ad97a6048c487376771ff401f
3391]
3392[accept output
3393Simon Marlow <marlowsd@gmail.com>**20090819142333
3394 Ignore-this: 9f6d0bebea8626427860ae3295239d8c
3395]
3396[Update output
3397simonpj@microsoft.com**20090820123151
3398 Ignore-this: 4f4cb42b35ca820a0039406b437b1be2
3399]
3400[accept output
3401Simon Marlow <marlowsd@gmail.com>**20090819142418]
3402[add threaded2_qw way, which is threaded2 with +RTS -qw
3403Simon Marlow <marlowsd@gmail.com>**20090819130704
3404 Ignore-this: de00b72ca34d0cce9416455b6af5ac66
3405]
3406[TFs: T3418
3407Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20090820105418
3408 Ignore-this: 6fe5caf8af245d792f7b9e4c9be58d68
3409]
3410[TFs: test cases for #2767 & #3208
3411Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20090820073343
3412 Ignore-this: a9c06c0d0fcc72c0cf59e5c94271005b
3413]
3414[add test for an illegal C finalizer callback
3415Simon Marlow <marlowsd@gmail.com>**20090819123952
3416 Ignore-this: 4de54a86ba9d6d588ea7d6008ba84737
3417]
3418[the remaining part of #1548 is now fixed
3419Simon Marlow <marlowsd@gmail.com>**20090819120141
3420 Ignore-this: 4d90dde10d3987b4fab8b4309a5fb6ed
3421]
3422[Add a test for trac #3286
3423Ian Lynagh <igloo@earth.li>**20090819113724]
3424[add test for #3429
3425Simon Marlow <marlowsd@gmail.com>**20090818140030
3426 Ignore-this: 3ad7efc0274575bb7290ca952533c594
3427]
3428[Add a test for #3007
3429Ian Lynagh <igloo@earth.li>**20090813161943]
3430[Test Trac #3409
3431simonpj@microsoft.com**20090813161540
3432 Ignore-this: e4093d296c05c4b5532588f2a04c2210
3433]
3434[Add a test for #3303: multiline deprecated warnings
3435Ian Lynagh <igloo@earth.li>**20090812185743]
3436[Trac change in Template Haskell errors
3437simonpj@microsoft.com**20090811141150
3438 Ignore-this: 979cdffc2f7cf47db2174314dc0429bd
3439]
3440[Test Trac #3395
3441simonpj@microsoft.com**20090810142619
3442 Ignore-this: 112740b5a4cff3c501bd8da0cac1ee42
3443]
3444[Test Trac #2395
3445simonpj@microsoft.com**20090810140953
3446 Ignore-this: 7992f4b5a513c2c96645453308a8035a
3447]
3448[Test for group being a special_id when TransformListComp is on
3449Max Bolingbroke <batterseapower@hotmail.com>**20090717224849
3450 Ignore-this: 850192f55096c6d373b797255aa0b236
3451]
3452[Regression test for Trac #2395
3453Alexander Dunlap <alexander.dunlap@gmail.com>**20090807190019
3454 Ignore-this: a60faf89928344e7c9982646ce0193f9
3455]
3456[remove deprecated -#include flag
3457Simon Marlow <marlowsd@gmail.com>**20090805105047
3458 Ignore-this: b9aa8cbf54564941c544ae78ba3cb376
3459]
3460[fix tests after RTS tidyup
3461Simon Marlow <marlowsd@gmail.com>**20090803123501
3462 Ignore-this: 3ea78cb5bb05e68c634bcc961c13d9a0
3463]
3464[Remove the DiffArray tests
3465Ian Lynagh <igloo@earth.li>**20090802132048
3466 They're now in the diffarray package
3467]
3468[Add a test for trac #789
3469Ian Lynagh <igloo@earth.li>**20090801153538]
3470[Update array test outputs
3471Ian Lynagh <igloo@earth.li>**20090730153649]
3472[add test for atomic_inc()/atomic_dec()
3473Simon Marlow <marlowsd@gmail.com>**20090729075547
3474 Ignore-this: f754a4aaa6aa21458375e299f2e7141b
3475]
3476[2816 is if_platform('i386-unknown-mingw32',expect_broken(3398))
3477Simon Marlow <marlowsd@gmail.com>**20090727143202
3478 Ignore-this: a9e5f453ce3b5a951c2364cfcebd7cbe
3479]
3480[bump limits for T1969 again (it was failing on Windows)
3481Simon Marlow <marlowsd@gmail.com>**20090724091355
3482 Ignore-this: b384a8221a8dec7a89522ee79de2dbf6
3483]
3484[Test for make supporting abspath, and fail if it doesn't
3485Ian Lynagh <igloo@earth.li>**20090726135136
3486 This fixes problems using GNU make 3.80.
3487]
3488[add --no-user-package-conf for ghc-pkg tests
3489Simon Marlow <marlowsd@gmail.com>**20090724151549
3490 Ignore-this: 58db107bb49d62173ad46881cd956599
3491]
3492[add -no-user-package-conf to GHC command lines
3493Simon Marlow <marlowsd@gmail.com>**20090724123813
3494 Ignore-this: 57b0e90bfcb89d1793a2c61c014b5414
3495]
3496[Test Trac #3391
3497simonpj@microsoft.com**20090723160523
3498 Ignore-this: dbd9e3f6cb4ce6564aa1d6e9c8339a28
3499]
3500[Follow output changes (braces in do-notation)
3501simonpj@microsoft.com**20090723152556
3502 Ignore-this: 74e9ad4d85c7624114084ad8eb054910
3503]
3504[fix broken test on Windows
3505Simon Marlow <marlowsd@gmail.com>**20090723120826
3506 Ignore-this: b7be929f7d1302f59cd74cf1eff4aade
3507]
3508[Follow output
3509simonpj@microsoft.com**20090723131845
3510 Ignore-this: 78fe9e7daf9d70c06da6dfb0332575f7
3511]
3512[Test standalone deriving for GADTs
3513simonpj@microsoft.com**20090723100441
3514 Ignore-this: b45fafc180241619d364f1080215869f
3515]
3516[Tweak tests for unboxed tuple sections
3517Max Bolingbroke <batterseapower@hotmail.com>**20090717214231
3518 Ignore-this: 6abc5631f1028b628f155f0a20ece4da
3519]
3520[Tests for unboxed tuple sections
3521Max Bolingbroke <batterseapower@hotmail.com>**20090717212443
3522 Ignore-this: 3a31b5c69acb53e3f543c8fb92aca38e
3523]
3524[Tests for basic TupleSections
3525Max Bolingbroke <batterseapower@hotmail.com>**20090717204659
3526 Ignore-this: 7bf3a8e08b6b654f5dd9a9fba31f9cbe
3527]
3528[Use /usr/bin/env to find Python
3529Simon Marlow <marlowsd@gmail.com>**20090723075156
3530 Ignore-this: e6315057539fb198d98909cb1dda243f
3531 
3532 Contributed by: Krister Walfridsson <krister.walfridsson@gmail.com>
3533]
3534[Follow Integer changes
3535Ian Lynagh <igloo@earth.li>**20090721234536]
3536[accept output
3537Simon Marlow <marlowsd@gmail.com>**20090722122529
3538 Ignore-this: 35b847e78b8062dac668425dcf3e7a57
3539]
3540[Give us some more breathing room in T1969. 
3541Simon Marlow <marlowsd@gmail.com>**20090722122518
3542 Ignore-this: 550cf0b0b58bf69f57858dccc9e4e416
3543 
3544 Memory use went up a little with my change to external names, as most
3545 names got longer.  However, we're still doing better than 6.10 on this
3546 test, so I don't mind bumping the limit a bit.
3547]
3548[tc215 works now that Trac #366 is done
3549simonpj@microsoft.com**20090722105733
3550 Ignore-this: e9f108b8632316cc2d9c23370121d03
3551]
3552[Test pattern-match overlap checking for GADTs
3553simonpj@microsoft.com**20090722051806
3554 Ignore-this: 355ff54d49f196f3b4e769ce486786f0
3555]
3556[Test for Trac #3382
3557simonpj@microsoft.com**20090720060155
3558 Ignore-this: b8a90bfdf4219235cf0adb51c0d36e36
3559]
3560[Add a test for #1647
3561Ian Lynagh <igloo@earth.li>**20090719181425]
3562[Add a test for #3055
3563Ian Lynagh <igloo@earth.li>**20090717222040]
3564[Add test for Trac #3346
3565simonpj@microsoft.com**20090717155827
3566 Ignore-this: 52203cff9520f0f502612cf5880e660c
3567]
3568[accept output after changes to dfun naming
3569Simon Marlow <marlowsd@gmail.com>**20090716144125
3570 Ignore-this: 295a3d8c86c533edb40d077a1fbdf2e5
3571]
3572[Update mode001
3573Ian Lynagh <igloo@earth.li>**20090716000721
3574 The earlier of --help and --version now determines the behaviour
3575]
3576[add utf8_bom codec
3577Simon Marlow <marlowsd@gmail.com>**20090715131505
3578 Ignore-this: 27a198bd9ed3112005c43551109acd58
3579]
3580[Test derived Foldable instance
3581m.niloc@gmail.com**20090711130821
3582 Ignore-this: 830f4b824bd469df0de947f32b4f9c1c
3583]
3584[Add a test for #1074
3585Ian Lynagh <igloo@earth.li>**20090711191937]
3586[Add a test for #1792
3587Ian Lynagh <igloo@earth.li>**20090711191508]
3588[TFs: Added T2203b
3589Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20090710064638
3590 Ignore-this: 8d0c3101f03a76b2fd13e1032aefeffe
3591]
3592[TFs: fixed should_compile/Simple8 & wibbles
3593Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20090710035536
3594 Ignore-this: 66b4c2ad6a5f594f2fd6fcf51be78d6a
3595]
3596[T3016: skip_if_fast, and omit optc too.
3597Simon Marlow <marlowsd@gmail.com>**20090709144504
3598 Ignore-this: 26d695f84bf0393da3f1e1862140384f
3599]
3600[disable T3016(profc), gcc takes ages
3601Simon Marlow <marlowsd@gmail.com>**20090709104147
3602 Ignore-this: 4accafb20b11f18bb389be86aa84a331
3603]
3604[Tests for unused imports
3605simonpj@microsoft.com**20090706111329
3606 Ignore-this: 477db02945a12e468d0adc9181ece35d
3607]
3608[TFs: T2677
3609Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20090707054749
3610 Ignore-this: 8ca0fd55918fc3b5a7cd2b7407b7195a
3611]
3612[Update cabal01 test for Cabal change
3613Ian Lynagh <igloo@earth.li>**20090705194639]
3614[Make changes to -fwarn-unused-do-bind and -fwarn-wrong-do-bind suggested by SPJ
3615Max Bolingbroke <batterseapower@hotmail.com>**20090702150957
3616 Ignore-this: a79f826df7152b7b5a253a05f90d4128
3617]
3618[Support for -fwarn-unused-do-bind and -fwarn-wrong-do-bind, as per #3263
3619Max Bolingbroke <batterseapower@hotmail.com>**20090701200441
3620 Ignore-this: b762c27276c3e1e3aff614640f27903d
3621]
3622[Test Trac #3342
3623simonpj@microsoft.com**20090702124700
3624 Ignore-this: 3d47a4e0c60d0ad4db266869cdb74ec9
3625]
3626[Track error message change
3627simonpj@microsoft.com**20090702095512
3628 Ignore-this: 47db428ab8f9a6e2f0903fc84c1d547b
3629]
3630[NonLinearSigErr is actually OK
3631simonpj@microsoft.com**20090702095452
3632 Ignore-this: ef3db790608ce2d9b4a26cbc450b93c1
3633]
3634[Track change in record syntax for GADTs
3635simonpj@microsoft.com**20090702095341
3636 Ignore-this: f566b1130a4dff0a81d92a262d794d
3637]
3638[TFs: nullary families are ok
3639Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20090702093629
3640 Ignore-this: ef5783432881e51f4f88b806aaacc1cf
3641]
3642[add readwrite003 (from bug #679)
3643Simon Marlow <marlowsd@gmail.com>**20090701104449
3644 Ignore-this: 657cea9c9506a5f961877cdb77313ab7
3645]
3646[Remove hacky GCC setting
3647Simon Marlow <marlowsd@gmail.com>**20090626140827
3648 Ignore-this: 698a64c4f09be46340d04aeb0f9be8d
3649 It isn't necessary now that Cabal can find gcc in the new layout, and
3650 it was taking a long time (2.5s on Windows every time you start up
3651 make in the testsuite)
3652]
3653[accept output after fixes to FFI declaration pretty-printing
3654Simon Marlow <marlowsd@gmail.com>**20090626103342
3655 Ignore-this: 34d49ce46f4fac185e110ae6c27e8c35
3656]
3657[add test for #3319
3658Simon Marlow <marlowsd@gmail.com>**20090626103159
3659 Ignore-this: 7b77c0bb4137b9174e76c6c5aa9a9bd4
3660]
3661[TAG 2009-06-25
3662Ian Lynagh <igloo@earth.li>**20090625160429]
3663Patch bundle hash:
3664361f93c53d077a749f7575a39d0eeefa6b4c8529