Ticket #4359: LambdaCase-Testsuite.patch

File LambdaCase-Testsuite.patch, 92.9 KB (added by batterseapower, 3 years ago)
Line 
12 patches for repository /Users/mbolingbroke/Programming/Checkouts/ghc.realhead/testsuite:
2
3Sat Oct  2 10:21:35 EDT 2010  Max Bolingbroke <batterseapower@hotmail.com>
4  * Test cases for the lambda-case syntax
5
6Sat Oct  2 14:08:30 EDT 2010  Max Bolingbroke <batterseapower@hotmail.com>
7  * Follow improved column number for error message
8
9New patches:
10
11[Test cases for the lambda-case syntax
12Max Bolingbroke <batterseapower@hotmail.com>**20101002142135
13 Ignore-this: aaacdcb2382658d954d24093cf28cb48
14] {
15hunk ./tests/ghc-regress/rename/should_fail/all.T 69
16      multimod_compile_fail,
17      ['RnFail055','-v0'])
18 test('rnfail056', if_compiler_lt('ghc', '6.11', expect_fail), compile_fail, [''])
19+test('rnfail057', if_compiler_lt('ghc', '7.1', expect_fail), compile_fail, [''])
20+test('rnfail058', if_compiler_lt('ghc', '7.1', expect_fail), compile_fail, [''])
21+test('rnfail059', if_compiler_lt('ghc', '7.1', expect_fail), compile_fail, [''])
22 
23 test('rn_dup', normal, compile_fail, [''])
24 test('T2310', normal, compile_fail, [''])
25addfile ./tests/ghc-regress/rename/should_fail/rnfail057.hs
26hunk ./tests/ghc-regress/rename/should_fail/rnfail057.hs 1
27+-- LambdaCase not enabled
28+module Foo where
29+
30+foo = case of True -> 1; False -> 2
31+
32+bar = if then 1 else 2
33addfile ./tests/ghc-regress/rename/should_fail/rnfail057.stderr
34hunk ./tests/ghc-regress/rename/should_fail/rnfail057.stderr 1
35+
36+rnfail057.hs:4:7: Illegal lambda-case: use -XLambdaCase
37+
38+rnfail057.hs:6:7: Illegal lambda-if: use -XLambdaCase
39addfile ./tests/ghc-regress/rename/should_fail/rnfail058.hs
40hunk ./tests/ghc-regress/rename/should_fail/rnfail058.hs 1
41+{-# LANGUAGE LambdaCase, Arrows #-}
42+module Foo where
43+
44+import Control.Arrow
45+
46+foo = proc () -> do
47+        a <- if
48+              then returnA -< False
49+              else returnA -< True
50+        returnA -< a
51addfile ./tests/ghc-regress/rename/should_fail/rnfail058.stderr
52hunk ./tests/ghc-regress/rename/should_fail/rnfail058.stderr 1
53+
54+rnfail058.hs:7:14:
55+    Unsupported combination of lambda-if and arrows
56+    In a stmt of a 'do' expression:
57+        a <- if then returnA -< False else returnA -< True
58+    In the pattern: ()
59+    In the expression:
60+      proc () -> do { a <- if then returnA -< False else returnA -< True;
61+                      returnA -< a }
62addfile ./tests/ghc-regress/rename/should_fail/rnfail059.hs
63hunk ./tests/ghc-regress/rename/should_fail/rnfail059.hs 1
64+{-# LANGUAGE LambdaCase, Arrows #-}
65+module Foo where
66+
67+import Control.Arrow
68+
69+foo = proc () -> do
70+        a <- case of
71+               True -> returnA -< False
72+               False -> returnA -< True
73+        returnA -< a
74addfile ./tests/ghc-regress/rename/should_fail/rnfail059.stderr
75hunk ./tests/ghc-regress/rename/should_fail/rnfail059.stderr 1
76+
77+rnfail059.hs:7:14:
78+    Unsupported combination of lambda-case and arrows
79+    In the command: case of {
80+                      True -> returnA -< False
81+                      False -> returnA -< True }
82+    In a stmt of a 'do' expression:
83+        a <- case of {
84+               True -> returnA -< False
85+               False -> returnA -< True }
86+    In the pattern: ()
87hunk ./tests/ghc-regress/typecheck/should_fail/all.T 205
88 test('tcfail203a', normal, compile_fail, [''])
89 test('tcfail204', normal, compile_fail, [''])
90 test('tcfail206', if_compiler_lt('ghc', '6.11', expect_fail), compile_fail, [''])
91+test('tcfail207', if_compiler_lt('ghc', '7.1', expect_fail), compile_fail, [''])
92 
93 test('T1899', normal, compile_fail, [''])
94 test('T2126', normal, compile_fail, [''])
95addfile ./tests/ghc-regress/typecheck/should_fail/tcfail207.hs
96hunk ./tests/ghc-regress/typecheck/should_fail/tcfail207.hs 1
97+{-# LANGUAGE LambdaCase #-}
98+module Main where
99hunk ./tests/ghc-regress/typecheck/should_fail/tcfail207.hs 4
100+a :: Bool -> String
101+a = case of "hi" -> "yes"; "bye" -> "no"
102+
103+b :: Maybe a -> Bool
104+b = if then True else False
105+
106+c :: String -> Bool
107+c = case of "hi" -> "yes"; "bye" -> "no"
108+
109+d :: Bool -> String
110+d = if then True else False
111+
112+e :: String
113+e = case of "hi" -> "yes"; "bye" -> "no"
114+
115+f :: Bool
116+f = if then True else False
117+
118+main = return ()
119addfile ./tests/ghc-regress/typecheck/should_fail/tcfail207.stderr
120hunk ./tests/ghc-regress/typecheck/should_fail/tcfail207.stderr 1
121+
122+tcfail207.hs:5:13:
123+    Couldn't match expected type `Bool' with actual type `[Char]'
124+    In the pattern: "hi"
125+    In a case alternative: "hi" -> "yes"
126+    In the expression:
127+      case of {
128+        "hi" -> "yes"
129+        "bye" -> "no" }
130+
131+tcfail207.hs:8:5:
132+    Couldn't match expected type `Maybe a' with actual type `Bool'
133+    In the expression: if then True else False
134+    In an equation for `b': b = if then True else False
135+
136+tcfail207.hs:11:21:
137+    Couldn't match expected type `Bool' with actual type `[Char]'
138+    In the expression: "yes"
139+    In a case alternative: "hi" -> "yes"
140+    In the expression:
141+      case of {
142+        "hi" -> "yes"
143+        "bye" -> "no" }
144+
145+tcfail207.hs:14:13:
146+    Couldn't match expected type `[Char]' with actual type `Bool'
147+    Expected type: String
148+      Actual type: Bool
149+    In the expression: True
150+    In the expression: if then True else False
151+
152+tcfail207.hs:17:5:
153+    The function `case of {
154+                    "hi" -> "yes"
155+                    "bye" -> "no" }'
156+    requires one argument,
157+    but its type `String' has none
158+    In the expression:
159+      case of {
160+        "hi" -> "yes"
161+        "bye" -> "no" }
162+    In an equation for `e':
163+        e = case of {
164+              "hi" -> "yes"
165+              "bye" -> "no" }
166+
167+tcfail207.hs:20:5:
168+    The function `if then True else False' requires one argument,
169+    but its type `Bool' has none
170+    In the expression: if then True else False
171+    In an equation for `f': f = if then True else False
172hunk ./tests/ghc-regress/typecheck/should_run/all.T 69
173 test('tcrun040', normal, compile_and_run, [''])
174 test('tcrun041', compose(omit_ways(['ghci']), if_compiler_lt('ghc', '6.11', expect_fail)), compile_and_run, [''])
175 test('tcrun042', if_compiler_lt('ghc', '6.11', expect_fail), compile_and_run, [''])
176+test('tcrun043', if_compiler_lt('ghc', '7.1', expect_fail), compile_and_run, [''])
177 
178 test('church', normal, compile_and_run, [''])
179 test('testeq2', normal, compile_and_run, [''])
180addfile ./tests/ghc-regress/typecheck/should_run/tcrun043.hs
181hunk ./tests/ghc-regress/typecheck/should_run/tcrun043.hs 1
182+{-# LANGUAGE LambdaCase #-}
183+module Main where
184+
185+a :: Int -> Bool
186+a = case of 1 -> True; 2 -> False
187+
188+b :: Bool -> Int
189+b = if then 1 else 2
190+
191+c :: a -> ()
192+c = case of _ -> ()
193+
194+main = do
195+    print (a 1, a 2, b True, b False, c True, c "Hi")
196addfile ./tests/ghc-regress/typecheck/should_run/tcrun043.stdout
197hunk ./tests/ghc-regress/typecheck/should_run/tcrun043.stdout 1
198+(True,False,1,2,(),())
199}
200[Follow improved column number for error message
201Max Bolingbroke <batterseapower@hotmail.com>**20101002180830
202 Ignore-this: fd562f97b3f22e221a4df4e89f7e964f
203] hunk ./tests/ghc-regress/parser/should_fail/NoDoAndIfThenElse.stderr 2
204 
205-NoDoAndIfThenElse.hs:7:13:
206+NoDoAndIfThenElse.hs:7:10:
207     Unexpected semi-colons in conditional:
208         if True; then return (); else return ()
209     Perhaps you meant to use -XDoAndIfThenElse?
210
211Context:
212
213[Pass OUTPUT_SUMMARY on to the testsuite driver
214Ian Lynagh <igloo@earth.li>**20100930225033]
215[comment including ticket no. for #4274 test
216Simon Marlow <marlowsd@gmail.com>**20100926151351
217 Ignore-this: 381c7e793247be9852aafe7f5a8168f6
218]
219[add test for #4274
220Simon Marlow <marlowsd@gmail.com>**20100926151324
221 Ignore-this: df83b884a0ea35639c96fa057e183ab9
222]
223[Fix reading the --info outputs on Windows
224Ian Lynagh <igloo@earth.li>**20100925120927
225 Ignore-this: c712c9ecc2daedd0be5f62b321f59b5a
226]
227[Add a test for #4321
228Ian Lynagh <igloo@earth.li>**20100924144747]
229[simplrun006, which is a CSE test is broken again
230simonpj@microsoft.com**20100924155938
231 Ignore-this: 43847b24162395d63ebda7b17f7659bc
232 
233 It's a very delicate case and we aren't supposed to
234 catch it yet.
235]
236[Accept (better) output
237simonpj@microsoft.com**20100924155907
238 Ignore-this: 35d93f6f71137faf88bd7c5538761a1
239]
240[Update output: OPTIONS -> OPTIONS_GHC
241Ian Lynagh <igloo@earth.li>**20100924120322
242 Ignore-this: e81e10666ba263c2957db1a05f16b6d9
243]
244[Impredicative types no longer deprecated
245simonpj@microsoft.com**20100923145145
246 Ignore-this: 2573f282601fd418737f668a5b149a88
247]
248[Test Trac #2193
249simonpj@microsoft.com**20100923123441
250 Ignore-this: b185f989fbdd2593b2f79082cd63c4be
251]
252[Fix a couple of framework errors
253Ian Lynagh <igloo@earth.li>**20100922231752
254 Ignore-this: e54951429c9d9baee150d55ded9195f4
255]
256[Add a test for #4255: can't use TH with a profiled compiler
257Ian Lynagh <igloo@earth.li>**20100922151720]
258[Skip some more tests when the compiler is profiled
259Ian Lynagh <igloo@earth.li>**20100922150943
260 Ignore-this: d8b16c9544328f03740906f3f466aa60
261]
262[Remove a GHC < 6.11 test
263Ian Lynagh <igloo@earth.li>**20100922150024]
264[Remove a GHC < 6.11 test
265Ian Lynagh <igloo@earth.li>**20100922145937]
266[Remove a GHC < 6.11 test
267Ian Lynagh <igloo@earth.li>**20100922145842]
268[Add an if_compiler_profiled helper
269Ian Lynagh <igloo@earth.li>**20100921234751
270 and use it to skip the th, ghci and debugger tests when GHC is profiled.
271]
272[Remove a GHC < 6.11 test
273Ian Lynagh <igloo@earth.li>**20100921233942]
274[Remove some handling for GHC < 6.9
275Ian Lynagh <igloo@earth.li>**20100921230921]
276[fix hClose002 test output on i386-solaris2 platform
277Karel Gardas <kgardas@objectsecurity.com>**20100906125227
278 Ignore-this: bf719186dfc64821f73ffa55b1f949a4
279]
280[Add four tests
281simonpj@microsoft.com**20100922155714
282 Ignore-this: a6156e6ad154ad0e82cfc2dca658e19b
283]
284[Accept test output
285simonpj@microsoft.com**20100922154821
286 Ignore-this: 6fb3bc924c968b923a4a112ac8c8e9f3
287]
288[Test Trac #4178
289simonpj@microsoft.com**20100917152612
290 Ignore-this: b079a4e9b770a88cd9aa7cd5deb11b27
291]
292[when calling ghc-pkg for reqlib(), add --no-user-package-conf
293Simon Marlow <marlowsd@gmail.com>**20100920090146
294 Ignore-this: 90a3198c9a4251254bfe1931af7c291f
295]
296[Tests for Trac #700, 2239
297simonpj@microsoft.com**20100919192942
298 Ignore-this: 728032f93d0f16d5533d0693d0cbf8
299]
300[Add tests for Trac #3851, 4200, 3692, 3500
301simonpj@microsoft.com**20100919192405
302 Ignore-this: 816c06a26ac7b7083e6c488f44801e38
303]
304[Test Trac #1123
305simonpj@microsoft.com**20100919154829
306 Ignore-this: 1c1f37c5d17f69097c297ebb92decc51
307]
308[Add test for Trac #3696
309simonpj@microsoft.com**20100919153712
310 Ignore-this: 41dad7dff4fb2fdca9be79a3d4bd63e3
311]
312[Changed error message wording
313simonpj@microsoft.com**20100919153658
314 Ignore-this: 52617ab4b5bc5a9724f85bfb6fcbd6d3
315]
316[Change in error message wording
317simonpj@microsoft.com**20100919153629
318 Ignore-this: 91af9f10902e278b3b20de648a010132
319]
320[Add tests for Trac 4179, 4254
321simonpj@microsoft.com**20100919153605
322 Ignore-this: 1b9afcb310e729df9544da55977ea3cd
323]
324[Accept improved error message
325simonpj@microsoft.com**20100919153548
326 Ignore-this: eece43743fa5d67afebbb2485e4b26cb
327]
328[Test Trac #3826
329simonpj@microsoft.com**20100919153511
330 Ignore-this: 1074876f42a190057278167ad960350f
331]
332[Trac #4235 works now
333simonpj@microsoft.com**20100919153441
334 Ignore-this: 4e2e0d5c1a86c16e1826f46f7ae96d8
335]
336[Add a test for #4325
337Ian Lynagh <igloo@earth.li>**20100919124018]
338[Add a test for #3972
339Ian Lynagh <igloo@earth.li>**20100918131451]
340[Remove spurious "rm -f"s
341Ian Lynagh <igloo@earth.li>**20100918125650]
342[Add two implicit-parameter tests
343simonpj@microsoft.com**20100917151718
344 Ignore-this: 59bd0387697d53a9076bcf6a74fa7c40
345]
346[Accept error message changes
347simonpj@microsoft.com**20100917151638
348 Ignore-this: 8d65a3a17894db179a1e0eef4c99792c
349]
350[Make these typechecker tests run in the optimised way too
351simonpj@microsoft.com**20100917081938
352 Ignore-this: eb699be1f1388ce1129cfaa5327deb2
353 
354 The coercion optimiser is stressed by optimisation.
355 I don't think this will slow down the test runs much
356]
357[Add test for Trac #4160
358simonpj@microsoft.com**20100917081856
359 Ignore-this: a94aeac401a82ae4b2719535bcc1027f
360]
361[Add tests for T3330
362simonpj@microsoft.com**20100917081730
363 Ignore-this: c3b812f7008dbcd0188307eea18932f6
364]
365[T3787 should pass
366simonpj@microsoft.com**20100916080622
367 Ignore-this: e811d1f7e9836eece4597daefaf4c496
368]
369[Test Trac #2683
370simonpj@microsoft.com**20100915230050
371 Ignore-this: 7a6c8cbea1f296b001252a514f834429
372]
373[Test Trac #3787
374simonpj@microsoft.com**20100915230034
375 Ignore-this: 824f5ccd5ca1e785bf30987a5f82ba5d
376]
377[Test Trac #4093
378simonpj@microsoft.com**20100915230020
379 Ignore-this: b58383f02d09421a63adfbfb321f040c
380]
381[Test Trac #4201 (eta reduction)
382simonpj@microsoft.com**20100915211700
383 Ignore-this: 5140532abe8a4b89eb66e5db2ccafd7b
384]
385[Test for Trac #4240 works now
386simonpj@microsoft.com**20100915165620
387 Ignore-this: c29ab512a26b3a20e4c77d8939f8fdc7
388]
389[Update for TH instance reification
390simonpj@microsoft.com**20100915160444
391 Ignore-this: c963188d59f3f12f9da9ec5fb293bc77
392]
393[Test instance reification (Trac #1835)
394simonpj@microsoft.com**20100915151418
395 Ignore-this: efb30fa52aef9af46de1084accf00ef6
396]
397[Accept error message changes
398simonpj@microsoft.com**20100915144640
399 Ignore-this: 98424402919df659f13344bb4b6ea94e
400]
401[speedup testsuite driver startup on Windows/OSX
402Simon Marlow <marlowsd@gmail.com>**20100915105900
403 Ignore-this: 9daf5f73f417583f33fc3eb0fe5d1b74
404 Instead of calling "ghc-pkg list" and "ghc-pkg field" for each
405 package, call "ghc-pkg dump" and grep the output.  Saves a few seconds
406 on Windows for 'make TEST=foo'.
407]
408[Add test for Trac #4246
409simonpj@microsoft.com**20100915123136
410 Ignore-this: 12e93634a4e0dab2609ee8e31402c518
411]
412[Add a syb-like test
413simonpj@microsoft.com**20100915071518
414 Ignore-this: 41e4fb410e2aaaa5b320ea510acddaf9
415]
416[Add comment
417simonpj@microsoft.com**20100914213850
418 Ignore-this: 3a949543dbb90bbe6c4044fa22d4956d
419]
420[Error message wibbles
421simonpj@microsoft.com**20100914213813
422 Ignore-this: 1c907aa8d48ab2cb83092f052e3c4a6b
423]
424[Accept changes (some tests now work)
425simonpj@microsoft.com**20100914115238
426 Ignore-this: 6a07a16fe8c1d40a4bfd7843d5d60190
427]
428[Test Trac #4306
429simonpj@microsoft.com**20100914114936
430 Ignore-this: 671e8471c24946ca5960b6b3a61a32cd
431]
432[Add test for Trac #4302
433simonpj@microsoft.com**20100913170452
434 Ignore-this: ebf15fa5a11d357dd606dbd96da3ede6
435]
436[Add missing simpl017.stderr
437simonpj@microsoft.com**20100913130354
438 Ignore-this: 2edb5ca59ce23f8b88a948e065c823c0
439]
440[Update output
441simonpj@microsoft.com**20100913095739
442 Ignore-this: 279c0cda0386d3d51d50d4ee89a41d53
443]
444[Monster patch of testsuite changes with the new typechecker
445simonpj@microsoft.com**20100913094429
446 Ignore-this: 5f0384923c3bd99db406c8322903e4b9
447 
448 Very many of these changes are minor error-message wibbles,
449 but there are some to do with higher-rank and impredicativity
450 that are more substantial.  I'm looking at those separately,
451 but meanwhile validate works.
452 
453]
454[Accept output
455simonpj@microsoft.com**20100909101315
456 Ignore-this: d645bfc25d64325b54e27b81c7d350fc
457]
458[simpl017 should fail (impredicative)
459simonpj@microsoft.com**20100909085549
460 Ignore-this: 394b4d23cc8997dc8eff7a4fb7c9c693
461]
462[Accept output
463simonpj@microsoft.com**20100909085524
464 Ignore-this: 35e194ec9ebede11d71817ec5b2073a1
465]
466[tc216 fails now (fundep divergence)
467simonpj@microsoft.com**20100907144424
468 Ignore-this: b163740c36a5ed83da1c869c2fd40c7
469]
470[Impredicative breakage
471simonpj@microsoft.com**20100907144227
472 Ignore-this: 2126d84fb742132bdb6b8fd96f72f1aa
473]
474[Expected breakages
475simonpj@microsoft.com**20100907144123
476 Ignore-this: ee3796a764cc9084d60d0b9161ec417
477]
478[Accept error message change
479simonpj@microsoft.com**20100907144017
480 Ignore-this: 28d223d93da94690ad5f0d3187e28875
481]
482[Comments only
483simonpj@microsoft.com**20100907143932
484 Ignore-this: 4da37bf1eaa515a90910d17826d62be8
485]
486[Can't do type-function equalities under forall
487simonpj@microsoft.com**20100907143639
488 Ignore-this: 5a7f47d3db48b44404db0eee4277f17c
489]
490[Two expected breakages
491simonpj@microsoft.com**20100907143613
492 Ignore-this: 27f718b49fe59aac780795e7eb32a8b5
493]
494[Cant unify under an implication
495simonpj@microsoft.com**20100907143328
496 Ignore-this: 3886fadd3ba7fc4012fcf91113874e73
497]
498[Impredicative breakage
499simonpj@microsoft.com**20100907142533
500 Ignore-this: ec0cdc4335b51c56a2586461ef4962e1
501]
502[GADT12 passes now
503simonpj@microsoft.com**20100906115533
504 Ignore-this: 228d4263c7a97877588064994b62554f
505]
506[More wibbles
507simonpj@microsoft.com**20100903165323
508 Ignore-this: 2776e0b21eec31428ea17ac91a1a48f5
509]
510[Comments
511simonpj@microsoft.com**20100902234651
512 Ignore-this: 80f57360926561fc27e19e2c4900a573
513]
514[Accept changes
515simonpj@microsoft.com**20100902234557
516 Ignore-this: 68228f8a415784eee038b9bdae6efbc4
517]
518[Accept output
519simonpj@microsoft.com**20100902234514
520 Ignore-this: 4a146e46262e911bfdfcbb90e690e0b6
521]
522[More update to deriving
523simonpj@microsoft.com**20100825112545
524 Ignore-this: 37dbf73defa69c4b2d8af8058a778ce6
525]
526[Update deriving test for type families/gadts
527simonpj@microsoft.com**20100825093140
528 Ignore-this: 74c31984f8b328cea4f8bc6f88faa5b6
529]
530[Accept output
531simonpj@microsoft.com**20100824105202
532 Ignore-this: 515f1c367c9f8f4d37616c31c3d1b515
533]
534[Add test for Trac #4235
535simonpj@microsoft.com**20100824105041
536 Ignore-this: a51f35bdb1960086080b60c6fd581965
537]
538[test wibbles
539simonpj@microsoft.com**20100819105603
540 Ignore-this: 4785d45ddc508e31a7afff3477fbba1a
541]
542[Comments only
543simonpj@microsoft.com**20100819091759
544 Ignore-this: 535229ef7997053d3f36c1094052a04c
545]
546[Add type signature for top-level error
547simonpj@microsoft.com**20100819091658
548 Ignore-this: 4922b231f617783bd9c43d813245aec7
549]
550[Add a type signature in the test
551simonpj@microsoft.com**20100819091601
552 Ignore-this: fa54f25ae36835e1bd10f0c3ea96a819
553]
554[Make tc159 (generalised newtype deriving) into a runnable test
555simonpj@microsoft.com**20100819091527
556 Ignore-this: 1f99a81e95b84da9a7bb590b7ba270e9
557]
558[Update error messages for new typechecker
559simonpj@microsoft.com**20100819091108
560 Ignore-this: 79b457e39dc3fcd2d0a0e38ff11fd12f
561]
562[Add test from ghc-users mailing list about GADTs
563simonpj@microsoft.com**20100818065253
564 Ignore-this: 678300e7e7546abc97b6b6162576776a
565]
566[Update output
567Ian Lynagh <igloo@earth.li>**20100911203252]
568[add a test to catch over-allocation in lazy bytestrings
569Simon Marlow <marlowsd@gmail.com>**20100909122210
570 Ignore-this: 4442346380d50efdbc94ef9b507646ac
571]
572[remove enum04
573Simon Marlow <marlowsd@gmail.com>**20100903113825
574 Ignore-this: 7e8efc8c0629bc58c5f31e818c6b3cd4
575]
576[fix enum04 - it is no longer an expected failure
577Simon Marlow <marlowsd@gmail.com>**20100903113813
578 Ignore-this: 3f51e02d9374a9307d8c39163c43c686
579]
580[update test for containers-0.4
581Simon Marlow <marlowsd@gmail.com>**20100903113754
582 Ignore-this: 91f7df0c09622b2bc46cda3d9980bc5b
583]
584[Make a "fast" way for the dph tests so we can still run them during validate
585benl@ouroborus.net**20100831032929
586 Ignore-this: 81661552edbf16555fd6d3efdab02c7e
587 Setting -fno-rewrite-rules means we still test out the vectoriser, but
588 don't spend ages optimising the generated core code.
589]
590[Fix "/bin/sh: llvmc: command not found" noise when running testsuite
591Ian Lynagh <igloo@earth.li>**20100826230011
592 This also made the "run_command $MAKE" tests fail, as they were also
593 sending this to stderr.
594]
595[Enable the optllvm way if llvmc is found
596Simon Marlow <marlowsd@gmail.com>**20100823101851
597 Ignore-this: 818122d5d448112b69bb523254be4e95
598]
599[another attempt to make the test more robust
600Simon Marlow <marlowsd@gmail.com>**20100820081004
601 Ignore-this: 88dd8b36ad97787a75bb1623dc87e5eb
602]
603[T3807 can't be run on Windows, and fails on OS X (#4264)
604Ian Lynagh <igloo@earth.li>**20100821013620
605 Ignore-this: 94add65c168a0078c8eff5954f375e59
606]
607[Add a test for #3807: shared library generation
608Ian Lynagh <igloo@earth.li>**20100820162053]
609[make this test a little more robust
610Simon Marlow <marlowsd@gmail.com>**20100817075410
611 Ignore-this: ade2edda500a890ea9d9fa6f36642ebf
612]
613[update output
614Simon Marlow <marlowsd@gmail.com>**20100817075014
615 Ignore-this: 5c9a8374883931c7bbe98f67207e07b
616]
617[Test Trac #3959
618simonpj@microsoft.com**20100813170839
619 Ignore-this: be8b4b14efcb95657649914e4dcc8ff6
620]
621[Test Trac #3983
622simonpj@microsoft.com**20100813170240
623 Ignore-this: 80863eca3671a9f3da4e052cc9acf80f
624]
625[Test Trac #4120
626simonpj@microsoft.com**20100813163530
627 Ignore-this: f335a19e2ed61413b02f09f2918796ed
628]
629[Accept output
630simonpj@microsoft.com**20100813163235
631 Ignore-this: 242b79bfaf5cd561027cf8b645964ffe
632 
633 The arity patch improves debugger output slightly
634]
635[Fix cabal01 so that it works even if your local package database is faulty
636simonpj@microsoft.com**20100813161657
637 Ignore-this: 7d3dd8e9c86c4c839e85d9afc5acf4f2
638 
639 The test modifies the user database, and you might get
640    "WARNING: there are broken packages"
641 for no fault of your own, which messes up validate
642]
643[Add test for Trac #4099
644simonpj@microsoft.com**20100531163503
645 Ignore-this: 87f30e5ffa84e0cd1f837069215817ef
646]
647[Test Trac #469
648simonpj@microsoft.com**20100812135623
649 Ignore-this: ec1f20e170dfc175eb35b99e4f78e570
650]
651[Modify Trac #4233 tests
652simonpj@microsoft.com**20100812132559
653 Ignore-this: 69ddb334513e8b3dce3b699a7632ec10
654]
655[Test Trac #4203
656simonpj@microsoft.com**20100812130555
657 Ignore-this: cfb90dbbe3f29b83c1c4aa360267bd96
658]
659[Test Trac #4220
660simonpj@microsoft.com**20100812130526
661 Ignore-this: 588c86c877749e1112a5973ea1f6b8c4
662]
663[missed part of the patch to add #4221 test
664Simon Marlow <marlowsd@gmail.com>**20100812112530
665 Ignore-this: dd0a4a0c30480a7296f32cb1f59d7028
666]
667[expect conc016(threaded2) to fail
668Simon Marlow <marlowsd@gmail.com>**20100812112425
669 Ignore-this: 93335923341df450611a14d54429db88
670]
671[fix expected values (Windows)
672Simon Marlow <marlowsd@gmail.com>**20100812102122
673 Ignore-this: a53359c76e9bbb75a6c8b86afd198ff9
674]
675[update output (Windows)
676Simon Marlow <marlowsd@gmail.com>**20100812102114
677 Ignore-this: 2406d797fcf984b0ff1d737e8a9cd185
678]
679[T3822(ghci) is broken due to #1333
680Simon Marlow <marlowsd@gmail.com>**20100811084615
681 Ignore-this: 30367653d4928cdf28937a29dec83ae9
682]
683[add missing output files
684Simon Marlow <marlowsd@gmail.com>**20100811083451
685 Ignore-this: 4670483901ec2d1eeab541688fa8195b
686]
687[remove a non-deterministic part of the output
688Simon Marlow <marlowsd@gmail.com>**20100811082616
689 Ignore-this: 58bde2f613b09e832f30b06df6331826
690]
691[Add more parse error tests for #3811
692Ian Lynagh <igloo@earth.li>**20100810162229
693 Ignore-this: c6ac6d6cbd98f1eba9b73fba0a3e6c1e
694]
695[Update output following parser error improvements
696Ian Lynagh <igloo@earth.li>**20100809233647
697 Ignore-this: b63df572fadfd789b77cd97b990456d2
698]
699[add test for #4221
700Simon Marlow <marlowsd@gmail.com>**20100810151900
701 Ignore-this: a9248f6e9af0810a787e78cd870831c4
702]
703[update test output (compilation messages now go to stdout)
704Simon Marlow <marlowsd@gmail.com>**20100810081830
705 Ignore-this: 2729012c5198caa9cf5b6885c4969de2
706]
707[Update output for error message changes
708Ian Lynagh <igloo@earth.li>**20100808202258
709 Ignore-this: 3d1cebe66a1bee713ca3b41f718f1ab8
710]
711[Add DoAndIfThenElse tests
712Ian Lynagh <igloo@earth.li>**20100808194748
713 Ignore-this: c845d12d3105d613441e1a23b9a85a16
714]
715[Add a couple of tests for #3811
716Ian Lynagh <igloo@earth.li>**20100808193403
717 Ignore-this: 4f0d68abe31bab969f4ce07b468684f7
718]
719[Remove some errmsg normalisation (removing paths from filenames)
720Ian Lynagh <igloo@earth.li>**20100808185751
721 This wasn't needed, but was breaking "data/newtype" in an error message
722]
723[Update output now ghci module-loading output goes to stdout
724Ian Lynagh <igloo@earth.li>**20100808142248
725 Ignore-this: 9fdfc82b64b37c1cd8a82224d5c2de39
726]
727[Update rtsOpts test
728Ian Lynagh <igloo@earth.li>**20100805014605
729 Ignore-this: de5ba32769817d57478a257adeca1fa3
730]
731[Add a test for #4240
732Ian Lynagh <igloo@earth.li>**20100804204328]
733[Add a test for #4239
734Ian Lynagh <igloo@earth.li>**20100804203308]
735[Add a test for trac #4233
736Ian Lynagh <igloo@earth.li>**20100804164916]
737[Tests for trac#1344
738a**20100721195132
739 Ignore-this: 8073bb5e7715a87df99282a7a457156e
740]
741[Fix more tests now H2010 is default
742Ian Lynagh <igloo@earth.li>**20100725135716
743 Ignore-this: 70664929663317d3174a22b3069d39ff
744]
745[Skip the via-C ways for read065
746Ian Lynagh <igloo@earth.li>**20100725135611
747 Ignore-this: 1eb3606b7451efca5e7b65a579fca4ad
748 We get spurious failures due to deprecation messages
749]
750[Fix the apirecomp001 test; it needs to flatten the flags now
751Ian Lynagh <igloo@earth.li>**20100725133949
752 Ignore-this: 4cc65a4bf8bb3f427352d46750703141
753]
754[Fix a couple more tests now H2010 is the default
755Ian Lynagh <igloo@earth.li>**20100725124507
756 Ignore-this: 7d6b75fe8673286c1ebedb322f39a37d
757]
758[Fix ds tests that use NPlusKPatterns
759Ian Lynagh <igloo@earth.li>**20100725121914
760 Ignore-this: 497326b6b08fdf3c33fc96403624a9e3
761]
762[ds020 uses NPlusKPatterns
763Ian Lynagh <igloo@earth.li>**20100725114205
764 Ignore-this: ff7f01704bff8f0285664e4d44d022f
765]
766[Remove n+k pattern from cgrun058
767Ian Lynagh <igloo@earth.li>**20100725112632
768 Ignore-this: daea25cd765d80228e5e2f30c3b410f2
769]
770[readFail035 assumes Haskell98
771Ian Lynagh <igloo@earth.li>**20100725111901
772 Ignore-this: ffd53d6662dc72eb6519f88d158b114d
773]
774[Remove n+k pattern from readFail001
775Ian Lynagh <igloo@earth.li>**20100725111830
776 Ignore-this: fc22ebac97c437c812cc23a5e4fe03df
777]
778[The rebindable tests use NPlusKPatterns
779Ian Lynagh <igloo@earth.li>**20100725111153
780 Ignore-this: 1b9869d496364cdfc1675bf907bfbcc
781]
782[Fix some tests now H2010 is the default
783Ian Lynagh <igloo@earth.li>**20100725105621
784 Ignore-this: abf57799e44ee73966dfdb5a6051f31f
785]
786[Add a test for #4150
787Ian Lynagh <igloo@earth.li>**20100725105324
788 Ignore-this: 44d12d3edc9e700ff295b9981969bd7f
789]
790[tcfail144 only fails in H98 mode
791Ian Lynagh <igloo@earth.li>**20100724234939
792 Ignore-this: b6af020515cc49d5f97dad4d2550258
793]
794[tcfail126: accept output
795Ian Lynagh <igloo@earth.li>**20100724211513
796 Ignore-this: 56e7055e331083646cc6ef393a0847c3
797]
798[Skip the dph tests when running the fast testsuite
799Ian Lynagh <igloo@earth.li>**20100724205835
800 Ignore-this: c8d2a84f6f22e436257ecaef76dabd4f
801 These 7 tests were taking almost half the testsuite time
802]
803[fromdos ghci023.script
804Ian Lynagh <igloo@earth.li>**20100724202533
805 Ignore-this: d7ed3cf5396198cda66aafb8ca8a5f99
806]
807[Add read065 stderr now that NewQualifiedOperators is deprecated
808Ian Lynagh <igloo@earth.li>**20100719161644
809 Ignore-this: d0d18f20877367612e369a6601763585
810]
811[Add test for Trac #4188
812simonpj@microsoft.com**20100721145832
813 Ignore-this: 61e5525aec663188b83b8e949c38a2fe
814]
815[Update error output
816simonpj@microsoft.com**20100721145700
817 Ignore-this: ae538b10b0466a1b1d37c66587755b4f
818]
819[add test for numSparks
820Simon Marlow <marlowsd@gmail.com>**20100720152517
821 Ignore-this: 9ebea06e43920d03cb1171f21b01e199
822]
823[move to parallel package
824Simon Marlow <marlowsd@gmail.com>**20100720090343
825 Ignore-this: a7cb4c1a6b4b0932a59d6e101c3534d1
826]
827[lower bound for T3294 on x86_64/Linux
828Simon Marlow <marlowsd@gmail.com>**20100714133546
829 Ignore-this: 7ac4b17616b8366e7024708b58d8f561
830]
831[Run the dph tests alone
832Ian Lynagh <igloo@earth.li>**20100713224524
833 Ignore-this: 8db6ac6c2a43c36bc8046e5558953d4a
834 They use a lot of RAM
835]
836[Retab the dph .T files
837Ian Lynagh <igloo@earth.li>**20100713195500
838 Ignore-this: 752616140c8632d7ab6a4f968b36ae69
839]
840[Add test for Trac #4136
841simonpj@microsoft.com**20100707135549
842 Ignore-this: df8488e971df34a0e36af8de0235c304
843]
844[Improve test
845simonpj@microsoft.com**20100701151018
846 Ignore-this: 762b40569a048134715b4940a04f05e8
847]
848[Add a RelaxedPolyRec test
849simonpj@microsoft.com**20100701150827
850 Ignore-this: 66e1ce1f6eadd5bd3b5661e33e2e9438
851 
852 ..suggested by Haskell Cafe email (Job Vranish)
853]
854[Test the second bug reported in Trac #4127
855simonpj@microsoft.com**20100701135930
856 Ignore-this: 51530feb7ef23d43cd8efa7a76225c90
857]
858[add/modify tests for new async exceptions API
859Simon Marlow <marlowsd@gmail.com>**20100709130426
860 Ignore-this: 739a08b8c2bb29afb35b0041e6b2e421
861]
862[T1969, T3294: widen the limits on Windows
863Simon Marlow <marlowsd@gmail.com>**20100708093112
864 Ignore-this: b28a90d6ca0cf3ebc88fa8ae9e6aa4fc
865]
866[cg003: remove -fvia-C
867Simon Marlow <marlowsd@gmail.com>**20100706074902
868 Ignore-this: afebeb73473a203b8c1b2a24729bb0df
869]
870[ghci script for trac #2362
871amsay@amsay.net**20100625032335
872 Ignore-this: 804023b30a986bc5e59e2dd58f017643
873]
874[hReady002: omit ghci way
875Simon Marlow <marlowsd@gmail.com>**20100705084035
876 Ignore-this: 53327a56176eec36669c20592b7cbfe0
877]
878[Skip some tests the optc/profc ways
879Ian Lynagh <igloo@earth.li>**20100702215429
880 Rather than tweaking the GHC flags to get the test to pass, just
881 skip them for the deprecated ways. This'll also make it easier
882 to discover the workarounds and remove them once the ways are
883 removed.
884]
885[add a test for #4144
886Simon Marlow <marlowsd@gmail.com>**20100624143607
887 Ignore-this: 7ddd98ec61b6fa99b06ebc543ac6cfab
888]
889[Omit optllvm way for derefnull test
890David Terei <davidterei@gmail.com>**20100625122336
891 Ignore-this: e036847454834b2f0945bc2db4d5e7d8
892]
893[Expect length001 to fail for llvm way.
894David Terei <davidterei@gmail.com>**20100625122222
895 Ignore-this: 135fd88058fc0a5606fd589f60510129
896]
897[Add a test for #3364
898Ian Lynagh <igloo@earth.li>**20100624233948]
899[For #3389, use -optP -C manually
900Ian Lynagh <igloo@earth.li>**20100624113301]
901[Add a test for #3449
902Ian Lynagh <igloo@earth.li>**20100624110524]
903[T3389 is broken
904Ian Lynagh <igloo@earth.li>**20100624103305
905 Ignore-this: 3ed35522723638a83bc659380776143f
906]
907[Add a test for #3389
908Ian Lynagh <igloo@earth.li>**20100623170942
909 Ignore-this: dcdb6bf48c840203a86c3cffd74094b2
910]
911[Fix 4038 test on Windows; it needs a larger C stack
912Ian Lynagh <igloo@earth.li>**20100623161607]
913[Add Windows output for ghcpkg05
914Ian Lynagh <igloo@earth.li>**20100623160519]
915[Add Windows output for ghcpkg03
916Ian Lynagh <igloo@earth.li>**20100623155612]
917[Fix quoting in TH_recompile
918Ian Lynagh <igloo@earth.li>**20100622232233
919 Ignore-this: d444f849da6d9a42dbd7ac6101069f46
920]
921[Add new llvm ways (llvm, optllvm) to testsuite
922David Terei <davidterei@gmail.com>**20100622130303
923 Ignore-this: 5c3fec70d2d10793883d596cdc5265bb
924]
925[More #1789 tests
926Ian Lynagh <igloo@earth.li>**20100620124320
927 Ignore-this: a2cbaf374126e2abfe703badad93d38a
928]
929[trac #1789 (tests for missing import lists)
930amsay@amsay.net**20100618150432
931 Ignore-this: e46a269a8abff8743f4700dc2873b66e
932]
933[Add a test for #3822
934Ian Lynagh <igloo@earth.li>**20100619160049]
935[add test for #4038
936Simon Marlow <marlowsd@gmail.com>**20100506194357
937 Ignore-this: ae45b36aeec8cbfe15fca102144e8ba9
938]
939[Update following fixes for #4104 and #4134
940Simon Marlow <marlowsd@gmail.com>**20100616081041
941 Ignore-this: a86bfdf4c17749713e03e3375304567a
942]
943[Add -fno-warn-deprecated-flags to tests that use -fvia-C / -C
944Ian Lynagh <igloo@earth.li>**20100615160929
945 Ignore-this: dd62883740ba86e2de9f50b76f5d13d9
946]
947[Use -fno-warn-deprecated-flags in the optc and profc ways
948Ian Lynagh <igloo@earth.li>**20100615160012
949 Ignore-this: f8cfe096debff1b915c163b7d2026df0
950 as they use the -fvia-C flag, which is deprecated
951]
952[Test Trac #4127
953simonpj@microsoft.com**20100614205937
954 Ignore-this: fac60358d3b497b5c2987bb7cfce5ec4
955]
956[Track changes to type error messages
957simonpj@microsoft.com**20100614151434
958 Ignore-this: 7730f63e1ec4f3cd60a5d358abe22acd
959]
960[Fix T4113 on Windows
961Ian Lynagh <igloo@earth.li>**20100613173553
962 Ignore-this: 55789eef2e895487fa39ed7d2c3e4968
963]
964[Add a test for #4113
965Ian Lynagh <igloo@earth.li>**20100613135527]
966[Fix quoting in recomp007
967Ian Lynagh <igloo@earth.li>**20100606204648
968 Ignore-this: 238e13ed06428bc729678aa434503c6b
969]
970[Fix recomp007 on Windows
971Ian Lynagh <igloo@earth.li>**20100606180331
972 Ignore-this: ae2e572a7771a77d4151015083488e49
973]
974[Fix apirecomp001 on cygwin
975Ian Lynagh <igloo@earth.li>**20100606171151
976 Ignore-this: 4ec9de0b1bc5a07bad4acf8071a5c292
977]
978[Follow changes in ghc-pkg output
979Ian Lynagh <igloo@earth.li>**20100606173537
980 Ignore-this: bf7c14fba1782b0944045b915cbc1ef2
981]
982[Follow change in random library
983Ian Lynagh <igloo@earth.li>**20100606111058
984 Ignore-this: 8b26bffd88bf179876add35f6b6c051d
985]
986[Update error messages for printing singleton contexts
987simonpj@microsoft.com**20100604110716
988 Ignore-this: a62232e52ce98df8f87aed6259d85950
989 
990        f :: Eq a => a -> a
991 rather than
992        f :: (Eq a) => a -> a
993]
994[Add a test for #3911
995Ian Lynagh <igloo@earth.li>**20100601181210]
996[ffi005 is broken on OSX (#4105)
997Ian Lynagh <igloo@earth.li>**20100529185103
998 Ignore-this: f6c4570a47d47f206003f6b701f041cc
999]
1000[hGetBufSome comes from System.IO now.
1001Simon Marlow <marlowsd@gmail.com>**20100524124205
1002 Ignore-this: 2f5e01b2092686264a0773000cad8494
1003]
1004[Remove duplicate T3955 test
1005Ian Lynagh <igloo@earth.li>**20100525195613]
1006[Add an indexed types performance test
1007Ian Lynagh <igloo@earth.li>**20100525194755]
1008[Accept output
1009simonpj@microsoft.com**20100525153044
1010 Ignore-this: 6836925a68c7285794b28acd5f3cec83
1011]
1012[Test Trac #4015
1013simonpj@microsoft.com**20100525153036
1014 Ignore-this: 76f0a1c0cf7cdf872f831e85da098409
1015]
1016[Test Trac #4056
1017simonpj@microsoft.com**20100525114455
1018 Ignore-this: 1222efc8e742438c66dbf39447fce7b1
1019]
1020[Test Trac #4087
1021simonpj@microsoft.com**20100525071514
1022 Ignore-this: 730275119b183e2a9d719e8d44893ffb
1023]
1024[Test Trac #3966
1025simonpj@microsoft.com**20100506165500
1026 Ignore-this: 138a777d57db3c9caa4e620efe09c7c0
1027]
1028[expand the shadow test a bit to cover #4072
1029Simon Marlow <marlowsd@gmail.com>**20100519115636
1030 Ignore-this: c8534171e0adac676a0eb07d28a9f438
1031]
1032[Fix the pkg02 test to not depend on the network package
1033Simon Marlow <marlowsd@gmail.com>**20100519102528
1034 Ignore-this: 112ae04883096bbdae62deb05c2a6528
1035]
1036[Move the ctypes import in the driver
1037Ian Lynagh <igloo@earth.li>**20100518194744
1038 The import is failing on sparky, and we only use it on Windows anyway,
1039 so move it inside an "if windows".
1040]
1041[update expected values for x86_64/Linux
1042Simon Marlow <marlowsd@gmail.com>**20100518074118
1043 Ignore-this: 93827f73b20743666dbec8496ec7b159
1044]
1045[update expected values for x86/Windows
1046Simon Marlow <marlowsd@gmail.com>**20100518073823
1047 Ignore-this: 228d2629c984d2857eb272bfbbe9edcd
1048]
1049[add test for #4078
1050Simon Marlow <marlowsd@gmail.com>**20100517133607
1051 Ignore-this: e3bc78a53966cc5aa75d3f0d75533071
1052]
1053[Add test for trac '3953
1054simonpj@microsoft.com**20100517121524
1055 Ignore-this: e182aa45cee5e141506fe01e5b71bf52
1056]
1057[Test Trac #3964
1058simonpj@microsoft.com**20100507132944
1059 Ignore-this: fad1bd07b2316281e4f532dc8a16a419
1060]
1061[Test Trac #3965
1062simonpj@microsoft.com**20100507132545
1063 Ignore-this: a77fe116785cc23d95111192e6d3e31a
1064]
1065[Test Trac #3955
1066simonpj@microsoft.com**20100507132509
1067 Ignore-this: b5f694428f704a60000388f8d43d6acc
1068]
1069[Add stderr file for T3953
1070simonpj@microsoft.com**20100507132230
1071 Ignore-this: f842e85d242cf9996f4bcfa93ea3fb86
1072]
1073[Add a test for #4003
1074Ian Lynagh <igloo@earth.li>**20100516212402]
1075[Add a test for #4059
1076Ian Lynagh <igloo@earth.li>**20100515182626]
1077[add test for #4066
1078Simon Marlow <marlowsd@gmail.com>**20100514130134
1079 Ignore-this: 8f54a8817a5965495ab3c4f62bbfa755
1080]
1081[add test for #4051
1082Simon Marlow <marlowsd@gmail.com>**20100510095333
1083 Ignore-this: e85162394da682cdbc8b53ce4b992838
1084]
1085[Remove invalid UNPACK pragma
1086simonpj@microsoft.com**20100510150826
1087 Ignore-this: b1976be9aa80cfc9017afececda780d
1088]
1089[add sample output
1090Simon Marlow <marlowsd@gmail.com>**20100408084849
1091 Ignore-this: 13cba4d81767448093bc70cce34fbc14
1092]
1093[Make tc212 actually need a specialize pragma
1094Ian Lynagh <igloo@earth.li>**20100506212837]
1095[Fix quoting in mod175
1096Ian Lynagh <igloo@earth.li>**20100506212141]
1097[Modify test slightly
1098simonpj@microsoft.com**20100506164827
1099 Ignore-this: 2dcecdaf673520d4d339971d8e2d50e9
1100]
1101[Test Trac #4042
1102simonpj@microsoft.com**20100506164751
1103 Ignore-this: 26d7b3c6fe10317f123f97e961f77ff1
1104]
1105[Modify test slightly
1106simonpj@microsoft.com**20100506164740
1107 Ignore-this: f31c5c3000c0bc7970b6a8fa7735311b
1108]
1109[Accept output
1110simonpj@microsoft.com**20100506164726
1111 Ignore-this: c7009b0121f9a5b9a16b5118b264949b
1112]
1113[Tidy up tcfail145 a little
1114simonpj@microsoft.com**20100430111321
1115 Ignore-this: 40218750b184b4b17ba8240dacb32353
1116]
1117[Test Trac #3955
1118simonpj@microsoft.com**20100430111048
1119 Ignore-this: 2208601251dad65f4a32a488961e84e5
1120]
1121[add a test for #3890
1122Simon Marlow <marlowsd@gmail.com>**20100505134053
1123 Ignore-this: 9dc7610e42efb9c9bcc14572af20e749
1124]
1125[fix conc059
1126Simon Marlow <marlowsd@gmail.com>**20100505113545
1127 Ignore-this: 212f93e976d6cd78332a659529003ced
1128]
1129[add test for #4030
1130Simon Marlow <marlowsd@gmail.com>**20100505112040
1131 Ignore-this: 6a5d21d94e031d69f08e0e7208a116f0
1132]
1133[test hGetBufSome
1134Simon Marlow <marlowsd@gmail.com>**20100504152635
1135 Ignore-this: b63e227ba8957ba3108bf1815b97b25c
1136]
1137[Fix creation of Config.hs in annrun01; fixes #4033
1138Ian Lynagh <igloo@earth.li>**20100504164921
1139 Ignore-this: f8eb70b61cd00b4b59d35d4de0d50650
1140]
1141[Updating expected output of spec-inline test.
1142Milan Straka <fox@ucw.cz>**20100430112716
1143 Ignore-this: 9e19b2dc3f01a529153da679a2ec40c0
1144 
1145 Using data structures from containers in GHC causes the arguments
1146 of a worker to be in a different order.
1147]
1148[Fix running dyn tests on OS X
1149Ian Lynagh <igloo@earth.li>**20100503165143]
1150[Fix the shared001 test
1151Ian Lynagh <igloo@earth.li>**20100503155014
1152 Ignore-this: 936e3385ce09da307c5f3b49a29f9ad4
1153]
1154[Make the dynlib tests work on Windows
1155Ian Lynagh <igloo@earth.li>**20100503140815
1156 Ignore-this: 16b457c5cbaa6efdc1d728dfd317ae3e
1157]
1158[Fix the ffi002 test
1159Ian Lynagh <igloo@earth.li>**20100428161112]
1160[ffi002: work around dependence on old cmd line semantics
1161Simon Marlow <marlowsd@gmail.com>**20100427084506
1162 Ignore-this: a264ee8bf5a771b43d7075285dc99c04
1163]
1164[TH_pragma: remove superfluous -S, which now breaks the test
1165Simon Marlow <marlowsd@gmail.com>**20100427082123
1166 Ignore-this: 32af45d78ff05eeeca5533c7e8782c09
1167]
1168[Remove -fno-code in various places
1169Simon Marlow <marlowsd@gmail.com>**20100427082002
1170 Ignore-this: 1200a4417e667af982145706a3026679
1171 These tests were relying on the old behaviour of -fno-code, and work
1172 just fine without it.
1173]
1174[avoid spurious extra output
1175Simon Marlow <marlowsd@gmail.com>**20100408085805
1176 Ignore-this: 7d7d6e28b650426136434e923b48b03
1177]
1178[Add test for Trac #3943
1179simonpj@microsoft.com**20100417142447
1180 Ignore-this: 9d7f8fc08eca6552dc1bf4146d5ea65
1181]
1182[Add test for Trac #3950
1183simonpj@microsoft.com**20100417142427
1184 Ignore-this: d8f9a8815b475d47d73da5fafd1fa53a
1185]
1186[Tests for spelling correction for LANGUAGE pragmas
1187Max Bolingbroke <batterseapower@hotmail.com>**20100413165334
1188 Ignore-this: 237c451280358c11378ba1dc009d38b2
1189]
1190[Fix quoting in Makefile
1191Ian Lynagh <igloo@earth.li>**20100416155420]
1192[Use ${PYTHON} instead of relying on #!/usr/bin/env python
1193Matthias Kilian <kili@outback.escape.de>**20100416114627
1194 Ignore-this: 5dce63bea46566dfebb700b56a47a051
1195]
1196[Fix running the testsuite on msys
1197Ian Lynagh <igloo@earth.li>**20100412184103
1198 I'm not entirely sure if the cygwin code is actually right (i.e. I'm
1199 not sure what calling convention it uses), but it seems to work.
1200]
1201[Run this test the threaded2 way only
1202Simon Marlow <marlowsd@gmail.com>**20100401101509
1203 Ignore-this: fa8be885eec598156d85023a4b8b3612
1204 It seems to be scheduling sensitive, and sometimes diverges when given
1205 only one core.
1206]
1207[not broken any more: the new Strategies library fixed it
1208Simon Marlow <marlowsd@gmail.com>**20100401091727
1209 Ignore-this: d23e727c87b8c6eae4640178e8b28714
1210]
1211[update to work with parallel-2
1212Simon Marlow <marlowsd@gmail.com>**20100401091120
1213 Ignore-this: b25bf553673a05b10f3eeda7367618e9
1214]
1215[we should be testing $(TEST_HC), not simply 'ghc'
1216Simon Marlow <marlowsd@gmail.com>**20100322131014
1217 Ignore-this: ca86cb1d1351019b1a249bac16be0392
1218]
1219[print021 now passes on Windows, presumably due to the codepage change
1220Ian Lynagh <igloo@earth.li>**20100321182848
1221 Ignore-this: 1be5611fe545a9bb55d3b7fdeace9a5
1222]
1223[dynHelloWorld currently fails on Windows; trac #3861
1224Ian Lynagh <igloo@earth.li>**20100321182638
1225 Ignore-this: 3f84d0bb2a93b0914c4802c03d66d07c
1226]
1227[Fix the cabal04 test on Windows
1228Ian Lynagh <igloo@earth.li>**20100321175551
1229 Ignore-this: bae70cf3ae40abb0c8b6504c7103e30b
1230]
1231[2816 now passes on Windows, presumably due to the codepage change
1232Ian Lynagh <igloo@earth.li>**20100321173113
1233 Ignore-this: b14bb8041c6c6a2ae1b2db9d00aa5aae
1234]
1235[2302 now passes on Windows, presumably due to the codepage change
1236Ian Lynagh <igloo@earth.li>**20100321172615
1237 Ignore-this: 35476fc95cb109ee32c74961f6994dc
1238]
1239[Use the UTF8 codepage when running on Windows
1240Ian Lynagh <igloo@earth.li>**20100319200751
1241 Fixes openTempFile001 for some system codepages, most notably 437 (US).
1242]
1243[Mark hsc2hs001 and hsc2hs002 broken on Windows (#3929)
1244Ian Lynagh <igloo@earth.li>**20100319160229]
1245[The T2267 test needs utf8-string
1246Ian Lynagh <igloo@earth.li>**20100318123144]
1247[Accept change in inline pragma format
1248simonpj@microsoft.com**20100317133405
1249 Ignore-this: b2fe17284fa97faceb178a4921c10011
1250]
1251[Add test for Trac #3920
1252simonpj@microsoft.com**20100317123757
1253 Ignore-this: c4085486f19633c8bba1ebea83b5d758
1254]
1255[Add dph-words test
1256benl@ouroborus.net**20100316042056
1257 Ignore-this: cf25c704fa4b18101faaf5d46feadd4e
1258 I've only set this to run with the "normal" way atm because it
1259 takes about 1.5 min to compile on my machine. SpecConstr blows out
1260 the size of the core program to about 400k, which is probably
1261 a good enough reason to have it in the testsuite.
1262]
1263[Update rtsOpts output
1264Ian Lynagh <igloo@earth.li>**20100315210245]
1265[Use -rtsopts for the outofmem2 test
1266Ian Lynagh <igloo@earth.li>**20100314173403]
1267[Update the rtsOpts test now that RTS options are off by default
1268Ian Lynagh <igloo@earth.li>**20100314172340]
1269[Always use -rtsopts when compiling things with GHC
1270Ian Lynagh <igloo@earth.li>**20100314171950]
1271[Add a test for -with-rtsopts
1272Ian Lynagh <igloo@earth.li>**20100313231306]
1273[Add a test for en/disabling RTS options
1274Ian Lynagh <igloo@earth.li>**20100313161942]
1275[do the throwto tests in a validate run
1276Simon Marlow <marlowsd@gmail.com>**20100311120646
1277 Ignore-this: 7a7212c6af06e61c15b4c5ab911d9359
1278]
1279[Add some tortuous throwTo tests
1280Simon Marlow <marlowsd@gmail.com>**20100311120231
1281 Ignore-this: 4bf901e3405e0f7c9e873731e459fd86
1282]
1283[Track change in printing of Activations
1284simonpj@microsoft.com**20100309173726
1285 Ignore-this: edab510554f9bda449254f1779daec3e
1286]
1287[Add test for Trac #1954
1288simonpj@microsoft.com**20100309173712
1289 Ignore-this: df6221f310d60fa3396d3006d4a180c7
1290]
1291[Fix running hp2ps in a directory containing spaces
1292Ian Lynagh <igloo@earth.li>**20100304015245]
1293[Fix detection of whether we have profiling libs
1294Ian Lynagh <igloo@earth.li>**20100303235023
1295 It broke when the installation path contained a space
1296]
1297[Track improvements in pretty-printing for group-by, order-by
1298simonpj@microsoft.com**20100304130820
1299 Ignore-this: dd7840365626ec02f8472a76e69827a
1300]
1301[Track change in -dsuppress-unique printing for TH
1302simonpj@microsoft.com**20100304130753
1303 Ignore-this: 3325f0fc735ecd5e21227a50bcf66f48
1304]
1305[Add test for Trac #3899
1306simonpj@microsoft.com**20100304130731
1307 Ignore-this: 2f0d99bb7c83643a08bea68395c8af56
1308]
1309[Add test for Trac #3901
1310simonpj@microsoft.com**20100304130619
1311 Ignore-this: 216cc68d1d40ce8add7b852ac0d7d97f
1312]
1313[Update layout tests
1314Ian Lynagh <igloo@earth.li>**20100302205840]
1315[Add a layout test
1316Ian Lynagh <igloo@earth.li>**20100302165911]
1317[A missing change from the InlinePrag pretty-print change
1318simonpj@microsoft.com**20100301173752
1319 Ignore-this: 42fc03950d97005f673512c8b2c126c6
1320]
1321[omit profiling ways for traceEvent
1322Simon Marlow <marlowsd@gmail.com>**20100301090451
1323 Ignore-this: e6f7fe3fc1a04bf54dec3f1fc55dc43
1324]
1325[Track extra suggestion in newtype deriving (cf Trac #3888)
1326simonpj@microsoft.com**20100301112517
1327 Ignore-this: a8d4656f5f92b4d7b4b8a15fc6089ca0
1328]
1329[Track changes in pretty-printing of IfacePrag
1330simonpj@microsoft.com**20100301112448
1331 Ignore-this: 59a46630a8ba4ddf2982fe335777e84e
1332]
1333[Add sparc specific version of smvm test data
1334benl@ouroborus.net**20100301061637]
1335[Add x86_64 specific version of smvm test data
1336benl@ouroborus.net**20100301060429
1337 Ignore-this: cfb955f47d04c25947c1fc6edac935bd
1338]
1339[Add DPH solution for 108th Euler problem
1340benl@ouroborus.net**20100301041657
1341 Ignore-this: 66545782ee8d19b57b24f6f864eddde5
1342]
1343[Add a test for #2578
1344Ian Lynagh <igloo@earth.li>**20100227172429]
1345[add test for GHC.Exts.traceEvent (#3874)
1346Simon Marlow <marlowsd@gmail.com>**20100226101321
1347 Ignore-this: 87505cea77315f35fb5a7209708e6530
1348]
1349[Add DPH solution for 1st Euler problem
1350benl@ouroborus.net**20100226045105
1351 Ignore-this: cb49b2afcceba6abd09e2093081f75b5
1352]
1353[Add missing Makefiles
1354benl@ouroborus.net**20100226033607]
1355[Add DPH smvm test
1356benl@ouroborus.net**20100226025630
1357 Ignore-this: c7f0ac34b7f092472aed1899eb40d0a
1358]
1359[Add DPH primes test
1360benl@ouroborus.net**20100226020034
1361 Ignore-this: 19f6625477a61e6db295e34480b19bd3
1362]
1363[In dph-dotp, compare with result computed via regular list fns.
1364benl@ouroborus.net**20100226014700
1365 Ignore-this: b18cd05a7c825897d9039f6d028472fb
1366]
1367[Prefix dph tests with 'dph-' to avoid name conflicts
1368benl@ouroborus.net**20100226013638
1369 Ignore-this: dbbc84fe4e61748ee9f32552a5376a30
1370]
1371[Add DPH dotp test
1372benl@ouroborus.net**20100225042634
1373 Ignore-this: cd51c73a0428abbde4f7fb0f83a17436
1374]
1375[arith012, arith008: use -msse2 on i386 if available
1376Simon Marlow <marlowsd@gmail.com>**20100224101434
1377 Ignore-this: 898b94793dd9df4a5d7889502e6464ea
1378]
1379[Add quickhull test output
1380benl@ouroborus.net**20100224071233]
1381[Add DPH quickhull test
1382benl@ouroborus.net**20100224052916
1383 Ignore-this: 97fd56a0e05f324f5c61832f95f79835
1384]
1385[expect_broken(3676)
1386Simon Marlow <marlowsd@gmail.com>**20100223105935
1387 Ignore-this: 16eea589ade1dcf21eed01bccd563c21
1388]
1389[disable annrun01(dyn) (see comments)
1390Simon Marlow <marlowsd@gmail.com>**20100223094835
1391 Ignore-this: 79baa6325aea23eba454ba8a89ae9d58
1392]
1393[omit via-C ways for this test, gcc takes too long
1394Simon Marlow <marlowsd@gmail.com>**20100223094241
1395 Ignore-this: 673323521cece51ee0b5393d5c0291ff
1396]
1397[omit profilng ways
1398Simon Marlow <marlowsd@gmail.com>**20100223094006
1399 Ignore-this: 492d40fd56d4d4d0e927c7b57c5dcaaf
1400]
1401[Add a test for recompilation when a package version changes
1402Simon Marlow <marlowsd@gmail.com>**20100217135321
1403 Ignore-this: b8a1bb3dc3acf79b4b1aafd970fe945e
1404]
1405[enable the asm ways for ffi009 on i386 if -msse2 is available
1406Simon Marlow <marlowsd@gmail.com>**20100216124514
1407 Ignore-this: 3c02d4aa1a224bd0911a285077663ffd
1408]
1409[add a test for a bug in noDuplicate#
1410Simon Marlow <marlowsd@gmail.com>**20100216123210
1411 Ignore-this: a0a6570b849a377d19e74eac417875af
1412]
1413[add test for #3676
1414Simon Marlow <marlowsd@gmail.com>**20100211131639
1415 Ignore-this: bb34821a52b63c854ba7d4150cd1eb15
1416]
1417[Test Trac #3845
1418simonpj@microsoft.com**20100210153741
1419 Ignore-this: 1e79fd99256f5d7feed19aa38233076d
1420]
1421[Fewer parens when printing HsPat
1422simonpj@microsoft.com**20100210110024
1423 Ignore-this: 7732b27e3e8b69be37e30e2486a7dedc
1424]
1425[New syntax for quasi-quotes, and record field names for QuasiQuoter type
1426simonpj@microsoft.com**20100210105911
1427 Ignore-this: fe4d96a31b22710b645963b3dbd4b2a4
1428]
1429[Add quasi-quote test for declaration and type quotes
1430simonpj@microsoft.com**20100210105822
1431 Ignore-this: e7745043c40d095693c0810b08ebe028
1432]
1433[Fix test T3831, and change to Unix coding
1434simonpj@microsoft.com**20100208155715
1435 Ignore-this: ba7c87186d1e2a699602206d29cb5da1
1436]
1437[accept output (#3848)
1438Simon Marlow <marlowsd@gmail.com>**20100202120626
1439 Ignore-this: b7b4edeaa4bd7fdd746f7bf787e9b03a
1440]
1441[Test Trac #3831: SpecConstr blowup
1442simonpj@microsoft.com**20100202072405
1443 Ignore-this: be443a4998f4322eaa8b6e614f94bf62
1444]
1445[Add a test for trac #3813
1446Ian Lynagh <igloo@earth.li>**20100130211256]
1447[Update column numbers for the HEAD
1448Ian Lynagh <igloo@earth.li>**20100130203147]
1449[Add tests for trac #3833 and #3834
1450Ian Lynagh <igloo@earth.li>**20100130203049]
1451[add test for #3674
1452Simon Marlow <marlowsd@gmail.com>**20100129104231
1453 Ignore-this: 417f1d3bb43965ab40ba3cf62f051705
1454]
1455[add test for #2464
1456Simon Marlow <marlowsd@gmail.com>**20100129104140
1457 Ignore-this: a6af5aedca49dc4fd2ef6f74dc697b07
1458]
1459[Update column numbers for the HEAD
1460Ian Lynagh <igloo@earth.li>**20100122154945]
1461[Expect T3823 to fail to compile
1462Ian Lynagh <igloo@earth.li>**20100122141329]
1463[Add a test for #3823
1464Ian Lynagh <igloo@earth.li>**20100122130735]
1465[add test for #3832
1466Simon Marlow <marlowsd@gmail.com>**20100120211706
1467 Ignore-this: 83899d7ca854569a004d23ee8b6f29c1
1468]
1469[OS X doesn't seem to support linker scripts
1470Ian Lynagh <igloo@earth.li>**20100120204812]
1471[Tweak the T2615 test
1472Ian Lynagh <igloo@earth.li>**20100120162214]
1473[FIX #2615 (linker scripts in .so files)
1474howard_b_golden@yahoo.com**20091216211220
1475 Ignore-this: 1cb087990cbf6210f60eb9abbb0d28c8
1476 This is the regression test for FIX #2615 (linker scripts in .so files).
1477 
1478 It does NOT apply to Windows. It applies only to systems using ELF files.
1479 
1480 In order for this test to work on all ELF systems, no assumption is
1481 made about whether or not real ELF shared libraries and linker scripts
1482 exist. Instead, this patch compiles a trivial C program into an ELF shared
1483 library. Also, a mock linker script (libfoo_script_T2615.so) is included in
1484 the patch. Note: This is marked as a binary, but it is a text file.
1485 
1486 Test approach:
1487 
1488 A small Haskell program (T2615.hs) imports the ObjLink module from GHC.
1489 It then calls the loadDLL function with the name of the mock linker script
1490 (libfoo_script_T2615.so). This mock script contains a link to a real
1491 shared library (libfoo_T2615.so) which the test has already created. If
1492 the dlopen (in the addDLL function in rts/Linker.c) works, the Haskell
1493 program will return a success message. Otherwise, it will return the error
1494 message it receives from loadDLL (which is actually the dlerror() message
1495 received by addDLL).
1496]
1497[Track error message change
1498simonpj@microsoft.com**20100120114813
1499 Ignore-this: 1cd39940600a5d29b018eca103993f8e
1500]
1501[Add a layout test
1502Ian Lynagh <igloo@earth.li>**20100116215414]
1503[Add a layout rule test
1504Ian Lynagh <igloo@earth.li>**20100116214141]
1505[fix cleaning in cabal03/cabal04
1506Simon Marlow <marlowsd@gmail.com>**20100115142516
1507 Ignore-this: 12c7dbc6ed9faddfe6feacfc705abab
1508]
1509[Improve the handling of TEST_HC
1510Ian Lynagh <igloo@earth.li>**20100108210400
1511 We now accept TEST_HC=ghc as well as TEST_HC=/usr/bin/ghc
1512 The code is also a little more correct, as it will now actually
1513 canonicalise the value of TEST_HC if it is given on the commandline.
1514]
1515[Always define IN_TREE_COMPILER in mk/boilerplate.mk
1516Ian Lynagh <igloo@earth.li>**20100108202040
1517 There was one path in which it was not being set.
1518]
1519[Add missing T3772_A.hs
1520simonpj@microsoft.com**20100108123553
1521 Ignore-this: e2e95176d17f14b88194d846b26c1e60
1522]
1523[Change debug print format
1524simonpj@microsoft.com**20100108084821
1525 Ignore-this: d38acdd3cc5253cbb5f86dbf92417ef4
1526]
1527[Improved "Invalid type signature" message
1528simonpj@microsoft.com**20100108084804
1529 Ignore-this: 9c835297d44665a754c1aaf7162f7d83
1530]
1531[Follow more-accurate spans in error messages
1532simonpj@microsoft.com**20100108084740
1533 Ignore-this: c19dcc6ce888c5251170463475a1d19b
1534]
1535[Use "test -x" rather than "test -e"; fixes trac #3778
1536Ian Lynagh <igloo@earth.li>**20100103131127
1537 Solaris doesn't support -e
1538]
1539[Test Trac #3792
1540simonpj@microsoft.com**20100104220030
1541 Ignore-this: 332e960aa57e8b24e05290802b95779d
1542]
1543[Accept specialised function argument order change
1544simonpj@microsoft.com**20100104152252
1545 Ignore-this: 8a737ca0a2fc8e3928def8df3516c2db
1546]
1547[Complete test Trac #3772
1548simonpj@microsoft.com**20091224155017
1549 Ignore-this: bcfc0e627d563a60f89a396209e90135
1550]
1551[Add test Trac #3731
1552simonpj@microsoft.com**20091224155001
1553 Ignore-this: 5ff04c1ea68c646bd79ced99b54d2d4
1554]
1555[Accept output
1556simonpj@microsoft.com**20091224154712
1557 Ignore-this: dd7b7f358f827aec71543c74843799f1
1558]
1559[Add test for Trac #3772
1560simonpj@microsoft.com**20091224143349
1561 Ignore-this: c294eeba0a6c4c54934d543289ff13c6
1562]
1563[T1969: drop lower bound for max_bytes_used on x86/Linux
1564Simon Marlow <marlowsd@gmail.com>**20091231194006
1565 Ignore-this: 457515ace9e5ece4be2cd46172e390c9
1566]
1567[Add some hsc2hs tests
1568Ian Lynagh <igloo@earth.li>**20100102210655]
1569[Fix quoting for the apirecomp001 test
1570Ian Lynagh <igloo@earth.li>**20100101165106]
1571[Fix some test name collisions
1572Ian Lynagh <igloo@earth.li>**20100101140641]
1573[Fix some test name collisions
1574Ian Lynagh <igloo@earth.li>**20100101135755]
1575[Fix a test name collision
1576Ian Lynagh <igloo@earth.li>**20100101134722]
1577[typo
1578Ian Lynagh <igloo@earth.li>**20100101134557]
1579[Fix some test name collisions
1580Ian Lynagh <igloo@earth.li>**20100101134144]
1581[Fix some test name collisions
1582Ian Lynagh <igloo@earth.li>**20100101133702]
1583[Fix some test naem collisions
1584Ian Lynagh <igloo@earth.li>**20100101133531]
1585[Fix some test name collisions
1586Ian Lynagh <igloo@earth.li>**20100101132814]
1587[Fix some test name collisions
1588Ian Lynagh <igloo@earth.li>**20100101132159]
1589[Fix some test name collisions
1590Ian Lynagh <igloo@earth.li>**20100101131743]
1591[Give more info in the testsuite output
1592Ian Lynagh <igloo@earth.li>**20100101130709]
1593[Check for duplicate test names, and report them as framework failures
1594Ian Lynagh <igloo@earth.li>**20100101123207]
1595[Test Trac #3776
1596simonpj@microsoft.com**20091221145155
1597 Ignore-this: 6da368e3ec0665d75371f7b194c957bc
1598]
1599[Add test for Trac #3245
1600simonpj@microsoft.com**20091218164740
1601 Ignore-this: 139f702cdd7e6ceaf4b040cd1ac62285
1602]
1603[accept output (better SrcLocs for lexer errors)
1604Simon Marlow <marlowsd@gmail.com>**20091221105853
1605 Ignore-this: e9b5577cc7cef3717f44b1ededd891b0
1606]
1607[add test for #3751
1608Simon Marlow <marlowsd@gmail.com>**20091217103719
1609 Ignore-this: 4ea7b2ac894242efa4b6b26f30002995
1610]
1611[Fix broken python syntax
1612Ian Lynagh <igloo@earth.li>**20091219171956]
1613[Add you more clean_cmd's
1614Ian Lynagh <igloo@earth.li>**20091219171108]
1615[Add some more clean_cmd's
1616Ian Lynagh <igloo@earth.li>**20091219165603]
1617[Refactor the cleaning code
1618Ian Lynagh <igloo@earth.li>**20091219165145]
1619[Remove unused clean_o_hi function
1620Ian Lynagh <igloo@earth.li>**20091219165003]
1621[Add clean_cmd to the testsuite, and use it in bug1465
1622Ian Lynagh <igloo@earth.li>**20091219164708]
1623[Remove debugging print
1624Ian Lynagh <igloo@earth.li>**20091219164331]
1625[Fix cleaning annrun01
1626Ian Lynagh <igloo@earth.li>**20091219154908]
1627[Add pre-command support to the testsuite, and fix annrun01 by using it
1628Ian Lynagh <igloo@earth.li>**20091219154502]
1629[Remove no-longer-used files
1630Ian Lynagh <igloo@earth.li>**20091218215745]
1631[Fix driver016,driver019,driver028
1632Ian Lynagh <igloo@earth.li>**20091218214802]
1633[Allow tests to behave differently depending on whether the compiler is in-tree
1634Ian Lynagh <igloo@earth.li>**20091218200358
1635 And skip testwsdeque if it is not in-tree, as we rely on some headers
1636 from the build tree.
1637]
1638[Remove a test for GHC < 6.11
1639Ian Lynagh <igloo@earth.li>**20091218195946]
1640[Update output
1641simonpj@microsoft.com**20091216165405
1642 Ignore-this: 1a4bf5cbe06aa347a11d173c90368e74
1643]
1644[Add test for applying specialisations inside InlineRules
1645simonpj@microsoft.com**20091216165352
1646 Ignore-this: a5514ebd31dfb2df2b042b603c19008b
1647]
1648[Test Trac #3717
1649simonpj@microsoft.com**20091216083323
1650 Ignore-this: 39238086fa5faf12d75bc533c7ad3b92
1651]
1652[Add test for type families, discovered by Roman
1653simonpj@microsoft.com**20091211122644
1654 Ignore-this: 82ee6c77a2bd741185ae01d94c4eb694
1655 
1656 Tests this patch:
1657 
1658   Fri Dec 11 12:01:22 GMT 2009  simonpj@microsoft.com
1659     * Fix two related bugs in u_tys
1660     
1661     When we normalise a type family application we must recursively call
1662     uTys, *not* 'go', because the latter loop is only there to look
1663     through type synonyms.  This bug made the type checker generate
1664     ill-typed coercions, which were rejected by Core Lint.
1665     
1666     A related bug only affects the size of coercions.  If faced with
1667       (m a) ~ (F b c)
1668     where F has arity 1, we want to decompose to
1669        m ~ F Int,  a ~ c
1670     rather than deferring.  The application decomposition was being
1671     tried last, so we were missing this opportunity.
1672]
1673[Tweak T3234 test and accept output
1674Ian Lynagh <igloo@earth.li>**20091215215340
1675 The test now suppresses uniques to avoid spurious changes in the output
1676]
1677[Accept output for T2486
1678Ian Lynagh <igloo@earth.li>**20091215215230]
1679[Tweak rule2 test and accept output
1680Ian Lynagh <igloo@earth.li>**20091215215020
1681 The test now suppresses uniques to avoid spurious changes in the output
1682]
1683[Decouple ghcpkg02 from the GHC build tree
1684Ian Lynagh <igloo@earth.li>**20091211215319]
1685[use a smaller stack limit for conc012(ghci)
1686Simon Marlow <marlowsd@gmail.com>**20091211094439
1687 Ignore-this: 48fee0dc80d6eb4d6370a451428030e6
1688]
1689[add test for #3742
1690Simon Marlow <marlowsd@gmail.com>**20091210124518
1691 Ignore-this: 60cea81bfbb8858702ae426142943f8
1692]
1693[add test for #3741
1694Simon Marlow <marlowsd@gmail.com>**20091210123354
1695 Ignore-this: aa00e7cbe59c34682516ac6849735b9d
1696]
1697[update expected value comments
1698Simon Marlow <marlowsd@gmail.com>**20091208141558
1699 Ignore-this: 67c22cc48656e7f955dd57a44f0c218e
1700]
1701[Fix quoting, and add some sanity checking
1702Ian Lynagh <igloo@earth.li>**20091209194521]
1703[Fix typos
1704Ian Lynagh <igloo@earth.li>**20091209190239]
1705[accept output (column numbers)
1706Simon Marlow <marlowsd@gmail.com>**20091208093207
1707 Ignore-this: 9ad2a53c9c34136f9a017040dd0be8a3
1708]
1709[accept output
1710Simon Marlow <marlowsd@gmail.com>**20091208091240
1711 Ignore-this: 93a72b8d9fa234e0c3476508dfb492dc
1712]
1713[Add output for T3102
1714simonpj@microsoft.com**20091207155644
1715 Ignore-this: 26a02326560e4c1c7e04126d28674dab
1716]
1717[Track error message changes for deriving
1718simonpj@microsoft.com**20091207130720
1719 Ignore-this: 254a66c5a42013393fac04c9a7b28ff1
1720]
1721[Test Trac #3012
1722simonpj@microsoft.com**20091207080303
1723 Ignore-this: 2ac253ce2a38488847286308643053f2
1724]
1725[Add another layout test
1726Ian Lynagh <igloo@earth.li>**20091205143631]
1727[Add another layout test
1728Ian Lynagh <igloo@earth.li>**20091205143228]
1729[Add another layout test
1730Ian Lynagh <igloo@earth.li>**20091205142902]
1731[Add another layout rule test
1732Ian Lynagh <igloo@earth.li>**20091205142413]
1733[Add another layout test
1734Ian Lynagh <igloo@earth.li>**20091205141351]
1735[Add a test for the difference between the H98 and the alternative layout rules
1736Ian Lynagh <igloo@earth.li>**20091205140933]
1737[Accept column change output in break021
1738Ian Lynagh <igloo@earth.li>**20091203143326]
1739[Accept output for break020
1740Ian Lynagh <igloo@earth.li>**20091203135642
1741 It now gets the columns right for the highlighting
1742]
1743[Add test for a loop in the simplifier
1744simonpj@microsoft.com**20091130144716
1745 Ignore-this: 8eee799e9b3a1aef88e40d163a46a73e
1746]
1747[Test Trac #3100
1748simonpj@microsoft.com**20091130144314
1749 Ignore-this: fbc050a60b29e474308a1096cd1bb76d
1750]
1751[fix driver033
1752Simon Marlow <marlowsd@gmail.com>**20091202150723
1753 Ignore-this: 121fdb538938be37d4d6ba36b75c354d
1754]
1755[add a test for #414
1756Simon Marlow <marlowsd@gmail.com>**20091130120404
1757 Ignore-this: 11d4a89e43473fabc1ee6f1e6a57ff5d
1758]
1759[add a test for #3677
1760Simon Marlow <marlowsd@gmail.com>**20091130112508
1761 Ignore-this: 5ccd81e580a6d245d69d6e8e01eb3243
1762]
1763[Fix cabal03
1764Ian Lynagh <igloo@earth.li>**20091129180625]
1765[In cabal03, don't register --inplace
1766Ian Lynagh <igloo@earth.li>**20091129180402
1767 This means it ignores the package database we tell it to use.
1768 Instead, do a normal register, but pass --force so it doesn't fail
1769 due to missing files.
1770]
1771[Tweak cabal03 test
1772Ian Lynagh <igloo@earth.li>**20091129180130]
1773[Add a missing package-db flag from cabal03
1774Ian Lynagh <igloo@earth.li>**20091129174833]
1775[Refactor the cabal03 test
1776Ian Lynagh <igloo@earth.li>**20091129173339]
1777[ghcpkg01: Follow Cabal changes
1778Ian Lynagh <igloo@earth.li>**20091129173106]
1779[Make more cabal tests run 'alone'
1780Ian Lynagh <igloo@earth.li>**20091129121350]
1781[Make 1372 use a local package database
1782Ian Lynagh <igloo@earth.li>**20091129120526
1783 Eliminates random failures when it's run in parallel with other tests
1784]
1785[Make bug1465 use a local package.conf
1786Ian Lynagh <igloo@earth.li>**20091129114552
1787 Eliminates random failures when it runs in parallel with other tests
1788]
1789[Make driver200 parallelisable
1790Ian Lynagh <igloo@earth.li>**20091128235452]
1791[Make 2566 parallelisable
1792Ian Lynagh <igloo@earth.li>**20091128235354]
1793[Remove now-unused cleanall function
1794Ian Lynagh <igloo@earth.li>**20091128235322]
1795[Make driver081* parallelisable
1796Ian Lynagh <igloo@earth.li>**20091128235220]
1797[driver100 doesn't need to be run alone
1798Ian Lynagh <igloo@earth.li>**20091128234812]
1799[Make driver080 parallelisable
1800Ian Lynagh <igloo@earth.li>**20091128234315]
1801[Make driver063 parallelisable
1802Ian Lynagh <igloo@earth.li>**20091128234055]
1803[Make more driver tests parallelisable
1804Ian Lynagh <igloo@earth.li>**20091128233708]
1805[Remove some unnecessary 'alone' calls
1806Ian Lynagh <igloo@earth.li>**20091128231738]
1807[Make driver062* parallelisable
1808Ian Lynagh <igloo@earth.li>**20091128231420]
1809[Make driver061* parallelisable
1810Ian Lynagh <igloo@earth.li>**20091128230329]
1811[Make driver060 parallelisable
1812Ian Lynagh <igloo@earth.li>**20091128225804]
1813[Make driver053 parallelisable
1814Ian Lynagh <igloo@earth.li>**20091128225358]
1815[Make driver052 parallelisable
1816Ian Lynagh <igloo@earth.li>**20091128225153]
1817[Make driver051 parallelisable
1818Ian Lynagh <igloo@earth.li>**20091128224704]
1819[Make driver045 parallelisable
1820Ian Lynagh <igloo@earth.li>**20091128224155]
1821[Make driver044 parallelisable
1822Ian Lynagh <igloo@earth.li>**20091128223850]
1823[Make driver043 parallelisable
1824Ian Lynagh <igloo@earth.li>**20091128223708]
1825[Make driver042 parallelisable
1826Ian Lynagh <igloo@earth.li>**20091128223501]
1827[Add some extra cleaning for driver033
1828Ian Lynagh <igloo@earth.li>**20091128223156]
1829[Make driver041 parallelisable
1830Ian Lynagh <igloo@earth.li>**20091128222953]
1831[Make driver035 parallelisable
1832Ian Lynagh <igloo@earth.li>**20091128222712]
1833[Make driver034 parallelisable
1834Ian Lynagh <igloo@earth.li>**20091128222402]
1835[Make driver032 and driver033 parallelisable
1836Ian Lynagh <igloo@earth.li>**20091128222110]
1837[Make driver031 parallelisable
1838Ian Lynagh <igloo@earth.li>**20091128221840]
1839[Make driver028 parallelisable
1840Ian Lynagh <igloo@earth.li>**20091128221704]
1841[Make driver027 parallelisable
1842Ian Lynagh <igloo@earth.li>**20091128221637]
1843[Make driver026 parallelisable
1844Ian Lynagh <igloo@earth.li>**20091128215610]
1845[Make driver025 parallelisable
1846Ian Lynagh <igloo@earth.li>**20091128214556]
1847[Make driver024a parallelisable
1848Ian Lynagh <igloo@earth.li>**20091128214322]
1849[Make driver022 and driver023 parallelisable
1850Ian Lynagh <igloo@earth.li>**20091128213834]
1851[Make driver021 parallelisable
1852Ian Lynagh <igloo@earth.li>**20091128213625]
1853[Make driver024 parallelisable
1854Ian Lynagh <igloo@earth.li>**20091128213022]
1855[Make driver019 parallelisable
1856Ian Lynagh <igloo@earth.li>**20091128212154]
1857[Make driver018* parallelisable
1858Ian Lynagh <igloo@earth.li>**20091128212029]
1859[Make driver017 parallelisable
1860Ian Lynagh <igloo@earth.li>**20091128211842]
1861[Make driver016 parallelisable
1862Ian Lynagh <igloo@earth.li>**20091128211816]
1863[Make driver014 and driver015 parallelisable
1864Ian Lynagh <igloo@earth.li>**20091128210459]
1865[Make driver013 parallelisable
1866Ian Lynagh <igloo@earth.li>**20091128210204]
1867[Make driver012 parallelisable
1868Ian Lynagh <igloo@earth.li>**20091128210041]
1869[Make driver011 parallelisable
1870Ian Lynagh <igloo@earth.li>**20091128205850]
1871[Make the driver/ tests declare themselves 'alone' individually
1872Ian Lynagh <igloo@earth.li>**20091128205533
1873 This way we can fix them one by one
1874]
1875[Print out how many tests we have done and the total when we run a test
1876Ian Lynagh <igloo@earth.li>**20091128181104
1877 This isn't perfect, as it doesn't account for tests that will be skipped
1878 in the total. But that's hard to work out, as we might skip a test in
1879 only some ways and we currently don't work out which ways to run it until
1880 later, so I think this is good enough for now.
1881]
1882[Gather all tests at once, rather than doing them directory by directory
1883Ian Lynagh <igloo@earth.li>**20091128180207
1884 This increases the parallelism possible, and allows us to track what
1885 progress we are making.
1886]
1887[Follow column number changes now that SrcLoc knows how tabs work
1888Ian Lynagh <igloo@earth.li>**20091128153543]
1889[Add some tests for error positions
1890Ian Lynagh <igloo@earth.li>**20091128150625]
1891[Follow column number changes
1892Ian Lynagh <igloo@earth.li>**20091128145450]
1893[Remove some @s from a Makefile
1894Ian Lynagh <igloo@earth.li>**20091128144830]
1895[Quoting fixes
1896Ian Lynagh <igloo@earth.li>**20091128144802]
1897[Follow column number changes in the break016 script
1898Ian Lynagh <igloo@earth.li>**20091128125754]
1899[Accept changes in break016 and break020
1900Ian Lynagh <igloo@earth.li>**20091128125439]
1901[Follow column number changes
1902Ian Lynagh <igloo@earth.li>**20091128005352]
1903[Follow column number changes in indexed-types/should_fail
1904Ian Lynagh <igloo@earth.li>**20091128001749]
1905[Follow column number changes in deriving/should_fail
1906Ian Lynagh <igloo@earth.li>**20091128001535]
1907[Follow column number changes in module
1908Ian Lynagh <igloo@earth.li>**20091128000900]
1909[Follow column number changes in rename/should_fail
1910Ian Lynagh <igloo@earth.li>**20091128000255]
1911[Follow column number changes in parser/should_fail
1912Ian Lynagh <igloo@earth.li>**20091127235453]
1913[Follow column number changes in tcfail
1914Ian Lynagh <igloo@earth.li>**20091127233405]
1915[rtsflags001: run only the normal way
1916Simon Marlow <marlowsd@gmail.com>**20091124102523]
1917[add 32-bit output
1918Simon Marlow <marlowsd@gmail.com>**20091124102456]
1919[ffi005: run only the via-C way on x86 platforms
1920Simon Marlow <marlowsd@gmail.com>**20091124101434
1921 due to 80-bit vs. 64-bit precision leading to floating point
1922 differences when using the native code generator.  -fvia-C uses the
1923 -ffloat-store gcc sledgehammer to avoid this.
1924]
1925[grab the target architecture from GHC, and add an if_arch() test
1926Simon Marlow <marlowsd@gmail.com>**20091124101223]
1927[Follow changes in tcfail073
1928Ian Lynagh <igloo@earth.li>**20091124001804]
1929[Follow changes in ghci011
1930Ian Lynagh <igloo@earth.li>**20091124001658]
1931[Make test 1959 even more informative when run by hand
1932Ian Lynagh <igloo@earth.li>**20091123212719]
1933[Fix test 1959
1934Ian Lynagh <igloo@earth.li>**20091123212708]
1935[Make test 1959 tell us what's going on
1936Ian Lynagh <igloo@earth.li>**20091123212535]
1937[Tweak testsuite results for 6.12 branch
1938Ian Lynagh <igloo@earth.li>**20091122161944]
1939[add a test for #3633
1940Simon Marlow <marlowsd@gmail.com>**20091120145056
1941 Ignore-this: 2bc645eefce88143d218447b0955f430
1942]
1943[accept output (for the time being)
1944Simon Marlow <marlowsd@gmail.com>**20091120143156
1945 Ignore-this: 2d0df30f243b6f22c23f1b9b522f7336
1946 the test output has changed due to differences in the compiled code
1947 for GHC.IO.Exception.ioError.
1948]
1949[make this test do what it was supposed to do
1950Simon Marlow <marlowsd@gmail.com>**20091120142907
1951 Ignore-this: 8f555308e8570e956e749f734b5ee7e
1952]
1953[accept output
1954Simon Marlow <marlowsd@gmail.com>**20091120102108
1955 Ignore-this: a500f2797238168afdbbd42fbf00055b
1956]
1957[add missing files
1958Simon Marlow <marlowsd@gmail.com>**20091117161023
1959 Ignore-this: aabd4f258ec4293682213d50dab5b555
1960]
1961[Bump the ulimits for outofmem/outofmem2
1962Simon Marlow <marlowsd@gmail.com>**20091117160230
1963 Ignore-this: fe6981dd4419219422b9459b044256ea
1964 They just started failing on x86-64/Linux here, no idea why.
1965]
1966[Accept wobbles in error messages
1967simonpj@microsoft.com**20091117125024
1968 Ignore-this: 8ab65ba7fb0d8a263ea4bef48daf292a
1969]
1970[Test for higher rank rules
1971simonpj@microsoft.com**20091117124949
1972 Ignore-this: 6b21f072e61968110e2395c8426eeb95
1973]
1974[fix framework failure
1975Simon Marlow <marlowsd@gmail.com>**20091113112345
1976 Ignore-this: e993d787a36d8394297fc3a2fc0e061c
1977]
1978[add test for #3586 (newArray performance)
1979Simon Marlow <marlowsd@gmail.com>**20091112144020
1980 Ignore-this: 9eaa959836eef25d55ec3d1025de1c26
1981]
1982[Rearrange perf-related tests
1983Simon Marlow <marlowsd@gmail.com>**20091112143943
1984 Ignore-this: 23349e39f3fca86494e6971fbfb3eaa0
1985 
1986   perf/            -- performance tests...
1987   perf/should_run  -- for generated code
1988   perf/compiler    -- for GHC itself
1989   perf/space_leaks -- for space leaks in generated code or the RTS
1990]
1991[Add coercion test for PushC rule
1992simonpj@microsoft.com**20091112115950
1993 Ignore-this: 6d01514c9f3c3b0210fccfdca039705c
1994]
1995[Fix setting of utf8 locale on Mac OS X
1996Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20091112002857
1997 Ignore-this: 7d710c5f8030ba0f572bb3888d983227
1998]
1999[add test for #3624
2000Simon Marlow <marlowsd@gmail.com>**20091109144626
2001 Ignore-this: 99aaae47f6ce6773e550f335cad7a527
2002]
2003[Track trace output
2004simonpj@microsoft.com**20091109104246
2005 Ignore-this: 28a01cf22284bb06ed1cf83c569d735d
2006]
2007[Fix finding GHC on cygwin
2008Ian Lynagh <igloo@earth.li>**20091107133429]
2009[Add test for Trac #3640
2010simonpj@microsoft.com**20091105172220
2011 Ignore-this: 95a5568df1f36a55f55290a1481319e9
2012]
2013[Track changes in duplicate/shadowed errors
2014simonpj@microsoft.com**20091105171343
2015 Ignore-this: f89d13fa61bf1b206fac1d2998a6d17a
2016]
2017[Fix quoting in the 3171 test
2018Ian Lynagh <igloo@earth.li>**20091105171455]
2019[Fix the code to append .exe to program paths
2020Ian Lynagh <igloo@earth.li>**20091105163040]
2021[The bindisttest GHC is now always in the same directory
2022Ian Lynagh <igloo@earth.li>**20091105160718
2023 We therefore don't have to try to work out if we are on Windows or not
2024 in order to find it.
2025]
2026[Add source file for T3234
2027simonpj@microsoft.com**20091105113934
2028 Ignore-this: 58931497be31da47de18d32fb053d42a
2029]
2030[Test Trac #3234 (foldr/single rule)
2031simonpj@microsoft.com**20091103155057
2032 Ignore-this: f6e41f8eb01de107ebc4dcd91e8fd70c
2033]
2034[Add test for Trac #1735
2035simonpj@microsoft.com**20091104230920
2036 Ignore-this: 8cccf608a2db46fe64f6ca465e42333d
2037]
2038[add test for #3604 (template-haskell + -dynamic)
2039Simon Marlow <marlowsd@gmail.com>**20091104141623
2040 Ignore-this: 3e97399bfcc83ad991844a18dba49d3b
2041]
2042[add config.have_shared_libs
2043Simon Marlow <marlowsd@gmail.com>**20091104141602
2044 Ignore-this: 56d5180cfb2c398b68b1b4509856a6be
2045]
2046[add a test for single-stepping over getArgs
2047Simon Marlow <marlowsd@gmail.com>**20091103165423
2048 Ignore-this: dff2b0f4825234a32057e42ba4d3f4e8
2049]
2050[Only run T3294 if we have an NCG (#3548)
2051Simon Marlow <marlowsd@gmail.com>**20091103121126
2052 Ignore-this: 87d6f9bfaa8557ce12a3c39a48ee7bc6
2053]
2054[Track change in how LANGUAGE-pragma errors are reported
2055simonpj@microsoft.com**20091102172730
2056 Ignore-this: 6524c82c2fcf1c2a401b5408543c35e6
2057]
2058[Add -fno-warn-deprecated-flags to tests involving -XImpredicativeTypes
2059simonpj@microsoft.com**20091102145236
2060 Ignore-this: 72073af560c642a2cba1b73af9c579b3
2061 
2062 Now that -XImpredicativeTypes is deprecated, suppress the warning
2063]
2064[Add test for Trac #3621
2065simonpj@microsoft.com**20091029164034
2066 Ignore-this: db06616aff863b98e32d03b2cd11543a
2067]
2068[Update tests for INLINE patch
2069simonpj@microsoft.com**20091029115217
2070 Ignore-this: 5e59b11610b5959be11870e23561652f
2071]
2072[Add stderr files for depreceated-mdo warnings
2073simonpj@microsoft.com**20091029110009
2074 Ignore-this: 44f66966feab44cbfcd7e353895b04db
2075]
2076[Add undecidable instance test
2077simonpj@microsoft.com**20091029100304
2078 Ignore-this: 1c11f13de056188af33846472a1e8176
2079]
2080[Don't use threads on Windows
2081Ian Lynagh <igloo@earth.li>**20091028175421
2082 It seems to cause some sort of deadlock
2083]
2084[Test Trac #3613, and track error message change
2085simonpj@microsoft.com**20091028154810
2086 Ignore-this: 424cdcc459da20dd84bd9c09e65da0de
2087]
2088[Track changes arising from improved location info in list comprehensions
2089simonpj@microsoft.com**20091028154735
2090 Ignore-this: f31abf18ad5fd5bbf28dd5389246efe
2091]
2092[Add test for 'rec' in do blocks
2093simonpj@microsoft.com**20091028154137
2094 Ignore-this: 5a661bcff3acdf7632169b21d6587670
2095]
2096[Update tests following deprecating mdo
2097simonpj@microsoft.com**20091028154027
2098 Ignore-this: ae1677b319abf946c5cc2a85f5c98aab
2099]
2100[Add missing stdout file for T3591
2101simonpj@microsoft.com**20091026092600
2102 Ignore-this: c3a14010a4c324e8b086c589f4e68245
2103]
2104[Update test so it does not use Control.Monad.Reader
2105simonpj@microsoft.com**20091026092332
2106 Ignore-this: 445bb58f3549572f2bbcaaf20d8e86b9
2107]
2108[Test Trac #3590
2109simonpj@microsoft.com**20091021153401
2110 Ignore-this: 3b84e69e7e0ecfc8c80de15a201773ae
2111]
2112[Always use the python timeout program on non-Windows
2113Ian Lynagh <igloo@earth.li>**20091025155424
2114 Use a python timeout program, so that we don't have to worry about
2115 whether or not the compiler we're testing has built the timeout
2116 program correctly
2117 
2118 The python timeout program doesn't work on mingw, so we still use the
2119 Haskell program on Windows
2120]
2121[Complete timeout.py's unix support
2122Ian Lynagh <igloo@earth.li>**20091025151821]
2123[More quoting fixes
2124Ian Lynagh <igloo@earth.li>**20091022000028]
2125[Quoting fixes
2126Ian Lynagh <igloo@earth.li>**20091021140545]
2127[Normalise slashes
2128Ian Lynagh <igloo@earth.li>**20091021124749]
2129[Quoting fixes
2130Ian Lynagh <igloo@earth.li>**20091021114723]
2131[Always use / to join paths; stops "make -C .\ clean" being misparsed
2132Ian Lynagh <igloo@earth.li>**20091021114601]
2133[Quoting fix
2134Ian Lynagh <igloo@earth.li>**20091021114048]
2135[Fix more path quoting
2136Ian Lynagh <igloo@earth.li>**20091021113037]
2137[Add more quoting for paths with spaces
2138Ian Lynagh <igloo@earth.li>**20091013154240]
2139[Test Trac #3591
2140simonpj@microsoft.com**20091020153719
2141 Ignore-this: 8959e243135e0afe1b37edef64a05e98
2142]
2143[renamed prof_ways -> extra_prof_ways to avoid clash
2144Simon Marlow <marlowsd@gmail.com>**20091020095920
2145 Ignore-this: 2e2bc6ea216af7c92100f4815e10289b
2146]
2147[Adapt test to avoid uniquies
2148simonpj@microsoft.com**20091020125421
2149 Ignore-this: 8b9d9862ce736edc00731dfd98ff61ec
2150]
2151[Test Trac #3600
2152simonpj@microsoft.com**20091020080443
2153 Ignore-this: 3bf6c6e3057e15fbc81b4cb4d7bbd190
2154]
2155[omit prof ways for ffi005
2156Simon Marlow <marlowsd@gmail.com>**20091016084735
2157 Ignore-this: 6f86586bd8619c2c8ef48edfb3453c26
2158]
2159[add classes of ways: prof_ways and threaded_ways
2160Simon Marlow <marlowsd@gmail.com>**20091016084722
2161 Ignore-this: 2cdf387557ed74ef3344afcd30666919
2162]
2163[tcfail188 compiles fine, now that Trac #959 is fixed
2164simonpj@microsoft.com**20091015122716
2165 Ignore-this: 9a48055e6190494263673b7b31eff349
2166]
2167[Test Trac #3263
2168simonpj@microsoft.com**20091015113930
2169 Ignore-this: dd25cdf88c0b3fa5d3208370330e925
2170]
2171[Test Trac #3572
2172simonpj@microsoft.com**20091015112954
2173 Ignore-this: c406dc59f283fb27e35ee893fcc48258
2174]
2175[re-enable ffi005 with the non-portable bits removed
2176Simon Marlow <marlowsd@gmail.com>**20091014135945
2177 Ignore-this: bae1ba5a6f9846feb43a164b85e63af4
2178]
2179[add a test for foreign import '&foo' with GHCi
2180Simon Marlow <marlowsd@gmail.com>**20091014135154
2181 Ignore-this: d67f40340cb8a5f3659d3fc82b6d8f29
2182]
2183[might as well make the finalizer do a callback to make the test more interesting
2184Simon Marlow <marlowsd@gmail.com>**20091014133651
2185 Ignore-this: d0cf65c656ac266205789b7fc8b3824a
2186]
2187[add test for #3579
2188Simon Marlow <marlowsd@gmail.com>**20091014103109
2189 Ignore-this: adec758a51a433cf8a0d52bcfa870236
2190]
2191[add test program from #3561
2192Simon Marlow <marlowsd@gmail.com>**20091013110835
2193 Ignore-this: 5db8e8f8c9e729e620953c69c8c67e4c
2194]
2195[Fix quoting in the testsuite timeout program's Makefile
2196Ian Lynagh <igloo@earth.li>**20091013144352]
2197[Define BIN_ROOT in a way that works if the path contains spaces
2198Ian Lynagh <igloo@earth.li>**20091013125358]
2199[Fix the config.timeout setting
2200Ian Lynagh <igloo@earth.li>**20091013124252]
2201[Add some diagnostics to timeout
2202Ian Lynagh <igloo@earth.li>**20091013124204]
2203[Switch back to a BIN_ROOT definition that works on all platforms
2204Ian Lynagh <igloo@earth.li>**20091013121846
2205 provided there are no spaces in the path
2206]
2207[Fixes for spaces in paths
2208Ian Lynagh <igloo@earth.li>**20091013115808]
2209[Fixes for paths containing spaces
2210Ian Lynagh <igloo@earth.li>**20091013113417]
2211[ghc is "ghc.exe", not "ghc", on Windows
2212Ian Lynagh <igloo@earth.li>**20091013110938]
2213[Fix the Windows detection in the testsuite Makefiles
2214Ian Lynagh <igloo@earth.li>**20091013110615
2215 We need to look at "ghc +RTS --info", not "ghc --info".
2216]
2217[T1074 needs mtl
2218Ian Lynagh <igloo@earth.li>**20091009225330]
2219[Tell the testsuite driver about the bindisttest GHC location
2220Ian Lynagh <igloo@earth.li>**20091009203043]
2221[Drop "NEW_BUILD_SYSTEM_" prefix on Makefile variable names
2222Ian Lynagh <igloo@earth.li>**20091009194209]
2223[Remove old build system support from the testsuite makefiles
2224Ian Lynagh <igloo@earth.li>**20091009193748]
2225[tweak T1969 values on x86-64
2226Simon Marlow <marlowsd@gmail.com>**20091008110545
2227 Ignore-this: 5ecf9b8e39bb22f6fab1764763c3a1cf
2228]
2229[Test -XExplicitForALl
2230simonpj@microsoft.com**20091007155725
2231 Ignore-this: 72391b90a12fbbd194897decb2d0f742
2232]
2233[tidy up
2234Simon Marlow <marlowsd@gmail.com>**20091006123420
2235 Ignore-this: a577ddd29deb53d86f2718190d33562f
2236]
2237[Add a test for shadowing/overlapping packages with Cabal
2238Simon Marlow <marlowsd@gmail.com>**20091006123415
2239 Ignore-this: e184a9a859af6e13b1c378462d9e402
2240]
2241[the threaded2 way tests event logging too
2242Simon Marlow <marlowsd@gmail.com>**20090930084841
2243 Ignore-this: 64146a607ace4508fea4e5999067204c
2244]
2245[Fix #3551: conc0{69,70} should be skipped when -threaded is not available
2246Simon Marlow <marlowsd@gmail.com>**20090929145526
2247 Ignore-this: baa4b7199433f7684cfbad247be89283
2248]
2249[Tweak tcrun007 to not depend on syb
2250Ian Lynagh <igloo@earth.li>**20091003212610]
2251[Update tests; ghc is a bit more consistent about flags
2252simonpj@microsoft.com**20091002072021
2253 Ignore-this: 7441d47cd9ce86d45bf1d1eeb8c4d8ea
2254]
2255[Track error message changes
2256simonpj@microsoft.com**20090930110742
2257 Ignore-this: cac29e62d8f2e0a6293db4969ad9e8c3
2258]
2259[Test Trac #3540
2260simonpj@microsoft.com**20090930110712
2261 Ignore-this: 1329e8d3902ccf4080c3f4dfe4c90b9d
2262]
2263[tweak the boundaries for T1969 (we got better)
2264Simon Marlow <marlowsd@gmail.com>**20090929113638
2265 Ignore-this: 44b2b0d767aa942724115b4f3bf7a8a6
2266]
2267[wibbles to setting LC_ALL, trying to fix buildbot test failures
2268Simon Marlow <marlowsd@gmail.com>**20090929090410
2269 Ignore-this: ea290fa166ce8ff81bff95c928404453
2270]
2271[tweak acceptable limits for T3294
2272Simon Marlow <marlowsd@gmail.com>**20090928133758
2273 Ignore-this: 669aa7582240e174bc705e2ac72b3d21
2274]
2275[Tweak tcfail163 to not need syb
2276Ian Lynagh <igloo@earth.li>**20090922215149]
2277[tc191 and tc220 need syb
2278Ian Lynagh <igloo@earth.li>**20090922215017]
2279[Tweak ds055 to not need syb
2280Ian Lynagh <igloo@earth.li>**20090922214835]
2281[drvrun022 needs syb
2282Ian Lynagh <igloo@earth.li>**20090922214543]
2283[Tweak deriving-1935 to not need syb
2284Ian Lynagh <igloo@earth.li>**20090922214439]
2285[Move syb tests from the testsuite repo to the syb repo
2286Ian Lynagh <igloo@earth.li>**20090922212525]
2287[T3087 need syb
2288Ian Lynagh <igloo@earth.li>**20090922212502]
2289[Tweak T2573 to not need syb
2290Ian Lynagh <igloo@earth.li>**20090922210550]
2291[Tweak T2394 to not need syb
2292Ian Lynagh <igloo@earth.li>**20090922205045]
2293[Tweak T2378 to not need syb
2294Ian Lynagh <igloo@earth.li>**20090922204936]
2295[arith008(dyn) and arith012(dyn) are expected failures on x86
2296Simon Marlow <marlowsd@gmail.com>**20090918125134]
2297[add test for #2881
2298Simon Marlow <marlowsd@gmail.com>**20090918124532
2299 Ignore-this: 253d872d99e5caa568b63639bdfb70c9
2300]
2301[expand the test for shadowing to include overriding with -package-id
2302Simon Marlow <marlowsd@gmail.com>**20090917120250
2303 Ignore-this: d1499b3bb7e693817b83fc10bdd2d395
2304]
2305[Fix runtests.py for Python 2.6.1
2306Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20090917105117
2307 Ignore-this: 11f9aaab6c3e93bca0bff3e8b3603f04
2308 - This is the version of Python that comes with Snow Leopard
2309]
2310[accept output
2311Simon Marlow <marlowsd@gmail.com>**20090914134844
2312 Ignore-this: ce62cebb1bc44889a027ea4d2ee89fb2
2313]
2314[use "ghc-pkg init" to create databases, and update test output
2315Simon Marlow <marlowsd@gmail.com>**20090914105851
2316 Ignore-this: 89cd71a2cf2ffaca6fcd9da44dde69bd
2317]
2318[add a test for the NCG space leak I found while looking at #3294
2319Simon Marlow <marlowsd@gmail.com>**20090914105002]
2320[update to not require -fglasgow-exts
2321Simon Marlow <marlowsd@gmail.com>**20090911134243
2322 Ignore-this: c779a91dc6adff182ca415cc0650ccef
2323]
2324[remove -fglasgow-exts
2325Simon Marlow <marlowsd@gmail.com>**20090911125732
2326 Ignore-this: 75112c664be1e5329bb0928beff4e061
2327]
2328[Use +RTS -I0.1 -RTS for ghci tests
2329Simon Marlow <marlowsd@gmail.com>**20090911125702
2330 Ignore-this: 642db417f7460a307819cb2b12d700b2
2331 Now that GHCi has a longer default idle GC time
2332]
2333[Update tests to not rely on -fglasgow-exts
2334Simon Marlow <marlowsd@gmail.com>**20090911125458
2335 Ignore-this: 31ad4e4ef43cf9d9519b9390bfae66cb
2336]
2337[make this test more robust, don't depend on the format of package.conf
2338Simon Marlow <marlowsd@gmail.com>**20090911132255
2339 Ignore-this: 4f724d35ff62505a9ece79e57aba17c6
2340]
2341[accept output
2342Simon Marlow <marlowsd@gmail.com>**20090911090801
2343 Ignore-this: 22a874484c7e6d8778bc9cb9efd16f1
2344]
2345[Test nested splices: TH_NestedSplices
2346simonpj@microsoft.com**20090911090629
2347 Ignore-this: 7de5c9bb9f09d608a6c53d99ab8deb69
2348]
2349[Follow TH changes
2350simonpj@microsoft.com**20090910132948
2351 Ignore-this: 97e9d3ff4fc76e17433ea8b0098b504f
2352]
2353[Track changes in error message format (TH related)
2354simonpj@microsoft.com**20090910132238
2355 Ignore-this: f5603863af6f74d3b962bff67b1186dc
2356]
2357[Update output
2358simonpj@microsoft.com**20090910131048
2359 Ignore-this: 71335c64b8afa855886336f01e049f80
2360]
2361[Add test for empty data declarations
2362simonpj@microsoft.com**20090904135719
2363 Ignore-this: 81132b905e487c41cb0b20d043b230e4
2364 
2365 Test some modest extensions of empty data decls:
2366    data T1 :: * -> *
2367    data T2 :: * where
2368 
2369]
2370[Test Trac #3467
2371simonpj@microsoft.com**20090830220420
2372 Ignore-this: e1b511a4462bfbdfa9d44219a5d0e2fd
2373]
2374[Add output for T3403
2375simonpj@microsoft.com**20090910123153
2376 Ignore-this: 79feb3a6aafc4f1665ee66762967e0c0
2377]
2378[update tests following package-related changes in GHC/ghc-pkg
2379Simon Marlow <marlowsd@gmail.com>**20090910115403
2380 Ignore-this: ab12e0e5e335473e8cfad1603674ed78
2381]
2382[Make this test a little more stable
2383Matthias Kilian <kili@outback.escape.de>**20090829102358
2384 Ignore-this: b6e4f541193b785410af602eeb6816aa
2385 
2386 On slow machines, ghci can take more than one second to launch,
2387 which produces confusing failure output like
2388 
2389 +cat: 3171.pid: No such file or directory
2390 +usage: kill [-s signame | -signum | -signame] { job | pid | pgrp } ...
2391 +       kill -l [exit_status ...]
2392 
2393 Fix this by
2394 
2395 1) increasing the time before sending a SIGINT from 1 to 2 seconds,
2396 2) running the test program in the background and asking the shell for
2397    its pid instead of relying on the program to write the pid file
2398    quick enough.
2399 
2400 Of course you'll still see failures on *very* slow or overloaded
2401 machines; that would probably a stderr diff like `-Interrupted'.
2402 
2403]
2404[expect_broken(3498): unicode output doesn't work on Windows (yet)
2405Simon Marlow <marlowsd@gmail.com>**20090909132447
2406 Ignore-this: 86ff6937b615cb332080abb30d51e1ca
2407]
2408[accept output
2409Simon Marlow <marlowsd@gmail.com>**20090908145608
2410 Ignore-this: a4e321a6312d0a971ae004fb6c37a1ce
2411]
2412[add a test for package shadowing
2413Simon Marlow <marlowsd@gmail.com>**20090906112234
2414 Ignore-this: c67c26ca3ff1fa84795400583270a075
2415]
2416[Test Trac #3403
2417simonpj@microsoft.com**20090908131728
2418 Ignore-this: 28d36facd5b29885e35cf7e03ee2fed6
2419]
2420[Test Trac #3468
2421simonpj@microsoft.com**20090908125744
2422 Ignore-this: e4647da95ea2a7bcb4f48cb6cddc8bbd
2423]
2424[tweak the values on x86-64/Linux (max_bytes_used improved)
2425Simon Marlow <marlowsd@gmail.com>**20090908103124
2426 Ignore-this: 68d835bf9cedeaed558e9031242ac601
2427]
2428[omit various non-optimised ways for space_leak_001
2429Simon Marlow <marlowsd@gmail.com>**20090908102828
2430 Ignore-this: 5ee32992a22c97ce9934f41afd572c86
2431]
2432[accept output
2433Simon Marlow <marlowsd@gmail.com>**20090908102234
2434 Ignore-this: 9a27198973ff8b24babd4dfd91095f31
2435]
2436[omit prof ways for ffi020
2437Simon Marlow <marlowsd@gmail.com>**20090908102043
2438 Ignore-this: aa413ce3f4870f362d94761dd6059755
2439]
2440[Use a stable ordering of the export list
2441Simon Marlow <marlowsd@gmail.com>**20090908101607
2442 Ignore-this: 45889cb9ad7add61a8f2327f22274c3
2443]
2444[T3391: omit profc, profasm
2445Simon Marlow <marlowsd@gmail.com>**20090908100123
2446 Ignore-this: 40c4326534af9123fd2fa570db07c49f
2447]
2448[follow changes from #3310
2449Simon Marlow <marlowsd@gmail.com>**20090830153325
2450 Ignore-this: 670b7c1ef02114a8d8ceb3f0698d49
2451]
2452[fix a bug: the sequence was incorrect, rather than incomplete
2453Simon Marlow <marlowsd@gmail.com>**20090829173621
2454 Ignore-this: 102cebecb218e2df8df33d46576810fd
2455]
2456[update ghc-pkg tests following the addition of installedPackageId
2457Simon Marlow <marlowsd@gmail.com>**20090825075513
2458 Ignore-this: 11e93fe86f380719a29acfaf7b5356b6
2459]
2460[follow change in Cabal: package -> sourcePackageId
2461Simon Marlow <marlowsd@gmail.com>**20090825075134
2462 Ignore-this: a8a6691cebf577efcb788fdb771e6f5a
2463]
2464[Test Trac #3406
2465simonpj@microsoft.com**20090825073011
2466 Ignore-this: 41fbfb08f09cfffae469f0b8fd44a54b
2467]
2468[add extra_clean for T3286
2469Simon Marlow <marlowsd@gmail.com>**20090824091047
2470 Ignore-this: 45f1ed1ca4d9ddeb6851eb71fcc75da0
2471]
2472[TFs: T3423 was missing -XFlexibleInstances
2473Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20090824025100
2474 Ignore-this: 748adedd772e71de8ce6ef2923275c7b
2475]
2476[TFs: T3220
2477Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20090824024755
2478 Ignore-this: 3032db152dd0668bb1f2f39d8d50b7f
2479]
2480[Test Trac #2850
2481simonpj@microsoft.com**20090821211351
2482 Ignore-this: 55733f9b3a70231c38a8aeda2606dd89
2483]
2484[Test Trac #3423
2485simonpj@microsoft.com**20090821210544
2486 Ignore-this: 6fefeb3dfa3fdb3d263b9c4d420792ff
2487]
2488[Use the dynamic way if we have a dynamic RTS
2489Ian Lynagh <igloo@earth.li>**20090821153355]
2490[Add a dynamic hello world test, that gets run during validate
2491Ian Lynagh <igloo@earth.li>**20090821153314]
2492[Test Trac #3371
2493simonpj@microsoft.com**20090821100750
2494 Ignore-this: 2f20fa7f0cc2332f35cb3240638a7589
2495]
2496[Test Trac #3437
2497simonpj@microsoft.com**20090821095347
2498 Ignore-this: e3f80cd609ddf79b2b245e7c848bb005
2499]
2500[Track wording changes in error messages
2501simonpj@microsoft.com**20090820162121
2502 Ignore-this: cc430b5e53ee4c284655b0aea40d6ce6
2503]
2504[add the test from #3424
2505Simon Marlow <marlowsd@gmail.com>**20090820145325
2506 Ignore-this: 88bc0b2e548875961b69400fa724f0a
2507]
2508[follow changes in the base package
2509Simon Marlow <marlowsd@gmail.com>**20090819142958
2510 Ignore-this: cb7b532ad97a6048c487376771ff401f
2511]
2512[accept output
2513Simon Marlow <marlowsd@gmail.com>**20090819142333
2514 Ignore-this: 9f6d0bebea8626427860ae3295239d8c
2515]
2516[Update output
2517simonpj@microsoft.com**20090820123151
2518 Ignore-this: 4f4cb42b35ca820a0039406b437b1be2
2519]
2520[accept output
2521Simon Marlow <marlowsd@gmail.com>**20090819142418]
2522[add threaded2_qw way, which is threaded2 with +RTS -qw
2523Simon Marlow <marlowsd@gmail.com>**20090819130704
2524 Ignore-this: de00b72ca34d0cce9416455b6af5ac66
2525]
2526[TFs: T3418
2527Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20090820105418
2528 Ignore-this: 6fe5caf8af245d792f7b9e4c9be58d68
2529]
2530[TFs: test cases for #2767 & #3208
2531Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20090820073343
2532 Ignore-this: a9c06c0d0fcc72c0cf59e5c94271005b
2533]
2534[add test for an illegal C finalizer callback
2535Simon Marlow <marlowsd@gmail.com>**20090819123952
2536 Ignore-this: 4de54a86ba9d6d588ea7d6008ba84737
2537]
2538[the remaining part of #1548 is now fixed
2539Simon Marlow <marlowsd@gmail.com>**20090819120141
2540 Ignore-this: 4d90dde10d3987b4fab8b4309a5fb6ed
2541]
2542[Add a test for trac #3286
2543Ian Lynagh <igloo@earth.li>**20090819113724]
2544[add test for #3429
2545Simon Marlow <marlowsd@gmail.com>**20090818140030
2546 Ignore-this: 3ad7efc0274575bb7290ca952533c594
2547]
2548[Add a test for #3007
2549Ian Lynagh <igloo@earth.li>**20090813161943]
2550[Test Trac #3409
2551simonpj@microsoft.com**20090813161540
2552 Ignore-this: e4093d296c05c4b5532588f2a04c2210
2553]
2554[Add a test for #3303: multiline deprecated warnings
2555Ian Lynagh <igloo@earth.li>**20090812185743]
2556[Trac change in Template Haskell errors
2557simonpj@microsoft.com**20090811141150
2558 Ignore-this: 979cdffc2f7cf47db2174314dc0429bd
2559]
2560[Test Trac #3395
2561simonpj@microsoft.com**20090810142619
2562 Ignore-this: 112740b5a4cff3c501bd8da0cac1ee42
2563]
2564[Test Trac #2395
2565simonpj@microsoft.com**20090810140953
2566 Ignore-this: 7992f4b5a513c2c96645453308a8035a
2567]
2568[Test for group being a special_id when TransformListComp is on
2569Max Bolingbroke <batterseapower@hotmail.com>**20090717224849
2570 Ignore-this: 850192f55096c6d373b797255aa0b236
2571]
2572[Regression test for Trac #2395
2573Alexander Dunlap <alexander.dunlap@gmail.com>**20090807190019
2574 Ignore-this: a60faf89928344e7c9982646ce0193f9
2575]
2576[remove deprecated -#include flag
2577Simon Marlow <marlowsd@gmail.com>**20090805105047
2578 Ignore-this: b9aa8cbf54564941c544ae78ba3cb376
2579]
2580[fix tests after RTS tidyup
2581Simon Marlow <marlowsd@gmail.com>**20090803123501
2582 Ignore-this: 3ea78cb5bb05e68c634bcc961c13d9a0
2583]
2584[Remove the DiffArray tests
2585Ian Lynagh <igloo@earth.li>**20090802132048
2586 They're now in the diffarray package
2587]
2588[Add a test for trac #789
2589Ian Lynagh <igloo@earth.li>**20090801153538]
2590[Update array test outputs
2591Ian Lynagh <igloo@earth.li>**20090730153649]
2592[add test for atomic_inc()/atomic_dec()
2593Simon Marlow <marlowsd@gmail.com>**20090729075547
2594 Ignore-this: f754a4aaa6aa21458375e299f2e7141b
2595]
2596[2816 is if_platform('i386-unknown-mingw32',expect_broken(3398))
2597Simon Marlow <marlowsd@gmail.com>**20090727143202
2598 Ignore-this: a9e5f453ce3b5a951c2364cfcebd7cbe
2599]
2600[bump limits for T1969 again (it was failing on Windows)
2601Simon Marlow <marlowsd@gmail.com>**20090724091355
2602 Ignore-this: b384a8221a8dec7a89522ee79de2dbf6
2603]
2604[Test for make supporting abspath, and fail if it doesn't
2605Ian Lynagh <igloo@earth.li>**20090726135136
2606 This fixes problems using GNU make 3.80.
2607]
2608[add --no-user-package-conf for ghc-pkg tests
2609Simon Marlow <marlowsd@gmail.com>**20090724151549
2610 Ignore-this: 58db107bb49d62173ad46881cd956599
2611]
2612[add -no-user-package-conf to GHC command lines
2613Simon Marlow <marlowsd@gmail.com>**20090724123813
2614 Ignore-this: 57b0e90bfcb89d1793a2c61c014b5414
2615]
2616[Test Trac #3391
2617simonpj@microsoft.com**20090723160523
2618 Ignore-this: dbd9e3f6cb4ce6564aa1d6e9c8339a28
2619]
2620[Follow output changes (braces in do-notation)
2621simonpj@microsoft.com**20090723152556
2622 Ignore-this: 74e9ad4d85c7624114084ad8eb054910
2623]
2624[fix broken test on Windows
2625Simon Marlow <marlowsd@gmail.com>**20090723120826
2626 Ignore-this: b7be929f7d1302f59cd74cf1eff4aade
2627]
2628[Follow output
2629simonpj@microsoft.com**20090723131845
2630 Ignore-this: 78fe9e7daf9d70c06da6dfb0332575f7
2631]
2632[Test standalone deriving for GADTs
2633simonpj@microsoft.com**20090723100441
2634 Ignore-this: b45fafc180241619d364f1080215869f
2635]
2636[Tweak tests for unboxed tuple sections
2637Max Bolingbroke <batterseapower@hotmail.com>**20090717214231
2638 Ignore-this: 6abc5631f1028b628f155f0a20ece4da
2639]
2640[Tests for unboxed tuple sections
2641Max Bolingbroke <batterseapower@hotmail.com>**20090717212443
2642 Ignore-this: 3a31b5c69acb53e3f543c8fb92aca38e
2643]
2644[Tests for basic TupleSections
2645Max Bolingbroke <batterseapower@hotmail.com>**20090717204659
2646 Ignore-this: 7bf3a8e08b6b654f5dd9a9fba31f9cbe
2647]
2648[Use /usr/bin/env to find Python
2649Simon Marlow <marlowsd@gmail.com>**20090723075156
2650 Ignore-this: e6315057539fb198d98909cb1dda243f
2651 
2652 Contributed by: Krister Walfridsson <krister.walfridsson@gmail.com>
2653]
2654[Follow Integer changes
2655Ian Lynagh <igloo@earth.li>**20090721234536]
2656[accept output
2657Simon Marlow <marlowsd@gmail.com>**20090722122529
2658 Ignore-this: 35b847e78b8062dac668425dcf3e7a57
2659]
2660[Give us some more breathing room in T1969. 
2661Simon Marlow <marlowsd@gmail.com>**20090722122518
2662 Ignore-this: 550cf0b0b58bf69f57858dccc9e4e416
2663 
2664 Memory use went up a little with my change to external names, as most
2665 names got longer.  However, we're still doing better than 6.10 on this
2666 test, so I don't mind bumping the limit a bit.
2667]
2668[tc215 works now that Trac #366 is done
2669simonpj@microsoft.com**20090722105733
2670 Ignore-this: e9f108b8632316cc2d9c23370121d03
2671]
2672[Test pattern-match overlap checking for GADTs
2673simonpj@microsoft.com**20090722051806
2674 Ignore-this: 355ff54d49f196f3b4e769ce486786f0
2675]
2676[Test for Trac #3382
2677simonpj@microsoft.com**20090720060155
2678 Ignore-this: b8a90bfdf4219235cf0adb51c0d36e36
2679]
2680[Add a test for #1647
2681Ian Lynagh <igloo@earth.li>**20090719181425]
2682[Add a test for #3055
2683Ian Lynagh <igloo@earth.li>**20090717222040]
2684[Add test for Trac #3346
2685simonpj@microsoft.com**20090717155827
2686 Ignore-this: 52203cff9520f0f502612cf5880e660c
2687]
2688[accept output after changes to dfun naming
2689Simon Marlow <marlowsd@gmail.com>**20090716144125
2690 Ignore-this: 295a3d8c86c533edb40d077a1fbdf2e5
2691]
2692[Update mode001
2693Ian Lynagh <igloo@earth.li>**20090716000721
2694 The earlier of --help and --version now determines the behaviour
2695]
2696[add utf8_bom codec
2697Simon Marlow <marlowsd@gmail.com>**20090715131505
2698 Ignore-this: 27a198bd9ed3112005c43551109acd58
2699]
2700[Test derived Foldable instance
2701m.niloc@gmail.com**20090711130821
2702 Ignore-this: 830f4b824bd469df0de947f32b4f9c1c
2703]
2704[Add a test for #1074
2705Ian Lynagh <igloo@earth.li>**20090711191937]
2706[Add a test for #1792
2707Ian Lynagh <igloo@earth.li>**20090711191508]
2708[TFs: Added T2203b
2709Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20090710064638
2710 Ignore-this: 8d0c3101f03a76b2fd13e1032aefeffe
2711]
2712[TFs: fixed should_compile/Simple8 & wibbles
2713Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20090710035536
2714 Ignore-this: 66b4c2ad6a5f594f2fd6fcf51be78d6a
2715]
2716[T3016: skip_if_fast, and omit optc too.
2717Simon Marlow <marlowsd@gmail.com>**20090709144504
2718 Ignore-this: 26d695f84bf0393da3f1e1862140384f
2719]
2720[disable T3016(profc), gcc takes ages
2721Simon Marlow <marlowsd@gmail.com>**20090709104147
2722 Ignore-this: 4accafb20b11f18bb389be86aa84a331
2723]
2724[Tests for unused imports
2725simonpj@microsoft.com**20090706111329
2726 Ignore-this: 477db02945a12e468d0adc9181ece35d
2727]
2728[TFs: T2677
2729Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20090707054749
2730 Ignore-this: 8ca0fd55918fc3b5a7cd2b7407b7195a
2731]
2732[Update cabal01 test for Cabal change
2733Ian Lynagh <igloo@earth.li>**20090705194639]
2734[Make changes to -fwarn-unused-do-bind and -fwarn-wrong-do-bind suggested by SPJ
2735Max Bolingbroke <batterseapower@hotmail.com>**20090702150957
2736 Ignore-this: a79f826df7152b7b5a253a05f90d4128
2737]
2738[Support for -fwarn-unused-do-bind and -fwarn-wrong-do-bind, as per #3263
2739Max Bolingbroke <batterseapower@hotmail.com>**20090701200441
2740 Ignore-this: b762c27276c3e1e3aff614640f27903d
2741]
2742[Test Trac #3342
2743simonpj@microsoft.com**20090702124700
2744 Ignore-this: 3d47a4e0c60d0ad4db266869cdb74ec9
2745]
2746[Track error message change
2747simonpj@microsoft.com**20090702095512
2748 Ignore-this: 47db428ab8f9a6e2f0903fc84c1d547b
2749]
2750[NonLinearSigErr is actually OK
2751simonpj@microsoft.com**20090702095452
2752 Ignore-this: ef3db790608ce2d9b4a26cbc450b93c1
2753]
2754[Track change in record syntax for GADTs
2755simonpj@microsoft.com**20090702095341
2756 Ignore-this: f566b1130a4dff0a81d92a262d794d
2757]
2758[TFs: nullary families are ok
2759Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20090702093629
2760 Ignore-this: ef5783432881e51f4f88b806aaacc1cf
2761]
2762[add readwrite003 (from bug #679)
2763Simon Marlow <marlowsd@gmail.com>**20090701104449
2764 Ignore-this: 657cea9c9506a5f961877cdb77313ab7
2765]
2766[Remove hacky GCC setting
2767Simon Marlow <marlowsd@gmail.com>**20090626140827
2768 Ignore-this: 698a64c4f09be46340d04aeb0f9be8d
2769 It isn't necessary now that Cabal can find gcc in the new layout, and
2770 it was taking a long time (2.5s on Windows every time you start up
2771 make in the testsuite)
2772]
2773[accept output after fixes to FFI declaration pretty-printing
2774Simon Marlow <marlowsd@gmail.com>**20090626103342
2775 Ignore-this: 34d49ce46f4fac185e110ae6c27e8c35
2776]
2777[add test for #3319
2778Simon Marlow <marlowsd@gmail.com>**20090626103159
2779 Ignore-this: 7b77c0bb4137b9174e76c6c5aa9a9bd4
2780]
2781[TAG 2009-06-25
2782Ian Lynagh <igloo@earth.li>**20090625160429]
2783Patch bundle hash:
2784f05b1ab206e65edea3766eae6cf5ae1f85b16718