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