| 1 | Tue Mar 17 16:55:03 CET 2009 Thorkil Naur <naur@post11.tele.dk> |
|---|
| 2 | * Avoid error message from some shells when cygpath does not exist |
|---|
| 3 | |
|---|
| 4 | New patches: |
|---|
| 5 | |
|---|
| 6 | [Avoid error message from some shells when cygpath does not exist |
|---|
| 7 | Thorkil Naur <naur@post11.tele.dk>**20090317155503] hunk ./mk/boilerplate.mk 16 |
|---|
| 8 | |
|---|
| 9 | define canonicalise |
|---|
| 10 | # $1 = path variable |
|---|
| 11 | -$1_CYGPATH := $$(shell cygpath -m $$($1) 2> /dev/null) |
|---|
| 12 | +$1_CYGPATH := $$(shell sh -c "cygpath -m $$($1)" 2> /dev/null) |
|---|
| 13 | ifneq "$$($1_CYGPATH)" "" |
|---|
| 14 | $1 := $$($1_CYGPATH) |
|---|
| 15 | endif |
|---|
| 16 | |
|---|
| 17 | Context: |
|---|
| 18 | |
|---|
| 19 | [Add test for Trac #2994 |
|---|
| 20 | simonpj@microsoft.com**20090205091029 |
|---|
| 21 | Ignore-this: b004048c18fa06a331d8f34b1a19b7e |
|---|
| 22 | ] |
|---|
| 23 | [Do not use System.Process on Posix systems |
|---|
| 24 | Simon Marlow <marlowsd@gmail.com>**20081222095624 |
|---|
| 25 | We were using System.Process.Internals, which isn't safe in general. |
|---|
| 26 | Also, when the child process dies with a signal, we now raise the same |
|---|
| 27 | signal ourselves. |
|---|
| 28 | ] |
|---|
| 29 | [try to make this test more robust |
|---|
| 30 | Simon Marlow <marlowsd@gmail.com>**20090108093333] |
|---|
| 31 | [Follow error message changes |
|---|
| 32 | simonpj@microsoft.com**20090204151103 |
|---|
| 33 | Ignore-this: bb94510c1fe07abec8711e4e5c346791 |
|---|
| 34 | ] |
|---|
| 35 | [Test Trac #2993 |
|---|
| 36 | simonpj@microsoft.com**20090202163532 |
|---|
| 37 | Ignore-this: ed6bbbb58057681a4b725391b0d060ec |
|---|
| 38 | ] |
|---|
| 39 | [Track precedence parsing error messages |
|---|
| 40 | simonpj@microsoft.com**20090202163426 |
|---|
| 41 | Ignore-this: fabb488e6f8b83880e86813c37c1ad80 |
|---|
| 42 | ] |
|---|
| 43 | [Added tests for Foldable and Traversable deriving |
|---|
| 44 | Twan van Laarhoven <twanvl@gmail.com>**20090118152847] |
|---|
| 45 | [Tests for DeriveFunctor |
|---|
| 46 | Twan van Laarhoven <twanvl@gmail.com>**20090117164707] |
|---|
| 47 | [Add a test for trac #2913 |
|---|
| 48 | Ian Lynagh <igloo@earth.li>**20090202154046 |
|---|
| 49 | OldException's catch etc should treat new Exception types as DynException's |
|---|
| 50 | ] |
|---|
| 51 | [Add a test for trac #2937 |
|---|
| 52 | Ian Lynagh <igloo@earth.li>**20090130151908] |
|---|
| 53 | [Test Trac #2985 |
|---|
| 54 | simonpj@microsoft.com**20090130153542 |
|---|
| 55 | Ignore-this: 1249dcaab6557924624f1d7734986772 |
|---|
| 56 | ] |
|---|
| 57 | [T2723 now passes in the 6.10 branch |
|---|
| 58 | Ian Lynagh <igloo@earth.li>**20090130142003] |
|---|
| 59 | [A better test for whether we have profiling |
|---|
| 60 | Simon Marlow <marlowsd@gmail.com>**20090127094831 |
|---|
| 61 | Ignore-this: 1c5d6189e788a26584ac0a5bb427d42c |
|---|
| 62 | Sigh, another shell command. |
|---|
| 63 | ] |
|---|
| 64 | [Add a test TH_sections for trac #2956 |
|---|
| 65 | Ian Lynagh <igloo@earth.li>**20090121141039] |
|---|
| 66 | [Add a test for trac #2968: C trigraphs |
|---|
| 67 | Ian Lynagh <igloo@earth.li>**20090120162849] |
|---|
| 68 | [In older compilers, only try to remove the profthreaded way if it exists |
|---|
| 69 | Ian Lynagh <igloo@earth.li>**20090120162616 |
|---|
| 70 | Otherwise the testsuite driver fails. |
|---|
| 71 | ] |
|---|
| 72 | [Fix setting the value of config.top |
|---|
| 73 | Ian Lynagh <igloo@earth.li>**20090118110305] |
|---|
| 74 | [Normalises slashes in the ghcpkg03 and ghcpkg05 tests |
|---|
| 75 | Ian Lynagh <igloo@earth.li>**20090116175512] |
|---|
| 76 | [Canonicalise the prefix used by test cabal01 |
|---|
| 77 | Ian Lynagh <igloo@earth.li>**20090116175205] |
|---|
| 78 | [Add a GCC hack for the new build system too |
|---|
| 79 | Ian Lynagh <igloo@earth.li>**20090116174651] |
|---|
| 80 | [Hack to find gcc for an in-place ghc |
|---|
| 81 | Ian Lynagh <igloo@earth.li>**20090116173917] |
|---|
| 82 | [Also canonicalise the install prefix for the timeout program |
|---|
| 83 | Ian Lynagh <igloo@earth.li>**20090116163749] |
|---|
| 84 | [Canonicalise paths in the testsuite |
|---|
| 85 | Ian Lynagh <igloo@earth.li>**20090116161459] |
|---|
| 86 | [update output after changes to ghc-pkg |
|---|
| 87 | Simon Marlow <marlowsd@gmail.com>**20090115134134 |
|---|
| 88 | Ignore-this: 6ebada92e562e38bc00e1a65735e6aa4 |
|---|
| 89 | ] |
|---|
| 90 | [Move the Makefile changes around so they don't cause test failures |
|---|
| 91 | Ian Lynagh <igloo@earth.li>**20090114191621 |
|---|
| 92 | Our "make clean" detection was causing problems for tests which had |
|---|
| 93 | their own local clean target. |
|---|
| 94 | ] |
|---|
| 95 | [Don't fail "make clean" becaues GHC etc can't be found |
|---|
| 96 | Ian Lynagh <igloo@earth.li>**20090114180815] |
|---|
| 97 | [Test Trac #2944 |
|---|
| 98 | simonpj@microsoft.com**20090113171931 |
|---|
| 99 | Ignore-this: 4c3fb381dc8186637196783f09520f55 |
|---|
| 100 | ] |
|---|
| 101 | [Follow error message change |
|---|
| 102 | simonpj@microsoft.com**20090113170841 |
|---|
| 103 | Ignore-this: bab0d571dffe70fc523fcbcec18bbb5e |
|---|
| 104 | ] |
|---|
| 105 | [Test Trac #2931 |
|---|
| 106 | simonpj@microsof.com**20090113160225 |
|---|
| 107 | Ignore-this: 10f9c68d848b1503e05e44dab84b8a2a |
|---|
| 108 | ] |
|---|
| 109 | [Tweak top-level Makefile |
|---|
| 110 | Ian Lynagh <igloo@earth.li>**20090113135112] |
|---|
| 111 | [mk/test.mk wibble |
|---|
| 112 | Ian Lynagh <igloo@earth.li>**20090113134706] |
|---|
| 113 | [add boot target to the top-level Makefile; fix boot target in test.mk |
|---|
| 114 | Simon Marlow <marlowsd@gmail.com>**20090113090944 |
|---|
| 115 | Ignore-this: 99fc8adcf04105ebf9ec966560aa0e43 |
|---|
| 116 | ] |
|---|
| 117 | [Add a boot target, and tidy up the Makefile a bit |
|---|
| 118 | Ian Lynagh <igloo@earth.li>**20090110214204] |
|---|
| 119 | [Fix test 2566 in the new build system |
|---|
| 120 | Ian Lynagh <igloo@earth.li>**20090109211835] |
|---|
| 121 | [Update tests following change to pretty printing Haddock comments |
|---|
| 122 | David Waern <david.waern@gmail.com>**20090110203539] |
|---|
| 123 | [Fix rn.prog006 on Windows |
|---|
| 124 | Ian Lynagh <igloo@earth.li>**20090109182257] |
|---|
| 125 | [Make ghciprog004 not rely on $(CC) being correctly defined |
|---|
| 126 | Ian Lynagh <igloo@earth.li>**20090109180953] |
|---|
| 127 | [Fix readwrite00[12] on Windows |
|---|
| 128 | Ian Lynagh <igloo@earth.li>**20090109180745] |
|---|
| 129 | [Fix ioeGetHandle001 on Windows |
|---|
| 130 | Ian Lynagh <igloo@earth.li>**20090109180713] |
|---|
| 131 | [Fix ioeGetFileName001 on Windows |
|---|
| 132 | Ian Lynagh <igloo@earth.li>**20090109180652] |
|---|
| 133 | [Fix ioeGetErrorString001 on Windows |
|---|
| 134 | Ian Lynagh <igloo@earth.li>**20090109180630] |
|---|
| 135 | [Fix hSeek003 on Windows |
|---|
| 136 | Ian Lynagh <igloo@earth.li>**20090109180609] |
|---|
| 137 | [Fix hSeek002 on Windows |
|---|
| 138 | Ian Lynagh <igloo@earth.li>**20090109180549] |
|---|
| 139 | [Fix hReady001 on Windows |
|---|
| 140 | Ian Lynagh <igloo@earth.li>**20090109180525] |
|---|
| 141 | [Fix hIsEOF002 on Windows |
|---|
| 142 | Ian Lynagh <igloo@earth.li>**20090109180500] |
|---|
| 143 | [Fix hGetPosn001 on Windows |
|---|
| 144 | Ian Lynagh <igloo@earth.li>**20090109180429] |
|---|
| 145 | [Fix hGetLine001 |
|---|
| 146 | Ian Lynagh <igloo@earth.li>**20090109180309] |
|---|
| 147 | [Tidy up the Makefile |
|---|
| 148 | Ian Lynagh <igloo@earth.li>**20090109160356] |
|---|
| 149 | [Remove target.mk |
|---|
| 150 | Ian Lynagh <igloo@earth.li>**20090109160332] |
|---|
| 151 | [Remove redundant CLEAN_FILES |
|---|
| 152 | Ian Lynagh <igloo@earth.li>**20090109160110] |
|---|
| 153 | [Add clean and distclean targets |
|---|
| 154 | Ian Lynagh <igloo@earth.li>**20090109153929] |
|---|
| 155 | [Remove otu-of-date comments |
|---|
| 156 | Ian Lynagh <igloo@earth.li>**20090109152347] |
|---|
| 157 | [Fix timeout's clean target |
|---|
| 158 | Ian Lynagh <igloo@earth.li>**20090109152232] |
|---|
| 159 | [Look for .exe when looking for the compiler, too |
|---|
| 160 | Ian Lynagh <igloo@earth.li>**20090109151915] |
|---|
| 161 | [Add a "show" target |
|---|
| 162 | Ian Lynagh <igloo@earth.li>**20090109151633] |
|---|
| 163 | [Wibble error message to not confused vim's syntax highlighting |
|---|
| 164 | Ian Lynagh <igloo@earth.li>**20090109151613] |
|---|
| 165 | [When checking programs exists, check prog.exe too |
|---|
| 166 | Ian Lynagh <igloo@earth.li>**20090109150940] |
|---|
| 167 | [Check that make supports eval |
|---|
| 168 | Ian Lynagh <igloo@earth.li>**20090109150843] |
|---|
| 169 | [Don't insist on python being in /usr/bin |
|---|
| 170 | Ian Lynagh <igloo@earth.li>**20090109144758] |
|---|
| 171 | [Put the endif's in the right places |
|---|
| 172 | Ian Lynagh <igloo@earth.li>**20090108161931] |
|---|
| 173 | [Actually define TEST_HC for the new build system |
|---|
| 174 | Ian Lynagh <igloo@earth.li>**20090108161809] |
|---|
| 175 | [Better error messages |
|---|
| 176 | Ian Lynagh <igloo@earth.li>**20090108161708] |
|---|
| 177 | [Disentangle the testsuite from the compiler's build system |
|---|
| 178 | Ian Lynagh <igloo@earth.li>**20090108161100] |
|---|
| 179 | [Remove uses of MKDIRHIER in favour of mkdir |
|---|
| 180 | Ian Lynagh <igloo@earth.li>**20090108155818] |
|---|
| 181 | [Remove uses of pwd in favour of abspath |
|---|
| 182 | Ian Lynagh <igloo@earth.li>**20090108155459] |
|---|
| 183 | [Consistently use GHC_PKG instead of GHC_PKG_INPLACE |
|---|
| 184 | Ian Lynagh <igloo@earth.li>**20090108143135] |
|---|
| 185 | [Test Trac #2914 |
|---|
| 186 | simonpj@microsoft.com**20090108123927] |
|---|
| 187 | [add test for #2910; move #1980 into validate |
|---|
| 188 | Simon Marlow <marlowsd@gmail.com>**20090106153210] |
|---|
| 189 | [Test Trac #2756 |
|---|
| 190 | simonpj@microsoft.com**20090102152606] |
|---|
| 191 | [Add comments to a very tricky test |
|---|
| 192 | simonpj@microsoft.com**20090102145608] |
|---|
| 193 | [Change in error messages |
|---|
| 194 | simonpj@microsoft.com**20090102145549] |
|---|
| 195 | [Test Trac #2721 |
|---|
| 196 | simonpj@microsoft.com**20081231164227] |
|---|
| 197 | [Track error message changes |
|---|
| 198 | simonpj@microsoft.com**20081231155707] |
|---|
| 199 | [Use -XImpredicativeTypes instead of -fglasgow-exts |
|---|
| 200 | simonpj@microsoft.com**20081231155601] |
|---|
| 201 | [Test Trac #2856 |
|---|
| 202 | simonpj@microsoft.com**20081231155509] |
|---|
| 203 | [Test for empty type indices (Trac #2888) |
|---|
| 204 | simonpj@microsoft.com**20081230170152] |
|---|
| 205 | [Test Trac #2851, and update error message for other tests |
|---|
| 206 | simonpj@microsoft.com**20081230165958] |
|---|
| 207 | [Track new quotes in error message |
|---|
| 208 | simonpj@microsoft.com**20081230145859] |
|---|
| 209 | [Test Trac #2901 |
|---|
| 210 | simonpj@microsoft.com**20081230145836] |
|---|
| 211 | [Add test for #2739 (tests that it works with HscInterpreted). |
|---|
| 212 | Thomas Schilling <nominolo@googlemail.com>**20081219144223] |
|---|
| 213 | [Add first test for GHC API features. |
|---|
| 214 | Thomas Schilling <nominolo@googlemail.com>**20081127105929] |
|---|
| 215 | [fix typo |
|---|
| 216 | Simon Marlow <marlowsd@gmail.com>**20081218091555] |
|---|
| 217 | [break018 is expected to pass again after the INLINE patch rollback |
|---|
| 218 | Simon Marlow <marlowsd@gmail.com>**20081217153559] |
|---|
| 219 | [Make the testsuite work with the new build system |
|---|
| 220 | Simon Marlow <marlowsd@gmail.com>**20081217125046] |
|---|
| 221 | [Fix this test: it was using a C finalizer that called back into Haskell |
|---|
| 222 | Simon Marlow <marlowsd@gmail.com>**20081216101140 |
|---|
| 223 | Which isn't allowed using the ordinary newForeignPtr any more, it has |
|---|
| 224 | to be done with Foreign.Concurrent.newForeignPtr. |
|---|
| 225 | ] |
|---|
| 226 | [test for #2592 |
|---|
| 227 | Simon Marlow <marlowsd@gmail.com>**20081215111427] |
|---|
| 228 | [check for valid .prof files when profiling |
|---|
| 229 | Simon Marlow <marlowsd@gmail.com>**20081215111403] |
|---|
| 230 | [FIX #1364: added tests for C finalizers. |
|---|
| 231 | Ivan Tomac <tomac@pacific.net.au>**20081210150959 |
|---|
| 232 | |
|---|
| 233 | Patch amended by Simon Marlow: |
|---|
| 234 | - Test addForeignPtrFinalizerEnv too |
|---|
| 235 | ] |
|---|
| 236 | [add test for #2838 |
|---|
| 237 | Simon Marlow <marlowsd@gmail.com>**20081209114410] |
|---|
| 238 | [Add a test that we ignore OPTIONS_HUGS pragmas |
|---|
| 239 | Ian Lynagh <igloo@earth.li>**20081209191114] |
|---|
| 240 | [Add a test for trac #2847: Parsing OPTIONS_NO_SUCH_PRAGMA pragma |
|---|
| 241 | Ian Lynagh <igloo@earth.li>**20081209190822] |
|---|
| 242 | [Mark break018 broken (#2845) |
|---|
| 243 | Ian Lynagh <igloo@earth.li>**20081206000423] |
|---|
| 244 | [Remove INLINE for recursive function |
|---|
| 245 | simonpj@microsoft.com**20081205171611] |
|---|
| 246 | [Clean .exe.manifest files |
|---|
| 247 | Ian Lynagh <igloo@earth.li>**20081203135541] |
|---|
| 248 | [Follow improved error message |
|---|
| 249 | simonpj@microsof.com**20081201163016] |
|---|
| 250 | [Simple17 passes |
|---|
| 251 | simonpj@microsof.com**20081201101834] |
|---|
| 252 | [Test Trac #2817 |
|---|
| 253 | simonpj@microsof.com**20081126154331] |
|---|
| 254 | [Test Trac #2756 |
|---|
| 255 | simonpj@microsof.com**20081126143808] |
|---|
| 256 | [Update output to follow :t output formatting change |
|---|
| 257 | simonpj@microsof.com**20081126134736] |
|---|
| 258 | [Test Trac #2766 |
|---|
| 259 | simonpj@microsof.com**20081126133106] |
|---|
| 260 | [add test for #2740 |
|---|
| 261 | Simon Marlow <marlowsd@gmail.com>**20081125103402] |
|---|
| 262 | [Test Trac #2799 |
|---|
| 263 | simonpj@microsof.com**20081125110946] |
|---|
| 264 | [small fix to the space-leak testing framework |
|---|
| 265 | Simon Marlow <marlowsd@gmail.com>**20081125100934] |
|---|
| 266 | [Add some 6.10-specific output |
|---|
| 267 | Ian Lynagh <igloo@earth.li>**20081123193302] |
|---|
| 268 | [Don't show whitespace differences when diffing test results |
|---|
| 269 | Ian Lynagh <igloo@earth.li>**20081123133300] |
|---|
| 270 | [Add a space leak test, and some infrastructure for checking space usage |
|---|
| 271 | Ian Lynagh <igloo@earth.li>**20081123164014] |
|---|
| 272 | [Follow changes in pragma error reporting. |
|---|
| 273 | Thomas Schilling <nominolo@googlemail.com>**20081121160235 |
|---|
| 274 | |
|---|
| 275 | Parse errors in pragmas are now normal error messages and printed as |
|---|
| 276 | such. The full span info is still there, but not by default we only |
|---|
| 277 | print the start of the region (for backwards compatibility). GHC API |
|---|
| 278 | clients will get the full source span info (and users can still get it |
|---|
| 279 | via -ferror-spans). |
|---|
| 280 | ] |
|---|
| 281 | [add test for #2783 |
|---|
| 282 | Simon Marlow <marlowsd@gmail.com>**20081117164854] |
|---|
| 283 | [make this test a bit more robust |
|---|
| 284 | Simon Marlow <marlowsd@gmail.com>**20081114113859] |
|---|
| 285 | [-package syb is required when linking now that array doesn't depend on syb |
|---|
| 286 | Simon Marlow <marlowsd@gmail.com>**20081114101303] |
|---|
| 287 | [make it so that WAY=profthreaded works |
|---|
| 288 | Simon Marlow <marlowsd@gmail.com>**20081112154221] |
|---|
| 289 | [Add a test that $( (\b -> [| b |]) True ) works |
|---|
| 290 | Ian Lynagh <igloo@earth.li>**20081112135613] |
|---|
| 291 | [add a DLL building test (#2745) |
|---|
| 292 | Simon Marlow <marlowsd@gmail.com>**20081110094845] |
|---|
| 293 | [Add some 6.10-specific test outputs |
|---|
| 294 | Ian Lynagh <igloo@earth.li>**20081109212017] |
|---|
| 295 | [Increase the requirements for the annotations tests from 6.9 to 6.11 |
|---|
| 296 | Ian Lynagh <igloo@earth.li>**20081109211524] |
|---|
| 297 | [TAG GHC 6.10.1 release |
|---|
| 298 | Ian Lynagh <igloo@earth.li>**20081107191824] |
|---|
| 299 | [extra_clean for rename.prog005 |
|---|
| 300 | Simon Marlow <marlowsd@gmail.com>**20081103150523] |
|---|
| 301 | [extra_clean for T2685 |
|---|
| 302 | Simon Marlow <marlowsd@gmail.com>**20081103150315] |
|---|
| 303 | [Test Trac #2735 |
|---|
| 304 | simonpj@microsof.com**20081103142217] |
|---|
| 305 | [Follow improvements in type signatures |
|---|
| 306 | simonpj@microsof.com**20081031090642] |
|---|
| 307 | [Make ann01 not depend on linking order |
|---|
| 308 | simonpj@microsof.com**20081030132215] |
|---|
| 309 | [Test annotations |
|---|
| 310 | Max Bolingbroke <batterseapower@hotmail.com>**20081016154455] |
|---|
| 311 | [Tests for Trac #2674 |
|---|
| 312 | simonpj@microsof.com**20081030094721] |
|---|
| 313 | [Add GHC 6.10 output for some tests |
|---|
| 314 | Ian Lynagh <igloo@earth.li>**20081029205326] |
|---|
| 315 | [We expect tc244 to fail in the 6.10 branch |
|---|
| 316 | Ian Lynagh <igloo@earth.li>**20081029162514] |
|---|
| 317 | [Add 6.10 output for tests gadt11, tcfail155, tcfail176 |
|---|
| 318 | Ian Lynagh <igloo@earth.li>**20081029162104] |
|---|
| 319 | [TF_GADT fails in 6.10 |
|---|
| 320 | Ian Lynagh <igloo@earth.li>**20081029160839] |
|---|
| 321 | [Expect T2723 to fail in 6.10 |
|---|
| 322 | Ian Lynagh <igloo@earth.li>**20081029155858] |
|---|
| 323 | [Track changes in naming of class dictionaries, coercions etc |
|---|
| 324 | simonpj@microsoft.com**20081029142425] |
|---|
| 325 | [Add -fno-method-sharing to eyeball/inline1.hs |
|---|
| 326 | simonpj@microsoft.com**20081029142228] |
|---|
| 327 | [Skip qq005(hpc) in the 6.10 branch; trac #1779 |
|---|
| 328 | Ian Lynagh <igloo@earth.li>**20081028205719] |
|---|
| 329 | [Omit the profiling ways when running qq005 |
|---|
| 330 | Ian Lynagh <igloo@earth.li>**20081028174704 |
|---|
| 331 | We'd need to jump through some hoops to run this test the |
|---|
| 332 | profiling ways, due to the TH use, so for now we just |
|---|
| 333 | omit them |
|---|
| 334 | ] |
|---|
| 335 | [Skip bytestring00{1,4,5} (designed for an earlier version of bytestring) |
|---|
| 336 | Ian Lynagh <igloo@earth.li>**20081027185817] |
|---|
| 337 | [Test for existential record update (cf Trac #2595) |
|---|
| 338 | simonpj@microsoft.com**20081028115524] |
|---|
| 339 | [Test Trac #2723 |
|---|
| 340 | simonpj@microsoft.com**20081028110244] |
|---|
| 341 | [Test Trac #2713 |
|---|
| 342 | simonpj@microsoft.com**20081027223522] |
|---|
| 343 | [Update output to follow improved error messages for fixity decls |
|---|
| 344 | simonpj@microsoft.com**20081027222448] |
|---|
| 345 | [Test Trac #2701 |
|---|
| 346 | simonpj@microsoft.com**20081025171123] |
|---|
| 347 | [Test Trac #2700 |
|---|
| 348 | simonpj@microsoft.com**20081025164338] |
|---|
| 349 | [skip conc069/conc070(ghci) if we have no threaded RTS |
|---|
| 350 | Simon Marlow <marlowsd@gmail.com>**20081023081250] |
|---|
| 351 | [Test Trac #2714 |
|---|
| 352 | simonpj@microsoft.com**20081022145517] |
|---|
| 353 | [TFs: 7 tests fail as they used unsupported superclass equalities |
|---|
| 354 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20081021135941] |
|---|
| 355 | [Improved error message on data constructor return types |
|---|
| 356 | simonpj@microsoft.com**20081021063933] |
|---|
| 357 | [Track error message change in deriving |
|---|
| 358 | simonpj@microsoft.com**20081021063859] |
|---|
| 359 | [Add test for data instances that are GADTs |
|---|
| 360 | simonpj@microsoft.com**20081021043459] |
|---|
| 361 | [T2693 |
|---|
| 362 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20081021115858] |
|---|
| 363 | [T2688 |
|---|
| 364 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20081021043343] |
|---|
| 365 | [Skip 2228 on Windows |
|---|
| 366 | Ian Lynagh <igloo@earth.li>**20081019230413] |
|---|
| 367 | [Wibble to output |
|---|
| 368 | simonpj@microsof.com**20081015102844] |
|---|
| 369 | [Update test output |
|---|
| 370 | simonpj@microsof.com**20081015084111] |
|---|
| 371 | [add test for #2685 |
|---|
| 372 | Simon Marlow <marlowsd@gmail.com>**20081013122050] |
|---|
| 373 | [add test for #2636 |
|---|
| 374 | Simon Marlow <marlowsd@gmail.com>**20081010131452] |
|---|
| 375 | [add test for #2589 |
|---|
| 376 | Simon Marlow <marlowsd@gmail.com>**20081009094639] |
|---|
| 377 | [make this test more reliable, and enable threaded2 |
|---|
| 378 | Simon Marlow <marlowsd@gmail.com>**20081009094254] |
|---|
| 379 | [update output (Show Ratio changes) |
|---|
| 380 | Simon Marlow <marlowsd@gmail.com>**20081009085358] |
|---|
| 381 | [TFs: T2639 |
|---|
| 382 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20081009132645] |
|---|
| 383 | [TFs: Examples for Relaxed Conditions |
|---|
| 384 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20081004114546] |
|---|
| 385 | [Comments only |
|---|
| 386 | simonpj@microsof.com**20081003141316] |
|---|
| 387 | [Add test for Trac #2632 |
|---|
| 388 | simonpj@microsof.com**20081003141244] |
|---|
| 389 | [Tweak break017 |
|---|
| 390 | Ian Lynagh <igloo@earth.li>**20081002213202] |
|---|
| 391 | [TFs: Test for repeated tvs in left-hand sides of instances |
|---|
| 392 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20081002142712] |
|---|
| 393 | [TFs: T2291 |
|---|
| 394 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20081002055002] |
|---|
| 395 | [omit ways that run out of time |
|---|
| 396 | Simon Marlow <marlowsd@gmail.com>**20081002101157] |
|---|
| 397 | [accept output, and enable cg026 in validate |
|---|
| 398 | Simon Marlow <marlowsd@gmail.com>**20081002100444] |
|---|
| 399 | [add IOList optimisation example |
|---|
| 400 | Simon Marlow <marlowsd@gmail.com>**20081002093717] |
|---|
| 401 | [accept output (Show Ratio changes) |
|---|
| 402 | Simon Marlow <marlowsd@gmail.com>**20081002083641] |
|---|
| 403 | [add an extra delay to make this test a bit more robust |
|---|
| 404 | Simon Marlow <marlowsd@gmail.com>**20081002083623] |
|---|
| 405 | [accept break017 output (seems to be correct), and enable it in validate |
|---|
| 406 | Simon Marlow <marlowsd@gmail.com>**20081002083135] |
|---|
| 407 | [tcfail145 error message improved, too |
|---|
| 408 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20081002052448] |
|---|
| 409 | [TFs: T2448 |
|---|
| 410 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20081002045510] |
|---|
| 411 | [TFs: Proper error message for GADT12 |
|---|
| 412 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20081001144244] |
|---|
| 413 | [Print out exceptions when cleaning tests |
|---|
| 414 | Ian Lynagh <igloo@earth.li>**20081001194813] |
|---|
| 415 | [add test for #2410 |
|---|
| 416 | Simon Marlow <marlowsd@gmail.com>**20080930150803] |
|---|
| 417 | [TFs: Fixed InstContextNorm |
|---|
| 418 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20081001130446] |
|---|
| 419 | [GADTs/TFs: Added T2151 & TF's Simple14 passes |
|---|
| 420 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20081001053109] |
|---|
| 421 | [add test for #2594 |
|---|
| 422 | Simon Marlow <marlowsd@gmail.com>**20080930115425] |
|---|
| 423 | [Type families: T2627b |
|---|
| 424 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20080930054017] |
|---|
| 425 | [Type families: Tricky GADT/RankN/TF example |
|---|
| 426 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20080930033644] |
|---|
| 427 | [Type families: T2627 |
|---|
| 428 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20080930020317] |
|---|
| 429 | [Type families: fixed GivenCheckDecomp |
|---|
| 430 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20080929140957] |
|---|
| 431 | [Type families: T2219 |
|---|
| 432 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20080929074819] |
|---|
| 433 | [GADTs: T2040 |
|---|
| 434 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20080929073535] |
|---|
| 435 | [we can observe the exception again in break011 |
|---|
| 436 | pepe iborra <mnislaih@gmail.com>**20080926212515] |
|---|
| 437 | [Fix the mode001 test on OS X |
|---|
| 438 | Ian Lynagh <igloo@earth.li>**20080927161551] |
|---|
| 439 | [add test for #2295 (-outputdir) |
|---|
| 440 | Simon Marlow <simonmarhaskell@gmail.com>**20080923145850] |
|---|
| 441 | [oops, we haven't been running tests from packages for goodness knows how long |
|---|
| 442 | Simon Marlow <simonmarhaskell@gmail.com>**20080926233700] |
|---|
| 443 | [Improve the mode001 test |
|---|
| 444 | Ian Lynagh <igloo@earth.li>**20080926142730] |
|---|
| 445 | [Type families: another small tricky example of SPJ |
|---|
| 446 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20080925230155] |
|---|
| 447 | [Test Trac #303 |
|---|
| 448 | simonpj@microsoft.com**20080925230530] |
|---|
| 449 | [Fix conflicting_flags output |
|---|
| 450 | Ian Lynagh <igloo@earth.li>**20080925184801] |
|---|
| 451 | [Add a test that the --help and --version flags behave properly |
|---|
| 452 | Ian Lynagh <igloo@earth.li>**20080925165553] |
|---|
| 453 | [Update ghci025 output |
|---|
| 454 | Ian Lynagh <igloo@earth.li>**20080925153956] |
|---|
| 455 | [Type families: test for decomposition problem |
|---|
| 456 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20080925084015] |
|---|
| 457 | [Add a test for ":i thisIsNotDefined" |
|---|
| 458 | Ian Lynagh <igloo@earth.li>**20080924235240 |
|---|
| 459 | It used to make ghci exit |
|---|
| 460 | ] |
|---|
| 461 | [Skip the new qualified operator syntax tests in 6.10 |
|---|
| 462 | Ian Lynagh <igloo@earth.li>**20080924160332] |
|---|
| 463 | [Fix the driver100 test |
|---|
| 464 | Ian Lynagh <igloo@earth.li>**20080924152649] |
|---|
| 465 | [Update the ws-64 output for the arith011 test |
|---|
| 466 | Ian Lynagh <igloo@earth.li>**20080924151947] |
|---|
| 467 | [add test for #2499 (package flags in OPTIONS pragmas) |
|---|
| 468 | Simon Marlow <simonmarhaskell@gmail.com>**20080923175620] |
|---|
| 469 | [accept output (Show Ratio changes, #1920) |
|---|
| 470 | Simon Marlow <simonmarhaskell@gmail.com>**20080923144155] |
|---|
| 471 | [add test for #2566, also enable driver100 which wasn't being run |
|---|
| 472 | Simon Marlow <simonmarhaskell@gmail.com>**20080923140120] |
|---|
| 473 | [add tests for -XNewQualifiedOperators |
|---|
| 474 | Simon Marlow <simonmarhaskell@gmail.com>**20080922213748] |
|---|
| 475 | [make this test THREADS friendly |
|---|
| 476 | Simon Marlow <simonmarhaskell@gmail.com>**20080922213649] |
|---|
| 477 | [add test for #2228 |
|---|
| 478 | Simon Marlow <simonmarhaskell@gmail.com>**20080430204612] |
|---|
| 479 | [Minor change in error message |
|---|
| 480 | simonpj@microsoft.com**20080920210508] |
|---|
| 481 | [Add tests for Trac #2597 |
|---|
| 482 | simonpj@microsoft.com**20080920210420] |
|---|
| 483 | [Test Trac #2587 |
|---|
| 484 | simonpj@microsoft.com**20080915150402] |
|---|
| 485 | [TAG 2008-09-20 |
|---|
| 486 | Ian Lynagh <igloo@earth.li>**20080920162649] |
|---|
| 487 | [Fix test regex001 |
|---|
| 488 | Ian Lynagh <igloo@earth.li>**20080919145940 |
|---|
| 489 | Needed to restrict the type of 'try' now that we have extensible exceptions |
|---|
| 490 | ] |
|---|
| 491 | [TAG 6.10 branch has been forked |
|---|
| 492 | Ian Lynagh <igloo@earth.li>**20080919123439] |
|---|
| 493 | [tcfail138 now works |
|---|
| 494 | simonpj@microsoft.com**20080919082549] |
|---|
| 495 | [Give a bug number for the print022 failure, fixing a testsuite failure |
|---|
| 496 | Ian Lynagh <igloo@earth.li>**20080918210112] |
|---|
| 497 | [T1470 now passes |
|---|
| 498 | Ian Lynagh <igloo@earth.li>**20080918204155] |
|---|
| 499 | [print022 is failing atm, I don't know exactly why |
|---|
| 500 | pepe iborra <mnislaih@gmail.com>**20080918191323] |
|---|
| 501 | [Tickets #1995, #2475 are now fixed |
|---|
| 502 | pepe iborra <mnislaih@gmail.com>**20080918181100] |
|---|
| 503 | [Accept output |
|---|
| 504 | pepe iborra <mnislaih@gmail.com>**20080918164415] |
|---|
| 505 | [Add a new test |
|---|
| 506 | Pepe Iborra <mnislaih@gmail.com>**20080918164341] |
|---|
| 507 | [remove some calls to the old 'breakpoint' combinator |
|---|
| 508 | Pepe Iborra <mnislaih@gmail.com>**20080913162043] |
|---|
| 509 | [Follow error message changes (Trac #2604) |
|---|
| 510 | simonpj@microsof.com**20080918162119] |
|---|
| 511 | [Test Trac #2604 |
|---|
| 512 | simonpj@microsof.com**20080917135026] |
|---|
| 513 | [update output |
|---|
| 514 | Simon Marlow <marlowsd@gmail.com>**20080918100247] |
|---|
| 515 | [Type families: fixed many regressions of new solver |
|---|
| 516 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20080918100625] |
|---|
| 517 | [fix TH_spliceE5_prof |
|---|
| 518 | Simon Marlow <marlowsd@gmail.com>**20080918100109] |
|---|
| 519 | [remove spurious -fasm (causing failure for the unreg build) |
|---|
| 520 | Simon Marlow <marlowsd@gmail.com>**20080917080555] |
|---|
| 521 | [Type families: fixed 4 regressions |
|---|
| 522 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20080917062518] |
|---|
| 523 | [Type families: don't bleat about regressions with new solver |
|---|
| 524 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20080917034652] |
|---|
| 525 | [Type families & GADTs: fixed tests |
|---|
| 526 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20080916151218] |
|---|
| 527 | [Type families: output wibble |
|---|
| 528 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20080916055106] |
|---|
| 529 | [Type families: harmless changes of error messages by new algo |
|---|
| 530 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20080914163445] |
|---|
| 531 | [Type families: Simple20: warning about loopy equality |
|---|
| 532 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20080914120742] |
|---|
| 533 | [test for #1548 |
|---|
| 534 | Simon Marlow <marlowsd@gmail.com>**20080916151143] |
|---|
| 535 | [test for #2469 |
|---|
| 536 | Simon Marlow <marlowsd@gmail.com>**20080916132312] |
|---|
| 537 | [reify and tcrun007 have been fixed |
|---|
| 538 | simonpj@microsof.com**20080916100959] |
|---|
| 539 | [ghci024: add -ignore-dot-ghci |
|---|
| 540 | Simon Marlow <marlowsd@gmail.com>**20080915105447] |
|---|
| 541 | [heapprof001(prof_hc_hb,prof_hr) are now fixed (#2576) |
|---|
| 542 | Simon Marlow <marlowsd@gmail.com>**20080912112718] |
|---|
| 543 | [not broken any more |
|---|
| 544 | Simon Marlow <marlowsd@gmail.com>**20080909134657] |
|---|
| 545 | [Add a test for trac #1709 |
|---|
| 546 | Ian Lynagh <igloo@earth.li>**20080911135253] |
|---|
| 547 | [#2533: Generic functions that take integral arguments should work the same way as their prelude counterparts |
|---|
| 548 | **20080907161138] |
|---|
| 549 | [Fix typo in T2573 |
|---|
| 550 | simonpj@microsof.com**20080910101819] |
|---|
| 551 | [Eyeball test for Trac #2581 |
|---|
| 552 | simonpj@microsoft.com**20080910095037] |
|---|
| 553 | [Test Trac #2573 |
|---|
| 554 | simonpj@microsoft.com**20080910085555] |
|---|
| 555 | [T2572 needs RankNTypes |
|---|
| 556 | simonpj@microsoft.com**20080910085527] |
|---|
| 557 | [Follow error message wibbles |
|---|
| 558 | simonpj@microsoft.com**20080910085434] |
|---|
| 559 | [Test Trac 2572 |
|---|
| 560 | simonpj@microsoft.com**20080909101611] |
|---|
| 561 | [tc176 works now |
|---|
| 562 | simonpj@microsoft.com**20080908152043] |
|---|
| 563 | [Test T1470 is still broken |
|---|
| 564 | simonpj@microsoft.com**20080908151956 |
|---|
| 565 | |
|---|
| 566 | I briefly thought I'd fixed this, but I haven't. So it stays broken. |
|---|
| 567 | |
|---|
| 568 | ] |
|---|
| 569 | [Rename an hGetBuf001 to avoid a name clash |
|---|
| 570 | Ian Lynagh <igloo@earth.li>**20080907192023] |
|---|
| 571 | [import Control.Monad.Instances in bytestring00{1,4,5} |
|---|
| 572 | Ian Lynagh <igloo@earth.li>**20080907155208 |
|---|
| 573 | They need the Functor ((->) r) instance |
|---|
| 574 | ] |
|---|
| 575 | [heapprof001(prof_hc_hb,prof_hr) is broken (trac #2576) |
|---|
| 576 | Ian Lynagh <igloo@earth.li>**20080907152106] |
|---|
| 577 | [Update dynamic002 output |
|---|
| 578 | Ian Lynagh <igloo@earth.li>**20080907150657] |
|---|
| 579 | [Make ghci024 a lot less fragile |
|---|
| 580 | Ian Lynagh <igloo@earth.li>**20080907145040 |
|---|
| 581 | Now we grep for representative output, rather than trying to match all of it. |
|---|
| 582 | ] |
|---|
| 583 | [fromdos ghci024.script |
|---|
| 584 | Ian Lynagh <igloo@earth.li>**20080907141231] |
|---|
| 585 | [Update ghci024 output |
|---|
| 586 | Ian Lynagh <igloo@earth.li>**20080907141215] |
|---|
| 587 | [fromdos ghci024.py |
|---|
| 588 | Ian Lynagh <igloo@earth.li>**20080907140647] |
|---|
| 589 | [2317(threaded2) is broken (trac #2574). |
|---|
| 590 | Ian Lynagh <igloo@earth.li>**20080907140352] |
|---|
| 591 | [tcrun007 is broken (trac #2573) |
|---|
| 592 | Ian Lynagh <igloo@earth.li>**20080907134543] |
|---|
| 593 | [reify is broken (trac #2572) |
|---|
| 594 | Ian Lynagh <igloo@earth.li>**20080907131341] |
|---|
| 595 | [Add a boilerplate Makefile |
|---|
| 596 | Ian Lynagh <igloo@earth.li>**20080907115630] |
|---|
| 597 | [2185 is broken in 2 ways: #2185, #2570 |
|---|
| 598 | Ian Lynagh <igloo@earth.li>**20080907112112] |
|---|
| 599 | [Add tests for hugs trac #46 and #48 bugs |
|---|
| 600 | Ian Lynagh <igloo@earth.li>**20080906183501] |
|---|
| 601 | [Fix a syntax error in an all.T file |
|---|
| 602 | Ian Lynagh <igloo@earth.li>**20080906164539] |
|---|
| 603 | [Add rn067 test |
|---|
| 604 | Ian Lynagh <igloo@earth.li>**20080906161306] |
|---|
| 605 | [Follow error messsage changes |
|---|
| 606 | simonpj@microsof.com**20080904155825] |
|---|
| 607 | [Test for Trac #470 |
|---|
| 608 | simonpj@microsof.com**20080904145449] |
|---|
| 609 | [Replace 'pure' by 'arr' |
|---|
| 610 | simonpj@microsof.com**20080904155528] |
|---|
| 611 | [Comment only |
|---|
| 612 | simonpj@microsof.com**20080904155452] |
|---|
| 613 | [follow library changes |
|---|
| 614 | Ian Lynagh <igloo@earth.li>**20080903223619] |
|---|
| 615 | [T1999 passes now (acccidentally I think), but T1999a still fails |
|---|
| 616 | simonpj@microsoft.com**20080903124823] |
|---|
| 617 | [Follow error message changes |
|---|
| 618 | simonpj@microsoft.com**20080903121227] |
|---|
| 619 | [Add Ganesh's test for T1999 |
|---|
| 620 | simonpj@microsoft.com**20080902121435] |
|---|
| 621 | [Make mod127 clean the right files |
|---|
| 622 | Ian Lynagh <igloo@earth.li>**20080829125022] |
|---|
| 623 | [Fix mod125 for the parallel testsuite |
|---|
| 624 | Ian Lynagh <igloo@earth.li>**20080829125001] |
|---|
| 625 | [Fix mod127 in the parallel testsuite |
|---|
| 626 | Ian Lynagh <igloo@earth.li>**20080828162839] |
|---|
| 627 | [Fix the records test when running the testsuite in parallel mode |
|---|
| 628 | Ian Lynagh <igloo@earth.li>**20080828162009] |
|---|
| 629 | [Test for Trac #2529 |
|---|
| 630 | simonpj@microsof.com**20080828121108] |
|---|
| 631 | [Update output to follow comments |
|---|
| 632 | simonpj@microsof.com**20080827170915] |
|---|
| 633 | [Track error message changes |
|---|
| 634 | simonpj@microsof.com**20080827155041] |
|---|
| 635 | [Test Trac #2538 |
|---|
| 636 | simonpj@microsof.com**20080827155021] |
|---|
| 637 | [Test for Trac #2520 |
|---|
| 638 | simonpj@microsof.com**20080827154431] |
|---|
| 639 | [Add test for Trac #2497, #2213, #2494 |
|---|
| 640 | simonpj@microsof.com**20080826121919] |
|---|
| 641 | [update output |
|---|
| 642 | Simon Marlow <marlowsd@gmail.com>**20080827091439] |
|---|
| 643 | [add test for #2542, #1205 |
|---|
| 644 | Simon Marlow <marlowsd@gmail.com>**20080827091253] |
|---|
| 645 | [Add a test for "bad flag" errors |
|---|
| 646 | Ian Lynagh <igloo@earth.li>**20080826185434] |
|---|
| 647 | [Fix some tests: T2310, T2486, FD2 |
|---|
| 648 | Ian Lynagh <igloo@earth.li>**20080826183223] |
|---|
| 649 | [Fix TH_spliceE5 in the parallel testsuite |
|---|
| 650 | Ian Lynagh <igloo@earth.li>**20080825141517] |
|---|
| 651 | [Remove no_clean from the driver |
|---|
| 652 | Ian Lynagh <igloo@earth.li>**20080825140907 |
|---|
| 653 | We don't use it any more, and it shouldn't be used as it effectively |
|---|
| 654 | means that the test won't work in the parallel testsuite. |
|---|
| 655 | ] |
|---|
| 656 | [Fix rn043/rn044 problem with parallel testsuite |
|---|
| 657 | Ian Lynagh <igloo@earth.li>**20080825124911] |
|---|
| 658 | [Fix tc170 in the parallel testsuite |
|---|
| 659 | Ian Lynagh <igloo@earth.li>**20080825123017] |
|---|
| 660 | [Fix some parallel testsuite problems |
|---|
| 661 | Ian Lynagh <igloo@earth.li>**20080825121907] |
|---|
| 662 | [We now depend on concurrent (split off from base) |
|---|
| 663 | Ian Lynagh <igloo@earth.li>**20080824135202] |
|---|
| 664 | [Fix tests following the st split-off frmo base |
|---|
| 665 | Ian Lynagh <igloo@earth.li>**20080823223058] |
|---|
| 666 | [break017 is broken (trac #2475) |
|---|
| 667 | Ian Lynagh <igloo@earth.li>**20080821211216] |
|---|
| 668 | [Update output for typecheck.prog001 |
|---|
| 669 | Ian Lynagh <igloo@earth.li>**20080821204929] |
|---|
| 670 | [Fix recomp005 |
|---|
| 671 | Ian Lynagh <igloo@earth.li>**20080821204652] |
|---|
| 672 | [qq005 and qq006 require parsec |
|---|
| 673 | Ian Lynagh <igloo@earth.li>**20080821204317] |
|---|
| 674 | [Fix num013 |
|---|
| 675 | Ian Lynagh <igloo@earth.li>**20080821204011] |
|---|
| 676 | [Fix list001 |
|---|
| 677 | Ian Lynagh <igloo@earth.li>**20080821203426] |
|---|
| 678 | [Fix enum03 |
|---|
| 679 | Ian Lynagh <igloo@earth.li>**20080821202901] |
|---|
| 680 | [fix enum02 |
|---|
| 681 | Ian Lynagh <igloo@earth.li>**20080821201839] |
|---|
| 682 | [fix enum01 |
|---|
| 683 | Ian Lynagh <igloo@earth.li>**20080821201600] |
|---|
| 684 | [Fix dynamic002 |
|---|
| 685 | Ian Lynagh <igloo@earth.li>**20080821200301] |
|---|
| 686 | [omit profthreaded for conc039 |
|---|
| 687 | Ian Lynagh <igloo@earth.li>**20080821193646 |
|---|
| 688 | (for the same reason we already omit threaded1 and threaded2) |
|---|
| 689 | ] |
|---|
| 690 | [Fix conc034 |
|---|
| 691 | Ian Lynagh <igloo@earth.li>**20080821193047] |
|---|
| 692 | [Make conc015(ghci) a bit slower, so that it works in ghci |
|---|
| 693 | Ian Lynagh <igloo@earth.li>**20080821172443] |
|---|
| 694 | [Fix test 1980 |
|---|
| 695 | Ian Lynagh <igloo@earth.li>**20080821155436] |
|---|
| 696 | [Fix conc036 |
|---|
| 697 | Ian Lynagh <igloo@earth.li>**20080821130638] |
|---|
| 698 | [Ooops, T1972 should be normal, not expect_fail |
|---|
| 699 | Ian Lynagh <igloo@earth.li>**20080818231238] |
|---|
| 700 | [Fix typos in the testsuite |
|---|
| 701 | Ian Lynagh <igloo@earth.li>**20080818231006] |
|---|
| 702 | [Remove GHC 6.8-only stuff from the testsuite |
|---|
| 703 | Ian Lynagh <igloo@earth.li>**20080817204843] |
|---|
| 704 | [Simplify the driver a bit: Break skip_{if,unless}_tag down into smaller parts |
|---|
| 705 | Ian Lynagh <igloo@earth.li>**20080817195515] |
|---|
| 706 | [Follow error messages for explicit-forall syntax |
|---|
| 707 | simonpj@microsoft.com**20080821141043] |
|---|
| 708 | [Update output of explicit-forall failure |
|---|
| 709 | simonpj@microsoft.com**20080820121144] |
|---|
| 710 | [follow exception library changes |
|---|
| 711 | Simon Marlow <marlowsd@gmail.com>**20080820155457] |
|---|
| 712 | [add Makefile for haskell98 test |
|---|
| 713 | Ross Paterson <ross@soi.city.ac.uk>**20080818162947] |
|---|
| 714 | [add test for #2330 |
|---|
| 715 | Simon Marlow <marlowsd@gmail.com>**20080818112358] |
|---|
| 716 | [add test for leakage of Control.Monad.Instances into Haskell 98 modules |
|---|
| 717 | Ross Paterson <ross@soi.city.ac.uk>**20080817011010] |
|---|
| 718 | [Fix 1288 and 2276 Windows-only tests |
|---|
| 719 | Ian Lynagh <igloo@earth.li>**20080816205817] |
|---|
| 720 | [Skip num009 if fast, as it gives the wrong answer on some platforms |
|---|
| 721 | Ian Lynagh <igloo@earth.li>**20080816190222] |
|---|
| 722 | [Don't skip readwrite002 on Windows any more |
|---|
| 723 | Ian Lynagh <igloo@earth.li>**20080816183731 |
|---|
| 724 | We used to skip it because of trac #1198, but that is now fixed |
|---|
| 725 | ] |
|---|
| 726 | [Fix the hReady001 test now that GHC's hReady behaves correctly |
|---|
| 727 | Ian Lynagh <igloo@earth.li>**20080816182638] |
|---|
| 728 | [Update Windows output for cabal01 |
|---|
| 729 | Ian Lynagh <igloo@earth.li>**20080815155526] |
|---|
| 730 | [openFile005, openFile007, readFile001 now pass on Windows |
|---|
| 731 | Ian Lynagh <igloo@earth.li>**20080815155140] |
|---|
| 732 | [countReaders001 now works on Windows |
|---|
| 733 | Ian Lynagh <igloo@earth.li>**20080815154622] |
|---|
| 734 | [Skip ghci024 when fast |
|---|
| 735 | Ian Lynagh <igloo@earth.li>**20080815160139 |
|---|
| 736 | This test is very fragile, and updating it is fiddly due to the |
|---|
| 737 | auto-generation, so skip it when fast (and thus when validating). |
|---|
| 738 | ] |
|---|
| 739 | [Add ghcpkg05 output |
|---|
| 740 | Ian Lynagh <igloo@earth.li>**20080815110457] |
|---|
| 741 | [Add a test for trac #2449 |
|---|
| 742 | Ian Lynagh <igloo@earth.li>**20080814234733] |
|---|
| 743 | [Add a test for trac #2412 |
|---|
| 744 | Ian Lynagh <igloo@earth.li>**20080814220440] |
|---|
| 745 | [Add an Exceptions test from trac #2508 |
|---|
| 746 | Ian Lynagh <igloo@earth.li>**20080814210828] |
|---|
| 747 | [update |
|---|
| 748 | Simon Marlow <marlowsd@gmail.com>**20080814125223] |
|---|
| 749 | [add test for #2441, and stacking of package.confs |
|---|
| 750 | Simon Marlow <marlowsd@gmail.com>**20080814121429] |
|---|
| 751 | [add test for #2491 |
|---|
| 752 | Simon Marlow <marlowsd@gmail.com>**20080813140333] |
|---|
| 753 | [update these tests |
|---|
| 754 | Simon Marlow <marlowsd@gmail.com>**20080813135400] |
|---|
| 755 | [fix this test on Windows |
|---|
| 756 | Simon Marlow <marlowsd@gmail.com>**20080812144302] |
|---|
| 757 | [Add test for Trac #2490, follow output changes |
|---|
| 758 | simonpj@microsoft.com**20080812104041] |
|---|
| 759 | [Update output |
|---|
| 760 | simonpj@microsoft.com**20080811144917] |
|---|
| 761 | [Update output |
|---|
| 762 | simonpj@microsoft.com**20080811132813] |
|---|
| 763 | [Add test for empty cases; update output for braces in HsCase printing |
|---|
| 764 | simonpj@microsoft.com**20080811125147 |
|---|
| 765 | |
|---|
| 766 | All to support Trac #2431 |
|---|
| 767 | |
|---|
| 768 | ] |
|---|
| 769 | [Test Trac #2494 |
|---|
| 770 | simonpj@microsoft.com**20080811115652] |
|---|
| 771 | [Test Trac #2506 |
|---|
| 772 | simonpj@microsoft.com**20080811114657] |
|---|
| 773 | [Test Trac #2486 |
|---|
| 774 | simonpj@microsoft.com**20080811114544] |
|---|
| 775 | [Make the gadt-records test work even during fast validate |
|---|
| 776 | simonpj@microsoft.com**20080806160732] |
|---|
| 777 | [TAG 2008-08-07 |
|---|
| 778 | Ian Lynagh <igloo@earth.li>**20080807154702] |
|---|
| 779 | [Line number information change only |
|---|
| 780 | Max Bolingbroke <batterseapower@hotmail.com>**20080731150743] |
|---|
| 781 | [Update output |
|---|
| 782 | Ian Lynagh <igloo@earth.li>**20080807104750] |
|---|
| 783 | [update output (-fimplicit-import-qualified) |
|---|
| 784 | Simon Marlow <marlowsd@gmail.com>**20080805154235] |
|---|
| 785 | [add test for #2452 |
|---|
| 786 | Simon Marlow <marlowsd@gmail.com>**20080805154028] |
|---|
| 787 | [Update output following the move of the Char definition |
|---|
| 788 | Ian Lynagh <igloo@earth.li>**20080806094844] |
|---|
| 789 | [Update ghci011 output |
|---|
| 790 | Ian Lynagh <igloo@earth.li>**20080805103044] |
|---|
| 791 | [Test for Trac #1930 |
|---|
| 792 | simonpj@microsoft.com**20080804160946] |
|---|
| 793 | [Test Trac 2433 |
|---|
| 794 | simonpj@microsoft.com**20080804141440] |
|---|
| 795 | [Test for Trac #2478 |
|---|
| 796 | simonpj@microsoft.com**20080801151504] |
|---|
| 797 | [Update TH_runIO output (again) |
|---|
| 798 | Ian Lynagh <igloo@earth.li>**20080803232359] |
|---|
| 799 | [Fix the arith011 test now that catchAny is gone |
|---|
| 800 | Ian Lynagh <igloo@earth.li>**20080803134920] |
|---|
| 801 | [Change the timeout program to use exceptions properly |
|---|
| 802 | Ian Lynagh <igloo@earth.li>**20080803114202 |
|---|
| 803 | We now don't eat any type of exception, e.g. the user pressing ^C |
|---|
| 804 | ] |
|---|
| 805 | [Update TH_runIO output |
|---|
| 806 | Ian Lynagh <igloo@earth.li>**20080802005240] |
|---|
| 807 | [Expect break011 and break024 to fail due to trac #2475 |
|---|
| 808 | Ian Lynagh <igloo@earth.li>**20080731210622 |
|---|
| 809 | 'debugger gives "Can't unify" when stopped at an exception' |
|---|
| 810 | ] |
|---|
| 811 | [Give a type signature in the break024 test |
|---|
| 812 | Ian Lynagh <igloo@earth.li>**20080731194659 |
|---|
| 813 | Avoids an ambiguous type variable with extensible extensions |
|---|
| 814 | ] |
|---|
| 815 | [Make the exception tests use OldException, as that's what they test |
|---|
| 816 | Ian Lynagh <igloo@earth.li>**20080731185111] |
|---|
| 817 | [Update ghci007 output |
|---|
| 818 | Ian Lynagh <igloo@earth.li>**20080731184728] |
|---|
| 819 | [Update output for break025 |
|---|
| 820 | Ian Lynagh <igloo@earth.li>**20080731000128] |
|---|
| 821 | [Update TH_runIO output |
|---|
| 822 | Ian Lynagh <igloo@earth.li>**20080730235259] |
|---|
| 823 | [Follow extensible exception changes |
|---|
| 824 | Ian Lynagh <igloo@earth.li>**20080623191332] |
|---|
| 825 | [add test for #2388 |
|---|
| 826 | Simon Marlow <marlowsd@gmail.com>**20080730105448] |
|---|
| 827 | [Don't fail when cleaning if cabal-bin doesn't exist |
|---|
| 828 | Ian Lynagh <igloo@earth.li>**20080729201757] |
|---|
| 829 | [fixes required after changes in #1205 |
|---|
| 830 | Simon Marlow <marlowsd@gmail.com>**20080728115145 |
|---|
| 831 | ":load M" now complains if M.hs doesn't contain module M, but ':load |
|---|
| 832 | M.hs' does not. This seems reasonable to me, but there's potential |
|---|
| 833 | for confusion. I'm not sure how to improve the situation though. |
|---|
| 834 | ] |
|---|
| 835 | [fix some tests on Windows |
|---|
| 836 | Simon Marlow <marlowsd@gmail.com>**20080728150044] |
|---|
| 837 | [windows-specific output for this test |
|---|
| 838 | Simon Marlow <marlowsd@gmail.com>**20080728145952] |
|---|
| 839 | [use absolute path to ghc-pkg |
|---|
| 840 | Simon Marlow <marlowsd@gmail.com>**20080728145937] |
|---|
| 841 | [add tests for #2248 |
|---|
| 842 | Simon Marlow <marlowsd@gmail.com>**20080728145855] |
|---|
| 843 | [We need to tell Cabal that WinCBindings is a module of the timeout program |
|---|
| 844 | Ian Lynagh <igloo@earth.li>**20080724193120] |
|---|
| 845 | [Build the timeout program with Cabal |
|---|
| 846 | Ian Lynagh <igloo@earth.li>**20080723202443] |
|---|
| 847 | [Add a test for unrecognised pragmas |
|---|
| 848 | Ian Lynagh <igloo@earth.li>**20080720154218] |
|---|
| 849 | [Update output |
|---|
| 850 | Ian Lynagh <igloo@earth.li>**20080720151239] |
|---|
| 851 | [Update the driver200 test to use the new -opt-dep flag replacements |
|---|
| 852 | Ian Lynagh <igloo@earth.li>**20080722163247] |
|---|
| 853 | [Add a test for the WARNING pragma |
|---|
| 854 | Ian Lynagh <igloo@earth.li>**20080720155522] |
|---|
| 855 | [Update output |
|---|
| 856 | Ian Lynagh <igloo@earth.li>**20080719215300] |
|---|
| 857 | [Use the right ghc-pkg program |
|---|
| 858 | Ian Lynagh <igloo@earth.li>**20080719112601] |
|---|
| 859 | [The hs-boot output has improved (although I'm not actually sure why) |
|---|
| 860 | Ian Lynagh <igloo@earth.li>**20080717143947] |
|---|
| 861 | [Follow changes in GHC's build system |
|---|
| 862 | Ian Lynagh <igloo@earth.li>**20080713183259] |
|---|
| 863 | [Type families: GADT instances for data families (#1968) |
|---|
| 864 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20080715064246] |
|---|
| 865 | [Type families: test for 1st half of #2203 |
|---|
| 866 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20080715054549] |
|---|
| 867 | [Type families: T2157 |
|---|
| 868 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20080715003126] |
|---|
| 869 | [add test for #2302 |
|---|
| 870 | Simon Marlow <marlowsd@gmail.com>**20080714085201] |
|---|
| 871 | [update output (line-length changes in pretty printer) |
|---|
| 872 | Simon Marlow <marlowsd@gmail.com>**20080714085149] |
|---|
| 873 | [Update ghci024 for PostfixOperators |
|---|
| 874 | Ian Lynagh <igloo@earth.li>**20080712221830] |
|---|
| 875 | [FIX boottestsuite build failure |
|---|
| 876 | Simon Marlow <marlowsd@gmail.com>**20080711135342] |
|---|
| 877 | [update output |
|---|
| 878 | Simon Marlow <marlowsd@gmail.com>**20080711105716] |
|---|
| 879 | [add test for threadStatus |
|---|
| 880 | Simon Marlow <marlowsd@gmail.com>**20080710151241] |
|---|
| 881 | [fixes to this test |
|---|
| 882 | Simon Marlow <marlowsd@gmail.com>**20080710125333] |
|---|
| 883 | [add tests for #1048 |
|---|
| 884 | Simon Marlow <marlowsd@gmail.com>**20080709135636] |
|---|
| 885 | [update; *sigh* this test is so fragile |
|---|
| 886 | Simon Marlow <marlowsd@gmail.com>**20080709115902] |
|---|
| 887 | [add test for #1103 |
|---|
| 888 | Simon Marlow <marlowsd@gmail.com>**20080709111637] |
|---|
| 889 | [add test for #1357 |
|---|
| 890 | Simon Marlow <marlowsd@gmail.com>**20080709101258] |
|---|
| 891 | [remove .o and .hi files beforehand |
|---|
| 892 | Simon Marlow <marlowsd@gmail.com>**20080709080244] |
|---|
| 893 | [Test cases for #1900 & #1999 |
|---|
| 894 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20080709071013] |
|---|
| 895 | [Types families: clean up, part 2 |
|---|
| 896 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20080709015954] |
|---|
| 897 | [Type families: clean up |
|---|
| 898 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20080708120015 |
|---|
| 899 | - RankN1 was a bogus test. There error didn't have anything to do with |
|---|
| 900 | rank-n types, but was just due to an ambiguous signature. |
|---|
| 901 | ] |
|---|
| 902 | [FIX BUILD |
|---|
| 903 | Simon Marlow <marlowsd@gmail.com>**20080707100010] |
|---|
| 904 | [add another test for #1736, and mark pragma001/pragma002 as fixed in 6.9 |
|---|
| 905 | Simon Marlow <marlowsd@gmail.com>**20080707095948] |
|---|
| 906 | [Test for Trac #2386 |
|---|
| 907 | simonpj@microsoft.com**20080707102801] |
|---|
| 908 | [Test for Trac #2414 |
|---|
| 909 | simonpj@microsoft.com**20080707101122] |
|---|
| 910 | [add -ignore-dot-ghci |
|---|
| 911 | Simon Marlow <marlowsd@gmail.com>**20080704143739] |
|---|
| 912 | [add test from #2317 |
|---|
| 913 | Simon Marlow <marlowsd@gmail.com>**20080619143253] |
|---|
| 914 | [Update outputs |
|---|
| 915 | Ian Lynagh <igloo@earth.li>**20080703234304] |
|---|
| 916 | [Add a test tcfail202 for trac #2307 |
|---|
| 917 | Ian Lynagh <igloo@earth.li>**20080703225148] |
|---|
| 918 | [Test Trac #2307 |
|---|
| 919 | simonpj@microsoft.com**20080701165653] |
|---|
| 920 | [Test for Trac #2409 |
|---|
| 921 | simonpj@microsoft.com**20080701164101] |
|---|
| 922 | [Add a directory for the hpc output |
|---|
| 923 | Ian Lynagh <igloo@earth.li>**20080701125103] |
|---|
| 924 | [Test for Trac 2378 |
|---|
| 925 | simonpj@microsoft.com**20080701123433] |
|---|
| 926 | [Update output |
|---|
| 927 | simonpj@microsoft.com**20080701122131] |
|---|
| 928 | [Test for Trac #2358 |
|---|
| 929 | simonpj@microsoft.com**20080614123908] |
|---|
| 930 | [Add a test that apparently made the typechecker loop (around Feb 08) |
|---|
| 931 | simonpj@microsoft.com**20080627163600] |
|---|
| 932 | [More cleanup fixes |
|---|
| 933 | Ian Lynagh <igloo@earth.li>**20080629010452] |
|---|
| 934 | [Remove uses of clean_o_hi |
|---|
| 935 | Ian Lynagh <igloo@earth.li>**20080628223759 |
|---|
| 936 | This makes the testsuite more resilient when using threads |
|---|
| 937 | ] |
|---|
| 938 | [Fix ghcpkg04 |
|---|
| 939 | Ian Lynagh <igloo@earth.li>**20080628180721] |
|---|
| 940 | [Tweak whitespace |
|---|
| 941 | Ian Lynagh <igloo@earth.li>**20080628171823] |
|---|
| 942 | [Clean <test>.std{out,err}.normalised |
|---|
| 943 | Ian Lynagh <igloo@earth.li>**20080628171742] |
|---|
| 944 | [Use extra_clean rather than clean |
|---|
| 945 | Ian Lynagh <igloo@earth.li>**20080628152743 |
|---|
| 946 | This makes things more robust when running with threads |
|---|
| 947 | ] |
|---|
| 948 | [Tweak some tests: tell make to be quiet rather than ignoring all output |
|---|
| 949 | Ian Lynagh <igloo@earth.li>**20080628125539] |
|---|
| 950 | [Clean empty directories as well as files |
|---|
| 951 | Ian Lynagh <igloo@earth.li>**20080628122544] |
|---|
| 952 | [More testsuite cleaning |
|---|
| 953 | Ian Lynagh <igloo@earth.li>**20080627203250] |
|---|
| 954 | [Update .darcs-boring |
|---|
| 955 | Ian Lynagh <igloo@earth.li>**20080627203155] |
|---|
| 956 | [Testsuite cleaning fixes |
|---|
| 957 | Ian Lynagh <igloo@earth.li>**20080627191441] |
|---|
| 958 | [.darcs-boring updates |
|---|
| 959 | Ian Lynagh <igloo@earth.li>**20080627161802] |
|---|
| 960 | [Fix ghci024's test stanza |
|---|
| 961 | Ian Lynagh <igloo@earth.li>**20080627142815 |
|---|
| 962 | We need to talk about the |
|---|
| 963 | powerpc-apple-darwin |
|---|
| 964 | platform rather than the |
|---|
| 965 | powerpc_apple_darwin |
|---|
| 966 | platform. Spotted by Claus / Thorkil. |
|---|
| 967 | ] |
|---|
| 968 | [Update rn.prog006 following Cabal changes |
|---|
| 969 | Ian Lynagh <igloo@earth.li>**20080626202858] |
|---|
| 970 | [Update output |
|---|
| 971 | Ian Lynagh <igloo@earth.li>**20080624144832] |
|---|
| 972 | [add test from #2185 |
|---|
| 973 | Simon Marlow <marlowsd@gmail.com>**20080619110334] |
|---|
| 974 | [TAG GHC 6.8.3 release |
|---|
| 975 | Ian Lynagh <igloo@earth.li>**20080618132806] |
|---|
| 976 | [update output |
|---|
| 977 | Simon Marlow <marlowsd@gmail.com>**20080617145123] |
|---|
| 978 | [add 6.8 output |
|---|
| 979 | Simon Marlow <marlowsd@gmail.com>**20080617092140] |
|---|
| 980 | [rebindable9 is expect_broken(1537) |
|---|
| 981 | Simon Marlow <marlowsd@gmail.com>**20080617091301] |
|---|
| 982 | [add 6.8 output |
|---|
| 983 | Simon Marlow <marlowsd@gmail.com>**20080617091123] |
|---|
| 984 | [TH_reifyMkName (#2339): fix wasn't merged |
|---|
| 985 | Simon Marlow <marlowsd@gmail.com>**20080617090330] |
|---|
| 986 | [T2334 is an expected failure in 6.8 |
|---|
| 987 | Simon Marlow <marlowsd@gmail.com>**20080617090137] |
|---|
| 988 | [2310 is not fixed on the 6.8 branch (yet) |
|---|
| 989 | Simon Marlow <marlowsd@gmail.com>**20080617085917] |
|---|
| 990 | [Update output in tcfail071 |
|---|
| 991 | Ian Lynagh <igloo@earth.li>**20080616213443] |
|---|
| 992 | [Make tcfail071 work when -fglasgow-exts is given |
|---|
| 993 | Ian Lynagh <igloo@earth.li>**20080616185839] |
|---|
| 994 | [Avoid using deprecated flags in the testsuite tests |
|---|
| 995 | Ian Lynagh <igloo@earth.li>**20080616143113] |
|---|
| 996 | [Avoid using deprecated flags |
|---|
| 997 | Ian Lynagh <igloo@earth.li>**20080614195136] |
|---|
| 998 | [Use -fforce-recomp rather than -no-recomp |
|---|
| 999 | Ian Lynagh <igloo@earth.li>**20080614181803] |
|---|
| 1000 | [Use -fforce-recomp rather than -no-recomp |
|---|
| 1001 | Ian Lynagh <igloo@earth.li>**20080614174644] |
|---|
| 1002 | [Use -fforce-recomp instead of -no-recomp |
|---|
| 1003 | Ian Lynagh <igloo@earth.li>**20080614174400] |
|---|
| 1004 | [Add a test for Integer-Float/Double conversions |
|---|
| 1005 | Ian Lynagh <igloo@earth.li>**20080604014406] |
|---|
| 1006 | [Update unicode002 output for unicode 5.1.0 |
|---|
| 1007 | Ian Lynagh <igloo@earth.li>**20080613220509] |
|---|
| 1008 | [Simplify, and correct, the code for determining whether we should use threads |
|---|
| 1009 | Ian Lynagh <igloo@earth.li>**20080612160052] |
|---|
| 1010 | [Remove a duplicate all.T entry for conc051 |
|---|
| 1011 | Ian Lynagh <igloo@earth.li>**20080611181035] |
|---|
| 1012 | [Fix Cpr001 to work when we run with multiple threads |
|---|
| 1013 | Ian Lynagh <igloo@earth.li>**20080611173857] |
|---|
| 1014 | [Refuse to use threads unless python version >= 2.5.2 |
|---|
| 1015 | Ian Lynagh <igloo@earth.li>**20080611155148 |
|---|
| 1016 | According to trac #1558, 2.5.2 should work. It's possible a lower bound, |
|---|
| 1017 | e.g. 2.5, would suffice. |
|---|
| 1018 | ] |
|---|
| 1019 | [Pass --threads rather than --thread |
|---|
| 1020 | Ian Lynagh <igloo@earth.li>**20080611154818] |
|---|
| 1021 | [Break expect_fail_if_compiler_type and expect_broken_if_compiler_type down |
|---|
| 1022 | Ian Lynagh <igloo@earth.li>**20080610120649 |
|---|
| 1023 | into their component parts |
|---|
| 1024 | if_compiler_type |
|---|
| 1025 | expect_fail |
|---|
| 1026 | expect_broken |
|---|
| 1027 | ] |
|---|
| 1028 | [Test Trac #1624 |
|---|
| 1029 | simonpj@microsoft.com**20080606134158] |
|---|
| 1030 | [Update test output |
|---|
| 1031 | simonpj@microsoft.com**20080606130800] |
|---|
| 1032 | [Test for Trac #2334 |
|---|
| 1033 | simonpj@microsoft.com**20080606122618] |
|---|
| 1034 | [Test Trac #2045 |
|---|
| 1035 | simonpj@microsoft.com**20080605165009] |
|---|
| 1036 | [Stop rebindable9 relying on Control.Monad.Identity |
|---|
| 1037 | simonpj@microsoft.com**20080604164852] |
|---|
| 1038 | [Test for Trac #2310 |
|---|
| 1039 | simonpj@microsoft.com**20080604152937] |
|---|
| 1040 | [rebindable9 works now that Trac #1537 is fixed |
|---|
| 1041 | simonpj@microsoft.com**20080604152013] |
|---|
| 1042 | [Test for T2339 |
|---|
| 1043 | simonpj@microsoft.com**20080604143631] |
|---|
| 1044 | [add test for #2334 |
|---|
| 1045 | Simon Marlow <marlowsd@gmail.com>**20080604114745] |
|---|
| 1046 | [fix up this test following the header-file changes in the C backend |
|---|
| 1047 | Simon Marlow <marlowsd@gmail.com>**20080604084324] |
|---|
| 1048 | [FIX #2175: evaluate the list first |
|---|
| 1049 | Simon Marlow <marlowsd@gmail.com>**20080604082907] |
|---|
| 1050 | [Pass -dno-debug-output to GHC>=6.9 |
|---|
| 1051 | Simon Marlow <marlowsd@gmail.com>**20080603091421 |
|---|
| 1052 | Allow the testsuite to be run with a DEBUG compiler |
|---|
| 1053 | ] |
|---|
| 1054 | [use stage2 by default |
|---|
| 1055 | Simon Marlow <marlowsd@gmail.com>**20080603080846] |
|---|
| 1056 | [Skip print026 in the 6.8 branch |
|---|
| 1057 | Ian Lynagh <igloo@earth.li>**20080602204113 |
|---|
| 1058 | It fails for me, but not consistently - possibly only with a validate |
|---|
| 1059 | build. Seems plausible that the problem is something like library build |
|---|
| 1060 | flags. |
|---|
| 1061 | |
|---|
| 1062 | -l = Data.Sequence.Seq (Data.Sequence.Deep 3 |
|---|
| 1063 | - (Data.Sequence.One (Data.Sequence.Elem 'a')) Data.Sequence.Empty |
|---|
| 1064 | - (Data.Sequence.Two (Data.Sequence.Elem 'b') (Data.Sequence.Elem 'c'))) |
|---|
| 1065 | +l = <Data.Sequence.Deep> (<Data.Sequence.One> 'a') <Data.Sequence.Empty> |
|---|
| 1066 | + (<Data.Sequence.Two> 'b' 'c') |
|---|
| 1067 | ] |
|---|
| 1068 | [hs_add_root() is necessary before calling any Haskell code |
|---|
| 1069 | Simon Marlow <marlowsd@gmail.com>**20080529104147] |
|---|
| 1070 | [Skip maessen_hashtab in the 6.8 branch |
|---|
| 1071 | Ian Lynagh <igloo@earth.li>**20080530212321 |
|---|
| 1072 | 6.8.2 and soon-to-be-6.8.3 fail it the normal,ghci,threaded1 ways. |
|---|
| 1073 | ] |
|---|
| 1074 | [Skip recomp005 in the 6.8 branch |
|---|
| 1075 | Ian Lynagh <igloo@earth.li>**20080530175628 |
|---|
| 1076 | The output looks OK to me, although I'm not sure why it differs to the HEAD. |
|---|
| 1077 | ] |
|---|
| 1078 | [Skip the DoParamM test in the 6.8 branch |
|---|
| 1079 | Ian Lynagh <igloo@earth.li>**20080530175034] |
|---|
| 1080 | [ghci030 is fixed now (bug #2082) |
|---|
| 1081 | Simon Marlow <marlowsd@gmail.com>**20080529150745] |
|---|
| 1082 | [Skip 1372 in the 6.8 branch |
|---|
| 1083 | Ian Lynagh <igloo@earth.li>**20080528223329] |
|---|
| 1084 | [ffi018(ghci) is failing in an unregisterised 6.8 branch compiler, so skip it |
|---|
| 1085 | Ian Lynagh <igloo@earth.li>**20080528213051 |
|---|
| 1086 | (in the 6.8 branch only) |
|---|
| 1087 | ] |
|---|
| 1088 | [cg057 passes in the 6.8 branch |
|---|
| 1089 | Ian Lynagh <igloo@earth.li>**20080528131527] |
|---|
| 1090 | [Skip barton-mangler-bug(profc) in the 6.8 branch |
|---|
| 1091 | Ian Lynagh <igloo@earth.li>**20080528131012 |
|---|
| 1092 | It was hitting the timeout limit |
|---|
| 1093 | ] |
|---|
| 1094 | [Skip ghcpkg01 in the 6.8 branch |
|---|
| 1095 | Ian Lynagh <igloo@earth.li>**20080528125754 |
|---|
| 1096 | "ghc-pkg describe testpkg-*" wasn't matching anything; looks like it |
|---|
| 1097 | looks at the package name in isolation, rather than considering the |
|---|
| 1098 | package name and version together. |
|---|
| 1099 | ] |
|---|
| 1100 | [Wibble the conc035 test |
|---|
| 1101 | Ian Lynagh <igloo@earth.li>**20080528123858 |
|---|
| 1102 | Fixes its output when running the ghci way |
|---|
| 1103 | ] |
|---|
| 1104 | [Omit conc064(threaded2) on the 6.8 branch |
|---|
| 1105 | Ian Lynagh <igloo@earth.li>**20080528122900] |
|---|
| 1106 | [Omit xmlish(profasm,profc) for the 6.8 branch |
|---|
| 1107 | Ian Lynagh <igloo@earth.li>**20080528114319] |
|---|
| 1108 | [Omit cg060(profasm,profc) for the 6.8 branch |
|---|
| 1109 | Ian Lynagh <igloo@earth.li>**20080528114255] |
|---|
| 1110 | [Wibble the num009 test |
|---|
| 1111 | Ian Lynagh <igloo@earth.li>**20080527235728] |
|---|
| 1112 | [add test for #1372 |
|---|
| 1113 | Simon Marlow <marlowsd@gmail.com>**20080528155515] |
|---|
| 1114 | [skip rnfail055 for 6.8 |
|---|
| 1115 | Simon Marlow <marlowsd@gmail.com>**20080528151313] |
|---|
| 1116 | [TAG 2008-05-28 |
|---|
| 1117 | Ian Lynagh <igloo@earth.li>**20080528133158] |
|---|
| 1118 | [add test for a bug in 6.8.2's handling of orphan modules |
|---|
| 1119 | Simon Marlow <marlowsd@gmail.com>**20080528130001] |
|---|
| 1120 | [add test for hs-boot consistency checking |
|---|
| 1121 | Simon Marlow <marlowsd@gmail.com>**20080527143314] |
|---|
| 1122 | [update expected output |
|---|
| 1123 | Simon Marlow <marlowsd@gmail.com>**20080528125623] |
|---|
| 1124 | [tc199 is expected to fail on GHC 6.8 (#1061) |
|---|
| 1125 | Ian Lynagh <igloo@earth.li>**20080527175108] |
|---|
| 1126 | [add missing file |
|---|
| 1127 | Simon Marlow <marlowsd@gmail.com>**20080527105655] |
|---|
| 1128 | [Add boilerplate to Makefile |
|---|
| 1129 | Ian Lynagh <igloo@earth.li>**20080526180242] |
|---|
| 1130 | [Omit the ghci way for TH_spliceE5_prof |
|---|
| 1131 | Ian Lynagh <igloo@earth.li>**20080526171906 |
|---|
| 1132 | We don't support --interactive -prof |
|---|
| 1133 | ] |
|---|
| 1134 | [Update output for GHC 6.8 |
|---|
| 1135 | Ian Lynagh <igloo@earth.li>**20080521144053] |
|---|
| 1136 | [tc199 is now expect-pass |
|---|
| 1137 | simonpj@microsoft.com**20080521141311] |
|---|
| 1138 | [Update tests to improvements in renamer error reporting (duplicate decls and misplaced sigs) |
|---|
| 1139 | simonpj@microsoft.com**20080521090405] |
|---|
| 1140 | [Test for unboxed values in tuples |
|---|
| 1141 | simonpj@microsoft.com**20080521083600] |
|---|
| 1142 | [following the fix for #1955, the .ps file is now in foo.ps, not foo.exe.ps on Windows |
|---|
| 1143 | Simon Marlow <simonmar@microsoft.com>**20080514130508] |
|---|
| 1144 | [fix ghci024 (for HEAD, at least) |
|---|
| 1145 | Simon Marlow <marlowsd@gmail.com>**20080520095154] |
|---|
| 1146 | [Accept -fmethod-sharing |
|---|
| 1147 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20080520053326] |
|---|
| 1148 | [add test for #2014 |
|---|
| 1149 | Simon Marlow <marlowsd@gmail.com>**20080515134237] |
|---|
| 1150 | [Fix a framework error in ffi018 |
|---|
| 1151 | Ian Lynagh <igloo@earth.li>**20080515144658] |
|---|
| 1152 | [Add a test for trac #2059 |
|---|
| 1153 | Ian Lynagh <igloo@earth.li>**20080514122955] |
|---|
| 1154 | [add test for #2276 |
|---|
| 1155 | Simon Marlow <simonmar@microsoft.com>**20080514100405] |
|---|
| 1156 | [add test for #1288 |
|---|
| 1157 | Simon Marlow <simonmar@microsoft.com>**20080514100346] |
|---|
| 1158 | [make this .T file more multi-thread-friendly |
|---|
| 1159 | Simon Marlow <simonmar@microsoft.com>**20080514091058 |
|---|
| 1160 | use extra_clean, and avoid top-level runCmd |
|---|
| 1161 | ] |
|---|
| 1162 | [Don't bother testing ghostscript if we have no profiling libraries |
|---|
| 1163 | Simon Marlow <simonmar@microsoft.com>**20080509093300] |
|---|
| 1164 | [added a test for eliminating dead assignment i++ in loop |
|---|
| 1165 | Norman Ramsey <nr@eecs.harvard.edu>**20080512224002] |
|---|
| 1166 | [add test for #1861 |
|---|
| 1167 | Simon Marlow <marlowsd@gmail.com>**20080512092634] |
|---|
| 1168 | [skip ffi004, which calls a varargs function via the FFI |
|---|
| 1169 | Simon Marlow <marlowsd@gmail.com>**20080509150233] |
|---|
| 1170 | [accept output after changes to overloaded literal desugaring |
|---|
| 1171 | Simon Marlow <marlowsd@gmail.com>**20080508124248] |
|---|
| 1172 | [We expect T2238 to fail with GHC 6.8 |
|---|
| 1173 | Ian Lynagh <igloo@earth.li>**20080502160547] |
|---|
| 1174 | [move these tests to the process package |
|---|
| 1175 | Simon Marlow <simonmarhaskell@gmail.com>**20080423041419] |
|---|
| 1176 | [Test for Trac #2238 |
|---|
| 1177 | simonpj@microsoft.com**20080428153654] |
|---|
| 1178 | [Skip print022 with GHC 6.8 (it uses Word literals) |
|---|
| 1179 | Ian Lynagh <igloo@earth.li>**20080427164124] |
|---|
| 1180 | [Add output for break019 and GHC 6.8 |
|---|
| 1181 | Ian Lynagh <igloo@earth.li>**20080427163956] |
|---|
| 1182 | [Skip TH_repPrim and TH_repPrimOutput for GHC 6.8 |
|---|
| 1183 | Ian Lynagh <igloo@earth.li>**20080427163052 |
|---|
| 1184 | They now use Word literals, which 6.8 doesn't support. |
|---|
| 1185 | ] |
|---|
| 1186 | [Add a test for spaces in SCCs (trac #2036) |
|---|
| 1187 | Ian Lynagh <igloo@earth.li>**20080427134231] |
|---|
| 1188 | [Add a test for showing Doubles |
|---|
| 1189 | Ian Lynagh <igloo@earth.li>**20080427133116 |
|---|
| 1190 | In particular, show (Just (-0/1)) should put parens around the -0.0 in |
|---|
| 1191 | Just (-0.0); trac #2036. |
|---|
| 1192 | ] |
|---|
| 1193 | [Remove divbyzero.stderr |
|---|
| 1194 | Ian Lynagh <igloo@earth.li>**20080426010049 |
|---|
| 1195 | We ignore it on Linux, and it's wrong for Windows (which caused the |
|---|
| 1196 | test to fail). |
|---|
| 1197 | ] |
|---|
| 1198 | [Remove derefnull.stderr |
|---|
| 1199 | Ian Lynagh <igloo@earth.li>**20080426005841 |
|---|
| 1200 | We ignore it on Linux, and it's wrong for Windows (which caused the |
|---|
| 1201 | test to fail). |
|---|
| 1202 | ] |
|---|
| 1203 | [Comment out some unused code in test 2122 |
|---|
| 1204 | Ian Lynagh <igloo@earth.li>**20080425161123 |
|---|
| 1205 | This was causing the test to fail on Windows, as the unused code used |
|---|
| 1206 | System.Posix.IO. |
|---|
| 1207 | ] |
|---|
| 1208 | [Add a test for Integer conversions |
|---|
| 1209 | Ian Lynagh <igloo@earth.li>**20080424133024] |
|---|
| 1210 | [Add a bits test for Integer |
|---|
| 1211 | Ian Lynagh <igloo@earth.li>**20080423220859] |
|---|
| 1212 | [Add Word# literals to some tests |
|---|
| 1213 | Ian Lynagh <igloo@earth.li>**20080423184523] |
|---|
| 1214 | [Add a test tcfail199 for trac #2179 |
|---|
| 1215 | Ian Lynagh <igloo@earth.li>**20080423190505] |
|---|
| 1216 | [Add a test rnfail054 for trac #2141 |
|---|
| 1217 | Ian Lynagh <igloo@earth.li>**20080423185529] |
|---|
| 1218 | [Add GHC 6.8 output for print002 |
|---|
| 1219 | Ian Lynagh <igloo@earth.li>**20080423103247] |
|---|
| 1220 | [Skip test base01 if GHC < 6.9 as it now assumes the ghc-prim package exists |
|---|
| 1221 | Ian Lynagh <igloo@earth.li>**20080423102831] |
|---|
| 1222 | [Test print033 passes now |
|---|
| 1223 | pepe <mnislaih@gmail.com>**20080419155946] |
|---|
| 1224 | [Add if_os, and change derefnull/divbyzero to use it |
|---|
| 1225 | Ian Lynagh <igloo@earth.li>**20080420194251 |
|---|
| 1226 | I think different Linux setups generate different output for these tests, |
|---|
| 1227 | so we just ignore the output on Linux now. |
|---|
| 1228 | ] |
|---|
| 1229 | [Add if_platform and remove *_if_platform |
|---|
| 1230 | Ian Lynagh <igloo@earth.li>**20080420184951 |
|---|
| 1231 | This removes some duplication from the testsuite driver |
|---|
| 1232 | ] |
|---|
| 1233 | [Update output for arith011 on 32bit machines |
|---|
| 1234 | Ian Lynagh <igloo@earth.li>**20080418184949] |
|---|
| 1235 | [Add a test for #2044 (:printing impredicatively typed values) |
|---|
| 1236 | pepe <mnislaih@gmail.com>**20080418134004] |
|---|
| 1237 | [Add a missing file for test print029 |
|---|
| 1238 | Pepe Iborra <mnislaih@gmail.com>**20080416161026] |
|---|
| 1239 | [Track the addition of the Static Arg Transformation |
|---|
| 1240 | simonpj@microsoft.com**20080414120144] |
|---|
| 1241 | [Add test for Note [transferPolyIdInfo] in Id.lhs |
|---|
| 1242 | simonpj@microsoft.com**20080411142235] |
|---|
| 1243 | [Track error message changes |
|---|
| 1244 | simonpj@microsoft.com**20080411141345] |
|---|
| 1245 | [Slightly less nice output, but the previous version was largely accidental |
|---|
| 1246 | simonpj@microsoft.com**20080411141316] |
|---|
| 1247 | [Test for GADT escape (I forget which Trac bug this is for, if any) |
|---|
| 1248 | simonpj@microsoft.com**20080410090538] |
|---|
| 1249 | [Follow minor spacing change in typechecker output |
|---|
| 1250 | simonpj@microsoft.com**20080410090410] |
|---|
| 1251 | [Test for Trac 2205 |
|---|
| 1252 | simonpj@microsoft.com**20080410090329] |
|---|
| 1253 | [add -v0 to Over, we don't care in which order the modules are loaded |
|---|
| 1254 | Simon Marlow <simonmarhaskell@gmail.com>**20080408030532] |
|---|
| 1255 | [update output |
|---|
| 1256 | Simon Marlow <simonmarhaskell@gmail.com>**20080407224036] |
|---|
| 1257 | [Accept output for bug1677, mod178 |
|---|
| 1258 | Tim Chevalier <chevalier@alum.wellesley.edu>**20080406211554 |
|---|
| 1259 | |
|---|
| 1260 | Changed error messages as per: |
|---|
| 1261 | |
|---|
| 1262 | Sun Apr 6 12:38:21 PDT 2008 Tim Chevalier <chevalier@alum.wellesley.edu> |
|---|
| 1263 | * Improve error message for non-matching file name |
|---|
| 1264 | |
|---|
| 1265 | ] |
|---|
| 1266 | [Accept output for read029 |
|---|
| 1267 | Tim Chevalier <chevalier@alum.wellesley.edu>**20080406211339 |
|---|
| 1268 | |
|---|
| 1269 | Changed error message as per: |
|---|
| 1270 | |
|---|
| 1271 | Sun Apr 6 13:23:33 PDT 2008 Tim Chevalier <chevalier@alum.wellesley.edu> |
|---|
| 1272 | * Improve error message for malformed LANGUAGE pragma |
|---|
| 1273 | |
|---|
| 1274 | ] |
|---|
| 1275 | [Re-jig test for Trac 2188 |
|---|
| 1276 | simonpj@microsoft.com**20080405162544] |
|---|
| 1277 | [Test 'list002' should be passing now |
|---|
| 1278 | Pepe Iborra <mnislaih@gmail.com>**20080405162305] |
|---|
| 1279 | [Test path virtualization in GHCi |
|---|
| 1280 | Pepe Iborra <mnislaih@gmail.com>**20080405145029] |
|---|
| 1281 | [rn063 and rn064 are expected passes now, bugs fixed |
|---|
| 1282 | simonpj@microsoft.com**20080405093147] |
|---|
| 1283 | [Another eyeball test for the inliner |
|---|
| 1284 | simonpj@microsoft.com**20080404132946] |
|---|
| 1285 | [Add a test simplrun010 for trac #1947 |
|---|
| 1286 | Ian Lynagh <igloo@earth.li>**20080402200403] |
|---|
| 1287 | [Add a test TH_scope for trac#2188 |
|---|
| 1288 | Ian Lynagh <igloo@earth.li>**20080330211410] |
|---|
| 1289 | [Add a test for trac #2158 |
|---|
| 1290 | Ian Lynagh <igloo@earth.li>**20080330193644] |
|---|
| 1291 | [Tweak #2174, which we now expect to pass again |
|---|
| 1292 | Ian Lynagh <igloo@earth.li>**20080326141428] |
|---|
| 1293 | [stableptr003 is broken; trac #2175 |
|---|
| 1294 | Ian Lynagh <igloo@earth.li>**20080323215713] |
|---|
| 1295 | [print002 is broken (trac #2174) |
|---|
| 1296 | Ian Lynagh <igloo@earth.li>**20080323214817] |
|---|
| 1297 | [Make stableptr003 give more useful output |
|---|
| 1298 | Ian Lynagh <igloo@earth.li>**20080322223349] |
|---|
| 1299 | [Update output for tc168 |
|---|
| 1300 | Ian Lynagh <igloo@earth.li>**20080322214852] |
|---|
| 1301 | [Update tc231 output |
|---|
| 1302 | Ian Lynagh <igloo@earth.li>**20080322214804] |
|---|
| 1303 | [Update base01 |
|---|
| 1304 | Ian Lynagh <igloo@earth.li>**20080322214617] |
|---|
| 1305 | [Update output for ghci024 |
|---|
| 1306 | Ian Lynagh <igloo@earth.li>**20080322214329] |
|---|
| 1307 | [Update ghci025 output |
|---|
| 1308 | Ian Lynagh <igloo@earth.li>**20080322214040] |
|---|
| 1309 | [Add a new test for :list |
|---|
| 1310 | Pepe Iborra <mnislaih@gmail.com>**20080319203404 |
|---|
| 1311 | |
|---|
| 1312 | Check that :list keeps working after setCurrentDirectory has been used |
|---|
| 1313 | |
|---|
| 1314 | ] |
|---|
| 1315 | [Update output |
|---|
| 1316 | Ian Lynagh <igloo@earth.li>**20080316202241] |
|---|
| 1317 | [Ooops, rn065 is for #1491, not #1578 |
|---|
| 1318 | Ian Lynagh <igloo@earth.li>**20080315214138] |
|---|
| 1319 | [Update output for bug1465 |
|---|
| 1320 | Ian Lynagh <igloo@earth.li>**20080315201329] |
|---|
| 1321 | [Add a test rn065 for trac #1578 |
|---|
| 1322 | Ian Lynagh <igloo@earth.li>**20080315145042] |
|---|
| 1323 | [Add 6.8 output for FD3 |
|---|
| 1324 | Ian Lynagh <igloo@earth.li>**20080314184428] |
|---|
| 1325 | [add test for unsafePerformIO/stack overflow |
|---|
| 1326 | Simon Marlow <simonmarhaskell@gmail.com>**20080313185420] |
|---|
| 1327 | [typecheck/FD3: revert to error msg of previous version ofthe compiler |
|---|
| 1328 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20080313065006] |
|---|
| 1329 | [Type families: Roman's test for normalisation of reduced dicts |
|---|
| 1330 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20080313060146] |
|---|
| 1331 | [add i386/Linux output |
|---|
| 1332 | Simon Marlow <simonmarhaskell@gmail.com>**20080312215227 |
|---|
| 1333 | This might as well be the default output, so we at least have a chance |
|---|
| 1334 | of this test working on other platforms. |
|---|
| 1335 | ] |
|---|
| 1336 | [skip ffi012 unless running on Windows |
|---|
| 1337 | Simon Marlow <simonmarhaskell@gmail.com>**20080312214749] |
|---|
| 1338 | [run ffi009(ghci) |
|---|
| 1339 | Simon Marlow <simonmarhaskell@gmail.com>**20080312214736] |
|---|
| 1340 | [rename ccall to ffi |
|---|
| 1341 | Simon Marlow <simonmarhaskell@gmail.com>**20080312214702] |
|---|
| 1342 | [Fix expected output |
|---|
| 1343 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20080310001821] |
|---|
| 1344 | [Add a SpecConstr test |
|---|
| 1345 | simonpj@microsoft.com**20080306121200] |
|---|
| 1346 | [Add some tests |
|---|
| 1347 | Ian Lynagh <igloo@earth.li>**20080305020040] |
|---|
| 1348 | [expect failure for profthreaded (NCG floating pt differences) |
|---|
| 1349 | Simon Marlow <simonmar@microsoft.com>**20080229100856] |
|---|
| 1350 | [enable profthreaded only for GHC 6.9+ |
|---|
| 1351 | Simon Marlow <simonmar@microsoft.com>**20080229100624] |
|---|
| 1352 | [Update 6.8-specific output |
|---|
| 1353 | Ian Lynagh <igloo@earth.li>**20080302145531] |
|---|
| 1354 | [add "profthreaded" as a run way |
|---|
| 1355 | Simon Marlow <simonmar@microsoft.com>**20080228111845] |
|---|
| 1356 | [add test for #2122 |
|---|
| 1357 | Simon Marlow <simonmar@microsoft.com>**20080226140606] |
|---|
| 1358 | [Track changes in error messages |
|---|
| 1359 | simonpj@microsoft.com**20080228120802] |
|---|
| 1360 | [Track error message changes |
|---|
| 1361 | simonpj@microsoft.com**20080228083601] |
|---|
| 1362 | [Test for Trac #2111 |
|---|
| 1363 | simonpj@microsoft.com**20080228083540] |
|---|
| 1364 | [Test for Trac #1899 |
|---|
| 1365 | simonpj@microsoft.com**20080226175231] |
|---|
| 1366 | [Type families: tests for SkolemOccurs loop |
|---|
| 1367 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20080228005618 |
|---|
| 1368 | - Two tricky tests by Tom Schrijvers and Martin Sulzmann |
|---|
| 1369 | ] |
|---|
| 1370 | [Test Trac 2126 |
|---|
| 1371 | simonpj@microsoft.com**20080227163303] |
|---|
| 1372 | [Tests for Trac #2114 |
|---|
| 1373 | simonpj@microsoft.com**20080225172734] |
|---|
| 1374 | [Add fundep to rebindable5, which makes it work again |
|---|
| 1375 | simonpj@microsoft.com**20080222182140] |
|---|
| 1376 | [Track error message changes |
|---|
| 1377 | simonpj@microsoft.com**20080222181949] |
|---|
| 1378 | [ghci030 is currently broken: trac #2082 |
|---|
| 1379 | Ian Lynagh <igloo@earth.li>**20080224204610] |
|---|
| 1380 | [Actually run test ghci030 |
|---|
| 1381 | Ian Lynagh <igloo@earth.li>**20080224204438] |
|---|
| 1382 | [Add a test for #2082 |
|---|
| 1383 | Ian Lynagh <igloo@earth.li>**20080224142711] |
|---|
| 1384 | [Add 'dyn' as WAY (different from 'normal' only by -dynamic) |
|---|
| 1385 | Clemens Fruhwirth <clemens@endorphin.org>**20080220135304] |
|---|
| 1386 | [Add a slightly more robust concurrent I/O test |
|---|
| 1387 | Simon Marlow <simonmar@microsoft.com>**20080218102231 |
|---|
| 1388 | also disable concio001, which is too unreliable |
|---|
| 1389 | ] |
|---|
| 1390 | [Give 6.8-branch output for TH_fail |
|---|
| 1391 | Ian Lynagh <igloo@earth.li>**20080119200949] |
|---|
| 1392 | [fix #1750 in the stable branch |
|---|
| 1393 | Simon Marlow <simonmar@microsoft.com>**20080211133833] |
|---|
| 1394 | [remove now-superfluous 6.8 output |
|---|
| 1395 | Simon Marlow <simonmar@microsoft.com>**20080211122111] |
|---|
| 1396 | [Apply cmd_prefix also to the ghci way |
|---|
| 1397 | Thorkil Naur <naur@post11.tele.dk>**20080208224507] |
|---|
| 1398 | [Cache the results of looking to see if we have a library or not |
|---|
| 1399 | Ian Lynagh <igloo@earth.li>**20080210161041 |
|---|
| 1400 | When handling a test says reqlib('mtl') we cache the result, so we only |
|---|
| 1401 | need to run ghc-pkg once no matter how many tests say it. This makes |
|---|
| 1402 | quite a difference, especially on Windows. |
|---|
| 1403 | ] |
|---|
| 1404 | [Follow change in error message wording |
|---|
| 1405 | simonpj@microsoft.com**20080208142505] |
|---|
| 1406 | [DoParamM depends on mtl |
|---|
| 1407 | simonpj@microsoft.com**20080208125126] |
|---|
| 1408 | [add test for #2080 |
|---|
| 1409 | Simon Marlow <simonmar@microsoft.com>**20080208124244] |
|---|
| 1410 | [Add another eyeball test |
|---|
| 1411 | simonpj@microsoft.com**20080207174343] |
|---|
| 1412 | [Add a new category of "eyeball" tests |
|---|
| 1413 | simonpj@microsoft.com**20080207162244 |
|---|
| 1414 | |
|---|
| 1415 | These tests are hard to do automatically, but they record examples that |
|---|
| 1416 | provoked changes to the optimiser. Each one has notes that says what you |
|---|
| 1417 | should expect to see! |
|---|
| 1418 | |
|---|
| 1419 | ] |
|---|
| 1420 | [rebindable5,6 are expected failures (see Trac #1537) |
|---|
| 1421 | simonpj@microsoft.com**20080207160535] |
|---|
| 1422 | [Add tests for parameterised monads from Oleg |
|---|
| 1423 | simonpj@microsoft.com**20080206172709] |
|---|
| 1424 | [Find compiler version-specific output files automatically |
|---|
| 1425 | Simon Marlow <simonmar@microsoft.com>**20080206105510 |
|---|
| 1426 | Also, clean up the way we find the output file. From the comment: |
|---|
| 1427 | |
|---|
| 1428 | # Finding the sample output. The filename is of the form |
|---|
| 1429 | # |
|---|
| 1430 | # <test>.stdout[-<compiler>][-<version>][-<wordsize>][-<platform>] |
|---|
| 1431 | # |
|---|
| 1432 | # and we pick the most specific version available. The <version> is |
|---|
| 1433 | # the major version of the compiler (e.g. 6.8.2 would be "6.8"). For |
|---|
| 1434 | # more fine-grained control use if_compiler_lt(). |
|---|
| 1435 | |
|---|
| 1436 | I'll update the wiki too. |
|---|
| 1437 | ] |
|---|
| 1438 | [6.8-specific output. |
|---|
| 1439 | Simon Marlow <simonmar@microsoft.com>**20080206105338 |
|---|
| 1440 | The remaining validation test failures on the stable branch will be |
|---|
| 1441 | fixed by pending merged. |
|---|
| 1442 | ] |
|---|
| 1443 | [skip if GHC < 6.9 |
|---|
| 1444 | Simon Marlow <simonmar@microsoft.com>**20080206104852] |
|---|
| 1445 | [If the "setup" argument to test is a list, treat it as a list of functions |
|---|
| 1446 | Simon Marlow <simonmar@microsoft.com>**20080206104825 |
|---|
| 1447 | Avoids the need to write composes() |
|---|
| 1448 | ] |
|---|
| 1449 | [add test for #2047 |
|---|
| 1450 | Simon Marlow <simonmar@microsoft.com>**20080205165221] |
|---|
| 1451 | [accept output (no newline after uncaught exception) |
|---|
| 1452 | Simon Marlow <simonmar@microsoft.com>**20080205165212] |
|---|
| 1453 | [accept output (no newline after uncaught exception) |
|---|
| 1454 | Simon Marlow <simonmar@microsoft.com>**20080205094800] |
|---|
| 1455 | [Add a new test for #1537 |
|---|
| 1456 | Pepe Iborra <mnislaih@gmail.com>**20080201192547] |
|---|
| 1457 | [accept output. The order of compilation has changed, for some reason. |
|---|
| 1458 | Simon Marlow <simonmar@microsoft.com>**20080201145201] |
|---|
| 1459 | [accept output. The column number is different, and still wrong. |
|---|
| 1460 | Simon Marlow <simonmar@microsoft.com>**20080201145141] |
|---|
| 1461 | [accept output (change to default exception handler in Control.Exeption) |
|---|
| 1462 | Simon Marlow <simonmar@microsoft.com>**20080124100448] |
|---|
| 1463 | [add test for #1750 |
|---|
| 1464 | Simon Marlow <simonmar@microsoft.com>**20080123162952] |
|---|
| 1465 | [Normalise some slashes |
|---|
| 1466 | Ian Lynagh <igloo@earth.li>**20080123161046] |
|---|
| 1467 | [Avoid some escaping in a commandline |
|---|
| 1468 | Ian Lynagh <igloo@earth.li>**20080123160220] |
|---|
| 1469 | [Don't hide output |
|---|
| 1470 | Ian Lynagh <igloo@earth.li>**20080123160142] |
|---|
| 1471 | [update to test for #2049 |
|---|
| 1472 | Simon Marlow <simonmar@microsoft.com>**20080122161434] |
|---|
| 1473 | [remove now-unnecessary #1545 skips |
|---|
| 1474 | Simon Marlow <simonmar@microsoft.com>**20080122160609] |
|---|
| 1475 | [normalise '\' to '/' in the output, to fix Windows failures |
|---|
| 1476 | Simon Marlow <simonmar@microsoft.com>**20080122160546] |
|---|
| 1477 | [allow extra normalisation to be applied to the output on a per-test basis |
|---|
| 1478 | Simon Marlow <simonmar@microsoft.com>**20080122160520] |
|---|
| 1479 | [fix intermittent failure with ghci025 |
|---|
| 1480 | Simon Marlow <simonmar@microsoft.com>**20080118135812] |
|---|
| 1481 | [Test for Trac 2055 |
|---|
| 1482 | simonpj@microsoft.com**20080121123938] |
|---|
| 1483 | [bug1677 is also broken by #2034 (FilePath bug) |
|---|
| 1484 | Ian Lynagh <igloo@earth.li>*-20080112203306] |
|---|
| 1485 | [Mark some bugs as broken in the HEAD due to FilePath bug #2034 |
|---|
| 1486 | Ian Lynagh <igloo@earth.li>*-20080112174219] |
|---|
| 1487 | [Add another ghc -e / runghc test |
|---|
| 1488 | Ian Lynagh <igloo@earth.li>**20080120185607] |
|---|
| 1489 | [Add a test for exitWith and ghc -e |
|---|
| 1490 | Ian Lynagh <igloo@earth.li>**20080120170526] |
|---|
| 1491 | [Add WinCBindings.hsc, not WinCBindings.hs! |
|---|
| 1492 | Ian Lynagh <igloo@earth.li>**20080120232037] |
|---|
| 1493 | [Fix #1599: Improve timeout on Windows |
|---|
| 1494 | Ian Lynagh <igloo@earth.li>**20080120111532 |
|---|
| 1495 | We now run programs in a Job, which means that we can kill a process |
|---|
| 1496 | and all of its children when a timeout happens. |
|---|
| 1497 | ] |
|---|
| 1498 | [Add a test for multiple -e flags |
|---|
| 1499 | Ian Lynagh <igloo@earth.li>**20080119222916] |
|---|
| 1500 | [Test for ghc -e ":main" |
|---|
| 1501 | Ian Lynagh <igloo@earth.li>**20080119220744] |
|---|
| 1502 | [Add a test that we get an error if conflicting mode flags are given |
|---|
| 1503 | Ian Lynagh <igloo@earth.li>**20080119212440] |
|---|
| 1504 | [Add a test for :main and :run |
|---|
| 1505 | Ian Lynagh <igloo@earth.li>**20080119165312] |
|---|
| 1506 | [Add a test for trac #1821 |
|---|
| 1507 | Ian Lynagh <igloo@earth.li>**20080119132743] |
|---|
| 1508 | [Tests for quasi-quotation |
|---|
| 1509 | simonpj@microsoft.com**20080118145255] |
|---|
| 1510 | [Add test for Trac #2024 |
|---|
| 1511 | simonpj@microsoft.com**20080117150235] |
|---|
| 1512 | [Test for duplicate decls |
|---|
| 1513 | simonpj@microsoft.com**20080117150011] |
|---|
| 1514 | [Update output |
|---|
| 1515 | Ian Lynagh <igloo@earth.li>**20080116213908] |
|---|
| 1516 | [Testsuite fixes for GHC 6.8 |
|---|
| 1517 | Ian Lynagh <igloo@earth.li>**20080116011503] |
|---|
| 1518 | [Add a test for trac #2033: view pattern where expression expected |
|---|
| 1519 | Ian Lynagh <igloo@earth.li>**20080115141319] |
|---|
| 1520 | [bug1677 is also broken by #2034 (FilePath bug) |
|---|
| 1521 | Ian Lynagh <igloo@earth.li>**20080112203306] |
|---|
| 1522 | [Mark some bugs as broken in the HEAD due to FilePath bug #2034 |
|---|
| 1523 | Ian Lynagh <igloo@earth.li>**20080112174219] |
|---|
| 1524 | [Test for Trac 2018 |
|---|
| 1525 | simonpj@microsoft.com**20080110114049] |
|---|
| 1526 | [Tests for Trac 2030 |
|---|
| 1527 | simonpj@microsoft.com**20080110113957] |
|---|
| 1528 | [Update output for new -XImpredicativeTypes flag |
|---|
| 1529 | simonpj@microsoft.com**20080109152107] |
|---|
| 1530 | [Test for Trac #2017 |
|---|
| 1531 | simonpj@microsoft.com**20080107125732] |
|---|
| 1532 | [Add tests for type signature validity (cf Trac 2019) |
|---|
| 1533 | simonpj@microsoft.com**20080107125322] |
|---|
| 1534 | [Remove bogus constructor from test |
|---|
| 1535 | simonpj@microsoft.com**20080107120752] |
|---|
| 1536 | [Skip more tests if using GHC < 6.9 |
|---|
| 1537 | Ian Lynagh <igloo@earth.li>**20080105174002] |
|---|
| 1538 | [Skip TransformListComp tests for GHC < 6.9 |
|---|
| 1539 | Ian Lynagh <igloo@earth.li>**20080105164157] |
|---|
| 1540 | [ghci can't run unboxed tuples currently |
|---|
| 1541 | Isaac Dupree <id@isaac.cedarswampstudios.org>**20080104173707] |
|---|
| 1542 | [add test for curried unboxed-tuple constructors |
|---|
| 1543 | Isaac Dupree <id@isaac.cedarswampstudios.org>**20080104134843] |
|---|
| 1544 | [add test for prefix unboxed tuples |
|---|
| 1545 | Isaac Dupree <id@isaac.cedarswampstudios.org>**20080102132824] |
|---|
| 1546 | [Accept output for tcfail172, too |
|---|
| 1547 | Tim Chevalier <chevalier@alum.wellesley.edu>**20071225190352] |
|---|
| 1548 | [Accept output for gadt13, gadt7 |
|---|
| 1549 | Tim Chevalier <chevalier@alum.wellesley.edu>**20071225185124] |
|---|
| 1550 | [Enable an old test for Trac 323 |
|---|
| 1551 | simonpj@microsoft.com**20071221095242] |
|---|
| 1552 | [Test for Trac 1988 |
|---|
| 1553 | simonpj@microsoft.com**20071221092410] |
|---|
| 1554 | [Test for Trac 1495 |
|---|
| 1555 | simonpj@microsoft.com**20071221091605] |
|---|
| 1556 | [Add test for Trac 1981 |
|---|
| 1557 | simonpj@microsoft.com**20071221090340] |
|---|
| 1558 | [Replace mentions of way 'opt' by the new 'optc' (often adding optasm too) |
|---|
| 1559 | simonpj@microsoft.com**20071221090151 |
|---|
| 1560 | |
|---|
| 1561 | Its really a testsuite-framework bug that these mentions of 'opt' have |
|---|
| 1562 | lingered so long. They should have been rejected as a non-existent way. |
|---|
| 1563 | |
|---|
| 1564 | ] |
|---|
| 1565 | [Tests for generalised list comprehensions |
|---|
| 1566 | simonpj@microsoft.com**20071220105906] |
|---|
| 1567 | [Give a ticket # to expect_broken |
|---|
| 1568 | Pepe Iborra <mnislaih@gmail.com>**20071220093444] |
|---|
| 1569 | [Unsoundness in the RTTI scheme |
|---|
| 1570 | Pepe Iborra <mnislaih@gmail.com>**20071219191932] |
|---|
| 1571 | [add test for #1980 |
|---|
| 1572 | Simon Marlow <simonmar@microsoft.com>**20071218092731] |
|---|
| 1573 | [Fix outofmem for other 32-bit Linux platforms |
|---|
| 1574 | Ian Lynagh <igloo@earth.li>**20071217231845] |
|---|
| 1575 | [6.8 updates |
|---|
| 1576 | Ian Lynagh <igloo@earth.li>**20071215205108] |
|---|
| 1577 | [Simplify the testsuite driver |
|---|
| 1578 | Ian Lynagh <igloo@earth.li>**20071215195350 |
|---|
| 1579 | Now instead of saying, e.g. |
|---|
| 1580 | namebase_if_compiler_lt('ghc','6.9', 'foo-6.8') |
|---|
| 1581 | you say |
|---|
| 1582 | if_compiler_lt('ghc','6.9', namebase('foo-6.8')) |
|---|
| 1583 | ] |
|---|
| 1584 | [add 6.8 output |
|---|
| 1585 | Simon Marlow <simonmar@microsoft.com>**20071212142523] |
|---|
| 1586 | [Update tests for Trac #1972 |
|---|
| 1587 | simonpj@microsoft.com**20071213140125] |
|---|
| 1588 | [More 6.8 fixes |
|---|
| 1589 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20071213033710] |
|---|
| 1590 | [Make GADT tests work with 6.8 again |
|---|
| 1591 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20071213031332] |
|---|
| 1592 | [Test for #1723 |
|---|
| 1593 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20071211071414] |
|---|
| 1594 | [Test for #1722 |
|---|
| 1595 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20071211062431] |
|---|
| 1596 | [Test from #1815 |
|---|
| 1597 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20071211055023] |
|---|
| 1598 | [accept output |
|---|
| 1599 | Simon Marlow <simonmar@microsoft.com>**20071212141945] |
|---|
| 1600 | [add 6.8 output |
|---|
| 1601 | Simon Marlow <simonmar@microsoft.com>**20071212141109] |
|---|
| 1602 | [countReaders001 doesn't work on Windows |
|---|
| 1603 | Simon Marlow <simonmar@microsoft.com>**20071212134000] |
|---|
| 1604 | [fix this test on windows (avoid non-portable use of :!) |
|---|
| 1605 | Simon Marlow <simonmar@microsoft.com>**20071212133745] |
|---|
| 1606 | [Adapt to changes in :print (contents of references) |
|---|
| 1607 | Pepe Iborra <mnislaih@gmail.com>**20071209182141] |
|---|
| 1608 | [Remaining regression of change from GADT refinement to equalities |
|---|
| 1609 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20071208111646 |
|---|
| 1610 | * gadt/lazypatok fails |
|---|
| 1611 | * tcfail167's error message gets worse; ie, no more |
|---|
| 1612 | "Inaccessible case alternative: Can't match types `Char' and `Float'" |
|---|
| 1613 | |
|---|
| 1614 | Both of these are minor regressions that will be addressed in due time. |
|---|
| 1615 | ] |
|---|
| 1616 | [gadt: slighly changed error msg with equalities |
|---|
| 1617 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20071208110824] |
|---|
| 1618 | [type families: Temporary fail |
|---|
| 1619 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20071208110317 |
|---|
| 1620 | - GADT3 fails with equalities instead of GADT refinement due to a known bug |
|---|
| 1621 | ] |
|---|
| 1622 | [Fixed by removing GADT refinements in favour of equalities |
|---|
| 1623 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20071208110253] |
|---|
| 1624 | [Fixed by correcting normalisation of dicts |
|---|
| 1625 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20071207071954] |
|---|
| 1626 | [Test for Trac #1370 |
|---|
| 1627 | simonpj@microsoft.com**20071207170427] |
|---|
| 1628 | [test now passes |
|---|
| 1629 | Simon Marlow <simonmar@microsoft.com>**20071206092511] |
|---|
| 1630 | [add test for #1959 |
|---|
| 1631 | Simon Marlow <simonmar@microsoft.com>**20071205152025] |
|---|
| 1632 | [add test for #1048 |
|---|
| 1633 | Simon Marlow <simonmar@microsoft.com>**20071205102619] |
|---|
| 1634 | [Added test for :print of a reference |
|---|
| 1635 | Pepe Iborra <mnislaih@gmail.com>**20071205114017] |
|---|
| 1636 | [GADT9 passes now that we have fixed #1919 |
|---|
| 1637 | simonpj@microsoft.com**20071203122458] |
|---|
| 1638 | [Skip arrowrun004 in the 6.8 branch |
|---|
| 1639 | Ian Lynagh <igloo@earth.li>**20071201214110] |
|---|
| 1640 | [Skip arrowrun002 for the 6.8 branch |
|---|
| 1641 | Ian Lynagh <igloo@earth.li>**20071201213910] |
|---|
| 1642 | [countReaders001 now passes in the 6.8 branch |
|---|
| 1643 | Ian Lynagh <igloo@earth.li>**20071201174337] |
|---|
| 1644 | [Add 6.8 branch output for break021 |
|---|
| 1645 | Ian Lynagh <igloo@earth.li>**20071201174241] |
|---|
| 1646 | [Add 6.8 branch output for break003 |
|---|
| 1647 | Ian Lynagh <igloo@earth.li>**20071201172005] |
|---|
| 1648 | [6.8 branch no longer needs special output for ghci026 |
|---|
| 1649 | Ian Lynagh <igloo@earth.li>**20071201171445] |
|---|
| 1650 | [Update ghci024 output for the 6.8 branch |
|---|
| 1651 | Ian Lynagh <igloo@earth.li>**20071201171241] |
|---|
| 1652 | [Add tcfail187 output for the 6.8 branch |
|---|
| 1653 | Ian Lynagh <igloo@earth.li>**20071201170905] |
|---|
| 1654 | [Add 6.8-branch output for tcfail178 |
|---|
| 1655 | Ian Lynagh <igloo@earth.li>**20071201170626] |
|---|
| 1656 | [tcfail175 output is now the same in 6.8 and HEAD |
|---|
| 1657 | Ian Lynagh <igloo@earth.li>**20071201170041] |
|---|
| 1658 | [Give GHC 6.8 output for tcfail168 |
|---|
| 1659 | Ian Lynagh <igloo@earth.li>**20071201165537] |
|---|
| 1660 | [Add 6.8-branch output for rw |
|---|
| 1661 | Ian Lynagh <igloo@earth.li>**20071201164015] |
|---|
| 1662 | [rebindable8 is still broken in GHC 6.8 |
|---|
| 1663 | Ian Lynagh <igloo@earth.li>**20071201163425] |
|---|
| 1664 | [FD1 now behaves the same in 6.8 and HEAD |
|---|
| 1665 | Ian Lynagh <igloo@earth.li>**20071201162525] |
|---|
| 1666 | [fromdos test FD1 |
|---|
| 1667 | Ian Lynagh <igloo@earth.li>**20071201162347] |
|---|
| 1668 | [Add expected output for 1744 |
|---|
| 1669 | Ian Lynagh <igloo@earth.li>**20071201162018] |
|---|
| 1670 | [add test for #1914 |
|---|
| 1671 | Simon Marlow <simonmar@microsoft.com>**20071130132214] |
|---|
| 1672 | [add test for #1744 |
|---|
| 1673 | Simon Marlow <simonmar@microsoft.com>**20071130100927] |
|---|
| 1674 | [Update output for change to deriving (Trac #1935) |
|---|
| 1675 | simonpj@microsoft.com**20071128161524] |
|---|
| 1676 | [Test for Trac #1935 |
|---|
| 1677 | simonpj@microsoft.com**20071128150904] |
|---|
| 1678 | [add test for #1916 |
|---|
| 1679 | Simon Marlow <simonmar@microsoft.com>**20071128115654] |
|---|
| 1680 | [fix this test when CLEANUP is not done |
|---|
| 1681 | Simon Marlow <simonmar@microsoft.com>**20071127123338] |
|---|
| 1682 | [Be more consistent in printing about framework failures |
|---|
| 1683 | Ian Lynagh <igloo@earth.li>**20071123181712] |
|---|
| 1684 | [Make Church2 fail as it (currently) should |
|---|
| 1685 | simonpj@microsoft.com**20071123134635] |
|---|
| 1686 | [Simple{20,22,23} now pass in the 6.8 branch |
|---|
| 1687 | Ian Lynagh <igloo@earth.li>**20071122134526] |
|---|
| 1688 | [openFile008: do "ulimit -n 1024" first |
|---|
| 1689 | Simon Marlow <simonmar@microsoft.com>**20071122102223 |
|---|
| 1690 | Hopefully fixes this on MacOS where the limit is 256 by default |
|---|
| 1691 | |
|---|
| 1692 | ] |
|---|
| 1693 | [remove the _with_prefix forms of compile_and_run, add cmd_prefix() config instead |
|---|
| 1694 | Simon Marlow <simonmar@microsoft.com>**20071122102129] |
|---|
| 1695 | [add test for #1753 |
|---|
| 1696 | Simon Marlow <simonmar@microsoft.com>**20071122094048] |
|---|
| 1697 | [Update output (slight improvements on the whole) |
|---|
| 1698 | simonpj@microsoft.com**20071122095759] |
|---|
| 1699 | [Update output |
|---|
| 1700 | simonpj@microsoft.com**20071122092908] |
|---|
| 1701 | [Update test output |
|---|
| 1702 | simonpj@microsoft.com**20071122091926 |
|---|
| 1703 | |
|---|
| 1704 | This is actually *slightly* worse than before, because of the |
|---|
| 1705 | error-message refactoring in TcUnify. The previous message |
|---|
| 1706 | reported a mis-match between |
|---|
| 1707 | (a->Bool) and (Bool -> Bool) |
|---|
| 1708 | whereas the new one only complains of mismatch between |
|---|
| 1709 | a and Bool |
|---|
| 1710 | Trouble is, the old one was vulnerable to the problem |
|---|
| 1711 | described in the comments on tcSubExp. |
|---|
| 1712 | |
|---|
| 1713 | So I'm accepting this regression for now; let's see if |
|---|
| 1714 | anyone notices! |
|---|
| 1715 | |
|---|
| 1716 | ] |
|---|
| 1717 | [Update for rebindable changes (Trac #1537) |
|---|
| 1718 | simonpj@microsoft.com**20071121175551] |
|---|
| 1719 | [Test for Trac #1913 |
|---|
| 1720 | simonpj@microsoft.com**20071121151508] |
|---|
| 1721 | [countReaders001 now passes |
|---|
| 1722 | Simon Marlow <simonmar@microsoft.com>**20071120143539] |
|---|
| 1723 | [test repeated open/close of 1000 files |
|---|
| 1724 | Simon Marlow <simonmar@microsoft.com>**20071120114757] |
|---|
| 1725 | [Tests for Trac #1825 |
|---|
| 1726 | simonpj@microsoft.com**20071120133615] |
|---|
| 1727 | [augment ghci025 to cover #1847 |
|---|
| 1728 | claus.reinke@talk21.com**20071108013949 |
|---|
| 1729 | |
|---|
| 1730 | - need to test :browse! in different contexts |
|---|
| 1731 | - -s has disappeared, see #1799 for sorting |
|---|
| 1732 | - 'imported from' clarified to 'imported via' |
|---|
| 1733 | |
|---|
| 1734 | ] |
|---|
| 1735 | [Test for Trac #959 |
|---|
| 1736 | simonpj@microsoft.com**20071119122900] |
|---|
| 1737 | [Test for Trac #1806 |
|---|
| 1738 | simonpj@microsoft.com**20071119114227] |
|---|
| 1739 | [update to test #1873, #1360 |
|---|
| 1740 | Simon Marlow <simonmar@microsoft.com>**20071116155948] |
|---|
| 1741 | [Add -XExistentialQuantification flag (should have been there all along) |
|---|
| 1742 | simonpj@microsoft.com**20071116154337] |
|---|
| 1743 | [small tidyups to thie Makefile |
|---|
| 1744 | Simon Marlow <simonmar@microsoft.com>**20071116131914] |
|---|
| 1745 | [fix this test for case sensitive filenames |
|---|
| 1746 | Simon Marlow <simonmar@microsoft.com>**20071116131837] |
|---|
| 1747 | [1603 depends on the gcc version, which we can't easily account for, so skip |
|---|
| 1748 | Simon Marlow <simonmar@microsoft.com>**20071116093428] |
|---|
| 1749 | [outofmem2 passes on the stable branch |
|---|
| 1750 | Simon Marlow <simonmar@microsoft.com>**20071115162357] |
|---|
| 1751 | [add test for #1679 |
|---|
| 1752 | Simon Marlow <simonmar@microsoft.com>**20071115131517] |
|---|
| 1753 | [FIX #1840: outofmem and outofmem2 need ulimit settings to avoid filling up swap |
|---|
| 1754 | Simon Marlow <simonmar@microsoft.com>**20071114164525] |
|---|
| 1755 | [Accept output |
|---|
| 1756 | Pepe Iborra <mnislaih@gmail.com>**20071114232553 |
|---|
| 1757 | |
|---|
| 1758 | The test now actually passes |
|---|
| 1759 | |
|---|
| 1760 | ] |
|---|
| 1761 | [Add test for #1892 - :info of a bkpt binding panics |
|---|
| 1762 | Pepe Iborra <mnislaih@gmail.com>**20071114233829] |
|---|
| 1763 | [Adapt output to improvements in the TTerm pretty printer |
|---|
| 1764 | Pepe Iborra <mnislaih@gmail.com>**20071114232445] |
|---|
| 1765 | [simplify ghci024.py, fix -fprint-bind-result, -fno-ignore-breakpoints, -fprint-bind-contents |
|---|
| 1766 | claus.reinke@talk21.com**20071114130043 |
|---|
| 1767 | |
|---|
| 1768 | - as ghc 6.9 flags are beginning to diverge, we need |
|---|
| 1769 | a simpler way of specifying version-specific flags |
|---|
| 1770 | or settings: have two entirely separate sections, |
|---|
| 1771 | instead of one section with too many patches. |
|---|
| 1772 | |
|---|
| 1773 | even if that doubles the script size, it should |
|---|
| 1774 | be easier to edit. also add a warning that |
|---|
| 1775 | ghci024.stdout is a generated file. |
|---|
| 1776 | |
|---|
| 1777 | - default for -fprint-bind-result has changed |
|---|
| 1778 | |
|---|
| 1779 | - -fno-ignore-breakpoints is gone |
|---|
| 1780 | |
|---|
| 1781 | - -fprint-bind-contents is new |
|---|
| 1782 | |
|---|
| 1783 | ] |
|---|
| 1784 | [Add test for #782 |
|---|
| 1785 | Simon Marlow <simonmar@microsoft.com>**20071114141111] |
|---|
| 1786 | [Test for Trac #1662 |
|---|
| 1787 | simonpj@microsoft.com**20071114113740] |
|---|
| 1788 | [Test for Trac #1888 |
|---|
| 1789 | simonpj@microsoft.com**20071114104458] |
|---|
| 1790 | [Add a test for #1827 (:print panicswith overloaded values)) |
|---|
| 1791 | Pepe Iborra <mnislaih@gmail.com>**20071113172048] |
|---|
| 1792 | [Remove some tabs in break020.hs |
|---|
| 1793 | Pepe Iborra <mnislaih@gmail.com>**20071113163912] |
|---|
| 1794 | [Accept output |
|---|
| 1795 | Pepe Iborra <mnislaih@gmail.com>**20071113163451] |
|---|
| 1796 | [FIX ghci024 for unregisterised, powerpc_apple_darwin, and ghc-6.8 |
|---|
| 1797 | claus.reinke@talk21.com**20071111224038 |
|---|
| 1798 | |
|---|
| 1799 | - for unregisterised platforms, default is '-fno-asm-mangling' |
|---|
| 1800 | - powerpc_apple_darwin fails on ':set -package ghc' (#1845) |
|---|
| 1801 | - for ghc 6.8, -fno-run-cps and -fno-convert-to-zipper-and-back |
|---|
| 1802 | do not exist |
|---|
| 1803 | |
|---|
| 1804 | ] |
|---|
| 1805 | [add test for #1603 |
|---|
| 1806 | Simon Marlow <simonmar@microsoft.com>**20071108164056] |
|---|
| 1807 | [add test for #1852 |
|---|
| 1808 | Simon Marlow <simonmar@microsoft.com>**20071108143533] |
|---|
| 1809 | [Update output |
|---|
| 1810 | Ian Lynagh <igloo@earth.li>**20071111223835] |
|---|
| 1811 | [TAG 2007-11-11 |
|---|
| 1812 | Ian Lynagh <igloo@earth.li>**20071111170042] |
|---|
| 1813 | [Add a test for trac #1588: unrequested generalized newtype deriving? |
|---|
| 1814 | Ian Lynagh <igloo@earth.li>**20071110142632 |
|---|
| 1815 | Test is drvfail013 |
|---|
| 1816 | ] |
|---|
| 1817 | [Skip arrowrun003 for ghc < 6.9 (Control.Category doesn't exist) |
|---|
| 1818 | Ian Lynagh <igloo@earth.li>**20071110132748] |
|---|
| 1819 | [skip arrow for ghc < 6.9 (Control.Category doesn't exist) |
|---|
| 1820 | Ian Lynagh <igloo@earth.li>**20071110132426] |
|---|
| 1821 | [test for #1617 |
|---|
| 1822 | Simon Marlow <simonmar@microsoft.com>**20071107161031] |
|---|
| 1823 | [add test for #1561 |
|---|
| 1824 | Simon Marlow <simonmar@microsoft.com>**20071107131304] |
|---|
| 1825 | [accept output following #1561 |
|---|
| 1826 | Simon Marlow <simonmar@microsoft.com>**20071107122712] |
|---|
| 1827 | [update test output |
|---|
| 1828 | Simon Marlow <simonmar@microsoft.com>**20071107114751] |
|---|
| 1829 | [update test for #1765, #1766 |
|---|
| 1830 | Simon Marlow <simonmar@microsoft.com>**20071107114637] |
|---|
| 1831 | [tests for :browse!, :{:}, :set, :show languages/packages |
|---|
| 1832 | claus.reinke@talk21.com**20071107102314 |
|---|
| 1833 | |
|---|
| 1834 | these tests validate on win/xp. |
|---|
| 1835 | |
|---|
| 1836 | - if any issues with dos-style line-endings remain, |
|---|
| 1837 | please apply dos2unix for now, and let me know |
|---|
| 1838 | |
|---|
| 1839 | - ghci024 has ghci024.py instead of ghci024.stdout; |
|---|
| 1840 | the prepare024 function defined in there generates |
|---|
| 1841 | a platform- and version-specific ghci024.stdout |
|---|
| 1842 | for the test (see all.T) |
|---|
| 1843 | |
|---|
| 1844 | - ghci025 uses the (non-advertised) new -s option |
|---|
| 1845 | to get sorted :browse output for stable tests |
|---|
| 1846 | (to work around #1799). if this isn't sufficient, |
|---|
| 1847 | please set normal to ignore_output in all.T for |
|---|
| 1848 | now (until #1799 is fixed), and let me know |
|---|
| 1849 | |
|---|
| 1850 | ] |
|---|
| 1851 | [Test for Trac #1608 |
|---|
| 1852 | simonpj@microsoft.com**20071106155035] |
|---|
| 1853 | [Test for Trac #1814 |
|---|
| 1854 | simonpj@microsoft.com**20071106154046] |
|---|
| 1855 | [Test for Trac #1814 |
|---|
| 1856 | simonpj@microsoft.com**20071106113354] |
|---|
| 1857 | [add extra_hc_opts for ghci_script |
|---|
| 1858 | simonpj@microsoft.com**20071106113044] |
|---|
| 1859 | [adapt tests to new Category superclass of Arrow |
|---|
| 1860 | Ross Paterson <ross@soi.city.ac.uk>**20071106105849] |
|---|
| 1861 | [Add test for Trac #1072 |
|---|
| 1862 | simonpj@microsoft.com**20071105192305] |
|---|
| 1863 | [Fix test outofmem for powerpc_apple_darwin |
|---|
| 1864 | Thorkil Naur <naur@post11.tele.dk>**20071104155425] |
|---|
| 1865 | [Test for #1662 |
|---|
| 1866 | simonpj@microsoft.com**20071102160439] |
|---|
| 1867 | [Update type checker errors |
|---|
| 1868 | simonpj@microsoft.com**20071102141553] |
|---|
| 1869 | [Add test for GADTs and scoped type variables |
|---|
| 1870 | simonpj@microsoft.com**20071102141106] |
|---|
| 1871 | [fix this test on the 6.8 branch |
|---|
| 1872 | Simon Marlow <simonmar@microsoft.com>**20071101111925] |
|---|
| 1873 | [add output for the 6.8 branch |
|---|
| 1874 | Simon Marlow <simonmar@microsoft.com>**20071101111742] |
|---|
| 1875 | [Update output (comments added to source file) |
|---|
| 1876 | simonpj@microsoft.com**20071030111032] |
|---|
| 1877 | [correct code for typecheck/should_compile/tc192.hs |
|---|
| 1878 | Ashley Yakeley <ashley@semantic.org>**20071029183514] |
|---|
| 1879 | [Update tc141 expected output |
|---|
| 1880 | simonpj@microsoft.com**20071029112430 |
|---|
| 1881 | |
|---|
| 1882 | Revert to getting an error from the renamer |
|---|
| 1883 | |
|---|
| 1884 | ] |
|---|
| 1885 | [Tests for functional dependencies and loops in TcSimplify |
|---|
| 1886 | simonpj@microsoft.com**20071027163739] |
|---|
| 1887 | [outofmem2 doesn't pass in the 6.8 branch |
|---|
| 1888 | Ian Lynagh <igloo@earth.li>**20071028200139] |
|---|
| 1889 | [Update test results in the 6.8 branch |
|---|
| 1890 | Ian Lynagh <igloo@earth.li>**20071028195141] |
|---|
| 1891 | [add 6.8 output |
|---|
| 1892 | Simon Marlow <simonmar@microsoft.com>**20071025104616] |
|---|
| 1893 | [update expected failures for the 6.8 branch |
|---|
| 1894 | Simon Marlow <simonmar@microsoft.com>**20071025103422] |
|---|
| 1895 | [arrowrun004 is now apparently passing on both 6.8 and 6.9 |
|---|
| 1896 | Simon Marlow <simonmar@microsoft.com>**20071025103126] |
|---|
| 1897 | [ind2 apparently works on the 6.8 branch |
|---|
| 1898 | Simon Marlow <simonmar@microsoft.com>**20071025102846] |
|---|
| 1899 | [GMapAssoc, GMapTop now apparently work on the 6.8 branch |
|---|
| 1900 | Simon Marlow <simonmar@microsoft.com>**20071025102748] |
|---|
| 1901 | [this test works now, apparently |
|---|
| 1902 | Simon Marlow <simonmar@microsoft.com>**20071024115004] |
|---|
| 1903 | [add test for #1791 |
|---|
| 1904 | Simon Marlow <simonmar@microsoft.com>**20071024100454] |
|---|
| 1905 | [use -ignore-dot-ghci |
|---|
| 1906 | Simon Marlow <simonmar@microsoft.com>**20071022092201 |
|---|
| 1907 | Suggested by Claus Reinke |
|---|
| 1908 | ] |
|---|
| 1909 | [Add space after -ignore-dot-ghci |
|---|
| 1910 | Simon Marlow <simonmar@microsoft.com>**20071022081701 |
|---|
| 1911 | pointed out by Claus Reinke |
|---|
| 1912 | ] |
|---|
| 1913 | [Fix various tests for the 6.8 branch |
|---|
| 1914 | Ian Lynagh <igloo@earth.li>**20071019141005] |
|---|
| 1915 | [Add namebase_if_compiler_lt to the testsuite driver |
|---|
| 1916 | Ian Lynagh <igloo@earth.li>**20071019131027 |
|---|
| 1917 | Allows us to use a different name base for foo.stderr for old compilers, e.g. |
|---|
| 1918 | test('tc141', |
|---|
| 1919 | namebase_if_compiler_lt('ghc', '6.9', 'tc141-6.8'), |
|---|
| 1920 | compile_fail, |
|---|
| 1921 | ['']) |
|---|
| 1922 | ] |
|---|
| 1923 | [tcfail175: improved error message slightly |
|---|
| 1924 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20071019124646] |
|---|
| 1925 | [tcfail174: minor improvement of error message |
|---|
| 1926 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20071019120649] |
|---|
| 1927 | [TypeFamilies: for additional tests fixed by properly zonking EqInsts |
|---|
| 1928 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20071018133656] |
|---|
| 1929 | [TypeFamilies: should_compile/Simple21 |
|---|
| 1930 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20071017114218 |
|---|
| 1931 | * Code of #1776 from aslatter@gmail.com |
|---|
| 1932 | ] |
|---|
| 1933 | [add test for #1468 |
|---|
| 1934 | Simon Marlow <simonmar@microsoft.com>**20071019123214] |
|---|
| 1935 | [Update output for TH_exn1 |
|---|
| 1936 | simonpj@microsoft.com**20071019073706 |
|---|
| 1937 | |
|---|
| 1938 | I'm actually not certain why this output has changed: |
|---|
| 1939 | |
|---|
| 1940 | - Code: case reverse "no" of [] -> return (GHC.Base.[]) |
|---|
| 1941 | + Code: let |
|---|
| 1942 | + return = return |
|---|
| 1943 | + $dMonad = Language.Haskell.TH.Syntax.$f22 |
|---|
| 1944 | + in case reverse "no" of [] -> return (GHC.Base.[]) |
|---|
| 1945 | |
|---|
| 1946 | Perhaps it's something to do with inlining? |
|---|
| 1947 | |
|---|
| 1948 | Anyway it's not too important, because this stuff is only displayed |
|---|
| 1949 | for TH splices that crash with (head []) or something like that. |
|---|
| 1950 | |
|---|
| 1951 | ] |
|---|
| 1952 | [these tests moved to the directory package |
|---|
| 1953 | Simon Marlow <simonmar@microsoft.com>**20071018121455] |
|---|
| 1954 | [the GHCi debugger now works with an unregisterised GHCi |
|---|
| 1955 | Simon Marlow <simonmar@microsoft.com>**20071018110737] |
|---|
| 1956 | [skip the non-threaded ways for conc023 on Windows, see #1197 |
|---|
| 1957 | Simon Marlow <simonmar@microsoft.com>**20070831090218] |
|---|
| 1958 | [tcfail175: error message changed |
|---|
| 1959 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20071018045746 |
|---|
| 1960 | * The error message has become less informative, but I don't see how to avoid |
|---|
| 1961 | this easily. |
|---|
| 1962 | * The error message is now also different to that of 6.8. I am not sure how |
|---|
| 1963 | to handle this case. Can we have different stderr files for different |
|---|
| 1964 | compiler versions? Or shall we simply merge the corresponding changes |
|---|
| 1965 | into 6.8? |
|---|
| 1966 | ] |
|---|
| 1967 | [TypeFamilies: exercise deferring on tyvars in TcUnify.subFunTys |
|---|
| 1968 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20071018044234] |
|---|
| 1969 | [TypeFamilies: should_compile/Simple22 |
|---|
| 1970 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20071017114035 |
|---|
| 1971 | * Demonstrates a bug in TcUnify.tcSubFun found by Andrew Appleyard |
|---|
| 1972 | ] |
|---|
| 1973 | [Add exotic functional-dependency test |
|---|
| 1974 | simonpj@microsoft.com**20071017081916] |
|---|
| 1975 | [Update output from constraint simplifier |
|---|
| 1976 | simonpj@microsoft.com**20071016144045] |
|---|
| 1977 | [Update output |
|---|
| 1978 | simonpj@microsoft.com**20071012154902] |
|---|
| 1979 | [Changes to the testsuite for the new renamer |
|---|
| 1980 | drl@cs.cmu.edu**20070924075646 |
|---|
| 1981 | The rationale for these new behaviors is as follows: |
|---|
| 1982 | |
|---|
| 1983 | We now allow existentials to be unpacked in local (but not top-level!) |
|---|
| 1984 | ValBinds, so some pattern signatures that used to fail in the renamer |
|---|
| 1985 | now fail in the type checker (if the type of the body mentions the |
|---|
| 1986 | unpacked type var): |
|---|
| 1987 | tc141(normal) |
|---|
| 1988 | |
|---|
| 1989 | We don't always print HsWrappers in debug mode: |
|---|
| 1990 | TH_exn1(normal) |
|---|
| 1991 | TH_exn2(normal) |
|---|
| 1992 | |
|---|
| 1993 | Sections are parsed (and therefore printed) differently: |
|---|
| 1994 | rnfail019(normal) |
|---|
| 1995 | read023(normal) |
|---|
| 1996 | |
|---|
| 1997 | Character numbers in pattern printing are more precise: |
|---|
| 1998 | tcfail067(normal) |
|---|
| 1999 | tcfail124(normal) |
|---|
| 2000 | tcfail125(normal) |
|---|
| 2001 | |
|---|
| 2002 | ] |
|---|
| 2003 | [TypeFamilies: should_compile/Simple20 fixed |
|---|
| 2004 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20071015075724] |
|---|
| 2005 | [Clean bug 1465 better |
|---|
| 2006 | Ian Lynagh <igloo@earth.li>**20071014133528] |
|---|
| 2007 | [Test case for #1537 |
|---|
| 2008 | Pepe Iborra <mnislaih@gmail.com>**20071013224351] |
|---|
| 2009 | [ccfail002: line number in error message changed |
|---|
| 2010 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20071012003526] |
|---|
| 2011 | [Test for Trac #1680 |
|---|
| 2012 | simonpj@microsoft.com**20071011123331] |
|---|
| 2013 | [Update output |
|---|
| 2014 | simonpj@microsoft.com**20071011094241] |
|---|
| 2015 | [simpl019 now passes |
|---|
| 2016 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20071011021815] |
|---|
| 2017 | [Test for Trac #1759 |
|---|
| 2018 | simonpj@microsoft.com**20071010165228] |
|---|
| 2019 | [Add test for Trac #1678, and update output for TH_exn2 |
|---|
| 2020 | simonpj@microsoft.com**20071010150147] |
|---|
| 2021 | [break025 now works (also, the test itself was broken) |
|---|
| 2022 | Simon Marlow <simonmar@microsoft.com>**20071010085913] |
|---|
| 2023 | [break026 now works (#1743) |
|---|
| 2024 | Simon Marlow <simonmar@microsoft.com>**20071009142739] |
|---|
| 2025 | [add tests for #1748 |
|---|
| 2026 | Simon Marlow <simonmar@microsoft.com>**20071008131420] |
|---|
| 2027 | [I committed simpl019 too early; it's expected broken until I commit the patch |
|---|
| 2028 | simonpj@microsoft.com**20071005060837] |
|---|
| 2029 | [test case for #1743 |
|---|
| 2030 | Simon Marlow <simonmar@microsoft.com>**20070927145830] |
|---|
| 2031 | [TypeFamilies: should_compile/GADT3 fixed |
|---|
| 2032 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20071001154709] |
|---|
| 2033 | [TypeFamilies: should_compile/Simple20 |
|---|
| 2034 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070929140208] |
|---|
| 2035 | [TypeFamilies: should_compile/Simple19 (from #1729) |
|---|
| 2036 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070929122457] |
|---|
| 2037 | [Test for Trac #1746 |
|---|
| 2038 | simonpj@microsoft.com**20070929102000] |
|---|
| 2039 | [TypeFamilies: test boxy splitters |
|---|
| 2040 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070928225409] |
|---|
| 2041 | [updates to hReady001 (see comments in all.T) |
|---|
| 2042 | Simon Marlow <simonmar@microsoft.com>**20070926161540] |
|---|
| 2043 | [driver027/driver028 need to use -fvia-C to expose a bug in -stubdir |
|---|
| 2044 | Simon Marlow <simonmar@microsoft.com>**20070926134607] |
|---|
| 2045 | [Pass -ignore-dot-ghci to GHCi |
|---|
| 2046 | Simon Marlow <simonmar@microsoft.com>**20070926115751] |
|---|
| 2047 | [GADT3: expect failure on the HEAD too (and add a ticket) |
|---|
| 2048 | Simon Marlow <simonmar@microsoft.com>**20070926115138] |
|---|
| 2049 | [getTestDir() is slightly better than in_testdir('') |
|---|
| 2050 | Simon Marlow <simonmar@microsoft.com>**20070926110920] |
|---|
| 2051 | [add expect_fail_ways_if_compiler_lt() |
|---|
| 2052 | Simon Marlow <simonmar@microsoft.com>**20070926105327 |
|---|
| 2053 | somehow I forgot to add this yesterday, I'm mystified about where it went.. |
|---|
| 2054 | ] |
|---|
| 2055 | [fix framework failures |
|---|
| 2056 | Simon Marlow <simonmar@microsoft.com>**20070926104206] |
|---|
| 2057 | [add test for #1734 |
|---|
| 2058 | Simon Marlow <simonmar@microsoft.com>**20070926100425] |
|---|
| 2059 | [expect failure when using the NCG on x86 due to floating point differences |
|---|
| 2060 | Simon Marlow <simonmar@microsoft.com>**20070926093642] |
|---|
| 2061 | [Add a test (pragma001) for #1736 |
|---|
| 2062 | Ian Lynagh <igloo@earth.li>**20070925224226] |
|---|
| 2063 | [ind2: expect fail for profc/profasm on the 6.8 branch |
|---|
| 2064 | Simon Marlow <simonmar@microsoft.com>**20070925140351] |
|---|
| 2065 | [Simple12: expect failure on the 6.8 branch |
|---|
| 2066 | Simon Marlow <simonmar@microsoft.com>**20070925140241] |
|---|
| 2067 | [GADT3: expect success for profc/profasm on the 6.8 branch |
|---|
| 2068 | Simon Marlow <simonmar@microsoft.com>**20070925140111] |
|---|
| 2069 | [GMapAssoc, GMapTop: expect failures on the 6.8 branch |
|---|
| 2070 | Simon Marlow <simonmar@microsoft.com>**20070925135758] |
|---|
| 2071 | [FIX #1254: avoid calling truncate when the result does not fit in the target type |
|---|
| 2072 | Simon Marlow <simonmar@microsoft.com>**20070925123540] |
|---|
| 2073 | [expect success for arith008(profasm) on x86 |
|---|
| 2074 | Simon Marlow <simonmar@microsoft.com>**20070925120429] |
|---|
| 2075 | [Add a test for changes to C files causing relinking |
|---|
| 2076 | Ian Lynagh <igloo@earth.li>**20070923181558] |
|---|
| 2077 | [tc236 fails for 6.8 |
|---|
| 2078 | Ian Lynagh <igloo@earth.li>**20070923162522] |
|---|
| 2079 | [Fix ffi018(ghci) when running from a different directory to the test |
|---|
| 2080 | Ian Lynagh <igloo@earth.li>**20070923122027] |
|---|
| 2081 | [Various testsuite helper functions like expect_broken_if_compiler_ge |
|---|
| 2082 | Ian Lynagh <igloo@earth.li>**20070921005354] |
|---|
| 2083 | [Failing tyfam test |
|---|
| 2084 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20070921041204 |
|---|
| 2085 | |
|---|
| 2086 | This one actually generates completely bogus Core which doesn't pass CoreLint. |
|---|
| 2087 | ] |
|---|
| 2088 | [Tests for Trac #1627 and #1718 |
|---|
| 2089 | simonpj@microsoft.com**20070920122829] |
|---|
| 2090 | [Add comment |
|---|
| 2091 | simonpj@microsoft.com**20070920065617] |
|---|
| 2092 | [Add test for exponential behaviour of type synonyms |
|---|
| 2093 | simonpj@microsoft.com**20070920065553] |
|---|
| 2094 | [Rename flag |
|---|
| 2095 | simonpj@microsoft.com**20070919171423] |
|---|
| 2096 | [Enhance tc236 slightly |
|---|
| 2097 | simonpj@microsoft.com**20070919143759] |
|---|
| 2098 | [Typechecker: tc237 (#1688) |
|---|
| 2099 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070919150347] |
|---|
| 2100 | [TyepFamilies: should_compile/Simple16 (#1713) |
|---|
| 2101 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070919121905] |
|---|
| 2102 | [Yet another failing TypeFamilies test |
|---|
| 2103 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20070919050412 |
|---|
| 2104 | |
|---|
| 2105 | This is actually a regression introduced by one of the recent patches. It used |
|---|
| 2106 | to work! |
|---|
| 2107 | ] |
|---|
| 2108 | [some expected outputs on openbsd |
|---|
| 2109 | Don Stewart <dons@galois.com>**20070917002956] |
|---|
| 2110 | [Different output expected for this test on x86_64-unknown-openbsd |
|---|
| 2111 | Don Stewart <dons@galois.com>**20070916233735] |
|---|
| 2112 | [TypeFamilies: fixed Simple12 |
|---|
| 2113 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070916130308] |
|---|
| 2114 | [Changed error message |
|---|
| 2115 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070915132236] |
|---|
| 2116 | [InstEqContext2 fails now |
|---|
| 2117 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070915075117 |
|---|
| 2118 | - This test fails with the overhauled rewrite rules. This is (judging from |
|---|
| 2119 | -ddump-tc-trace) not because the new rules implementation goes wrong, but |
|---|
| 2120 | because the old implementation left out some improvement and hence passed |
|---|
| 2121 | this test by accident. |
|---|
| 2122 | ] |
|---|
| 2123 | [Test nested forall types (thanks to Claus) |
|---|
| 2124 | simonpj@microsoft.com**20070914120121] |
|---|
| 2125 | [Test display of types in GHCi |
|---|
| 2126 | simonpj@microsoft.com**20070914092550] |
|---|
| 2127 | [eliminate ordering constraints |
|---|
| 2128 | Simon Marlow <simonmar@microsoft.com>**20070913102520] |
|---|
| 2129 | [remove one more ordering dependency |
|---|
| 2130 | Simon Marlow <simonmar@microsoft.com>**20070913095146] |
|---|
| 2131 | [remove ordering dependencies (see bug #158) |
|---|
| 2132 | Simon Marlow <simonmar@microsoft.com>**20070913092236] |
|---|
| 2133 | [Allow files-to-cleanup to be attached to a test using extra_clean(files) |
|---|
| 2134 | Simon Marlow <simonmar@microsoft.com>**20070913090215 |
|---|
| 2135 | This is better than a top-level clean() when using threads |
|---|
| 2136 | ] |
|---|
| 2137 | [remove ordering dependency |
|---|
| 2138 | Simon Marlow <simonmar@microsoft.com>**20070913090120] |
|---|
| 2139 | [remove read001 -fglasgow-extss, it messed up THREADS=N and -fglasgow-exts is deprecated anyway |
|---|
| 2140 | Simon Marlow <simonmar@microsoft.com>**20070913083621] |
|---|
| 2141 | [remove ordering dependency for ffi018 |
|---|
| 2142 | Simon Marlow <simonmar@microsoft.com>**20070913082740] |
|---|
| 2143 | [i386/Linux output |
|---|
| 2144 | Simon Marlow <simonmar@microsoft.com>**20070913080642] |
|---|
| 2145 | [Add failing TypeFamilies test |
|---|
| 2146 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20070914001844] |
|---|
| 2147 | [Accept output due to :print not using Show instances anymore |
|---|
| 2148 | Pepe Iborra <mnislaih@gmail.com>**20070913104048] |
|---|
| 2149 | [GHCi debugger: add a test exercising -fprint-evld-with-show |
|---|
| 2150 | Pepe Iborra <mnislaih@gmail.com>**20070913104044] |
|---|
| 2151 | [in test case for #1689, close files, just in case |
|---|
| 2152 | Tim Chevalier <chevalier@alum.wellesley.edu>**20070913070713] |
|---|
| 2153 | [Test case for #1689 (openTempFile naming) |
|---|
| 2154 | Tim Chevalier <chevalier@alum.wellesley.edu>**20070913065837] |
|---|
| 2155 | [a test to show that multiple calls correctly share a return address |
|---|
| 2156 | Norman Ramsey <nr@eecs.harvard.edu>**20070911214518 |
|---|
| 2157 | to see the optimization at work, compile cps027.cmm with |
|---|
| 2158 | -fconvert-to-zipper-and-back -frun-cps |
|---|
| 2159 | ] |
|---|
| 2160 | [comments |
|---|
| 2161 | Simon Marlow <simonmar@microsoft.com>**20070911115943] |
|---|
| 2162 | [Avoid Dyn exceptions in break024 |
|---|
| 2163 | Pepe Iborra <mnislaih@gmail.com>**20070912094254 |
|---|
| 2164 | |
|---|
| 2165 | This ensures predictable output (when using :print) in any case |
|---|
| 2166 | |
|---|
| 2167 | ] |
|---|
| 2168 | [TypeFamilies: added test exercising skolemOccurs |
|---|
| 2169 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070911024751] |
|---|
| 2170 | [Accept output for break024 |
|---|
| 2171 | Pepe Iborra <mnislaih@gmail.com>**20070911151531 |
|---|
| 2172 | |
|---|
| 2173 | :print no longer shows the contents of TypeRep values |
|---|
| 2174 | |
|---|
| 2175 | ] |
|---|
| 2176 | [Accept output |
|---|
| 2177 | Pepe Iborra <mnislaih@gmail.com>**20070911103139] |
|---|
| 2178 | [Simplified break025 to better illustrate the problem, |
|---|
| 2179 | Pepe Iborra <mnislaih@gmail.com>**20070911103039 |
|---|
| 2180 | and marked it as failing under ticket #1681 |
|---|
| 2181 | |
|---|
| 2182 | ] |
|---|
| 2183 | [Added tests break024 and break025 |
|---|
| 2184 | Pepe Iborra <mnislaih@gmail.com>**20070907103330 |
|---|
| 2185 | for -fbreak-on-error and -fbreak-on-exception |
|---|
| 2186 | ] |
|---|
| 2187 | [add test for #1677 |
|---|
| 2188 | Simon Marlow <simonmar@microsoft.com>**20070911090101] |
|---|
| 2189 | [TypeFamilies: change of error messages due to changed traversal order |
|---|
| 2190 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070910105621 |
|---|
| 2191 | - Just the usual indeterminism in HM. The messages are neither better nor |
|---|
| 2192 | worse. |
|---|
| 2193 | ] |
|---|
| 2194 | [#1669, these tests work now |
|---|
| 2195 | Pepe Iborra <mnislaih@gmail.com>**20070910145827] |
|---|
| 2196 | [Only run the tests from libraries that we have built |
|---|
| 2197 | Ian Lynagh <igloo@earth.li>**20070907182043 |
|---|
| 2198 | Fixes failures when you have unbuilt libraries in your validate tree. |
|---|
| 2199 | ] |
|---|
| 2200 | [accept output |
|---|
| 2201 | Simon Marlow <simonmar@microsoft.com>**20070910124502] |
|---|
| 2202 | [And another failing tyfam test |
|---|
| 2203 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20070910064951] |
|---|
| 2204 | [Yet another failing type families test |
|---|
| 2205 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20070910054249 |
|---|
| 2206 | |
|---|
| 2207 | Can't let Tom and Manuel catch up! |
|---|
| 2208 | ] |
|---|
| 2209 | [Two more failing type families tests |
|---|
| 2210 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20070907170232] |
|---|
| 2211 | [Accept improved error messages for some tcfail tests |
|---|
| 2212 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070907125223] |
|---|
| 2213 | [Simple9 is fixed |
|---|
| 2214 | Tom Schrijvers <tom.schrijvers@cs.kuleuven.be>**20070906171931] |
|---|
| 2215 | [TypeFamilies: fixed Simple14 and added Simple15 |
|---|
| 2216 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070907101616] |
|---|
| 2217 | [this test should unregister the test packages afterward (fixes driver063) |
|---|
| 2218 | Simon Marlow <simonmar@microsoft.com>**20070907151611] |
|---|
| 2219 | [break020 and break021 underline things in the wrong place; trac #1669 |
|---|
| 2220 | Ian Lynagh <igloo@earth.li>**20070906183806] |
|---|
| 2221 | [Accept some output |
|---|
| 2222 | Ian Lynagh <igloo@earth.li>**20070906180831] |
|---|
| 2223 | [Fixup bytestring tests to work with current QuickCheck and bytestring |
|---|
| 2224 | Duncan Coutts <duncan@haskell.org>**20070906224533 |
|---|
| 2225 | Sadly requires that the internal Fusion module be exported from the |
|---|
| 2226 | bytestring package which is bad because that's not supposed to be part |
|---|
| 2227 | of the public api as we're just about to replace all the fusion internals. |
|---|
| 2228 | ] |
|---|
| 2229 | [Set os.environ['TERM'] = 'vt100' before running tests |
|---|
| 2230 | Ian Lynagh <igloo@earth.li>**20070906111420 |
|---|
| 2231 | Readline sometimes spews out ANSI escapes for some values of TERM, |
|---|
| 2232 | which result in test failures. |
|---|
| 2233 | ] |
|---|
| 2234 | [TypeFamilies: GADT8 is fixed |
|---|
| 2235 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070906115917] |
|---|
| 2236 | [accept output |
|---|
| 2237 | Simon Marlow <simonmar@microsoft.com>**20070906104635] |
|---|
| 2238 | [test for bug #1465 (12 files, phew) |
|---|
| 2239 | Simon Marlow <simonmar@microsoft.com>**20070906093345] |
|---|
| 2240 | [add test for qualified name printing |
|---|
| 2241 | Simon Marlow <simonmar@microsoft.com>**20070906092814] |
|---|
| 2242 | [this test works now |
|---|
| 2243 | Simon Marlow <simonmar@microsoft.com>**20070905102055] |
|---|
| 2244 | [Test now works |
|---|
| 2245 | Simon Marlow <simonmar@microsoft.com>**20070905095825] |
|---|
| 2246 | [conc057 and conc068 have moved to the parallel package |
|---|
| 2247 | Simon Marlow <simonmar@microsoft.com>**20070904112622] |
|---|
| 2248 | [omit tcrun022(ghci), since it relies on optimisation |
|---|
| 2249 | Simon Marlow <simonmar@microsoft.com>**20070904111350] |
|---|
| 2250 | [make config.top an absolute path |
|---|
| 2251 | Simon Marlow <simonmar@microsoft.com>**20070904111018] |
|---|
| 2252 | [Adapt test to new restrictions on type families |
|---|
| 2253 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20070906031023] |
|---|
| 2254 | [Track changes in deriving |
|---|
| 2255 | simonpj@microsoft.com**20070905170000] |
|---|
| 2256 | [A further failing type families test |
|---|
| 2257 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20070905140657] |
|---|
| 2258 | [And another failing type families test |
|---|
| 2259 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20070905094548] |
|---|
| 2260 | [Yet another failing type families test |
|---|
| 2261 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20070905072057] |
|---|
| 2262 | [Another failing type families test |
|---|
| 2263 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20070905053953] |
|---|
| 2264 | [Add dummy stderr file for panic test |
|---|
| 2265 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20070905014627] |
|---|
| 2266 | [tests for type family completion algorithm and higher order types |
|---|
| 2267 | Tom Schrijvers <tom.schrijvers@cs.kuleuven.be>**20070904123638] |
|---|
| 2268 | [recursive equational class context |
|---|
| 2269 | Tom Schrijvers <tom.schrijvers@cs.kuleuven.be>**20070904082041] |
|---|
| 2270 | [equational class context |
|---|
| 2271 | Tom Schrijvers <tom.schrijvers@cs.kuleuven.be>**20070904075739 |
|---|
| 2272 | expect_fail is now normal because of bug fix |
|---|
| 2273 | ] |
|---|
| 2274 | [Add a test num014 for #1658: CSE [of Doubles] changes semantics |
|---|
| 2275 | Ian Lynagh <igloo@earth.li>**20070904134026] |
|---|
| 2276 | [add missing file |
|---|
| 2277 | Simon Marlow <simonmar@microsoft.com>**20070904081814] |
|---|
| 2278 | [equality constraint encoding of functional dependency |
|---|
| 2279 | Tom Schrijvers <tom.schrijvers@cs.kuleuven.be>**20070903100053 |
|---|
| 2280 | where the FD's LHS is empty: |
|---|
| 2281 | |
|---|
| 2282 | class C a | -> a |
|---|
| 2283 | |
|---|
| 2284 | The direct solution InstEqContext does not compile, but it probably should. |
|---|
| 2285 | There's an indirect solution InstEqContext2 which does work. |
|---|
| 2286 | |
|---|
| 2287 | ] |
|---|
| 2288 | [arrowcase1 is now fixed |
|---|
| 2289 | Ian Lynagh <igloo@earth.li>**20070903202148 |
|---|
| 2290 | By: |
|---|
| 2291 | Mon Sep 3 07:10:44 PDT 2007 Ross Paterson <ross@soi.city.ac.uk> |
|---|
| 2292 | * FIX for #1080 |
|---|
| 2293 | |
|---|
| 2294 | Arrow desugaring now uses a private version of collectPatBinders and |
|---|
| 2295 | friends, in order to include dictionary bindings from ConPatOut. |
|---|
| 2296 | ] |
|---|
| 2297 | [add test for #1648 |
|---|
| 2298 | Simon Marlow <simonmar@microsoft.com>**20070903143046] |
|---|
| 2299 | [don't try to run hp2ps if the program failed with exit(>127) |
|---|
| 2300 | Simon Marlow <simonmar@microsoft.com>**20070903135513] |
|---|
| 2301 | [add 64-bit output |
|---|
| 2302 | Simon Marlow <simonmar@microsoft.com>**20070903115437] |
|---|
| 2303 | [Test for type families related panic |
|---|
| 2304 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20070903054450 |
|---|
| 2305 | |
|---|
| 2306 | The test program should be rejected but not with a panic. I haven't added a |
|---|
| 2307 | .stderr file because I don't know what the error message should be. |
|---|
| 2308 | ] |
|---|
| 2309 | [Failing type families/GADT test |
|---|
| 2310 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20070903053249] |
|---|
| 2311 | [Add a failing type families test |
|---|
| 2312 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20070903052641] |
|---|
| 2313 | [Tom Schrijvers' type family tests |
|---|
| 2314 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070831120431] |
|---|
| 2315 | [TypeFamilies: Numerals test |
|---|
| 2316 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070831065628] |
|---|
| 2317 | [Fix outofmem on MacOS |
|---|
| 2318 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20070903030211 |
|---|
| 2319 | |
|---|
| 2320 | The error message is different |
|---|
| 2321 | ] |
|---|
| 2322 | [add test for out-of-memory |
|---|
| 2323 | Simon Marlow <simonmar@microsoft.com>**20070831084445] |
|---|
| 2324 | [skip readwrite002 on Windows, it now hangs following fix to inputReady.c |
|---|
| 2325 | Simon Marlow <simonmar@microsoft.com>**20070830131300] |
|---|
| 2326 | [TypeFamilies: accept some slightly improved error messages |
|---|
| 2327 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070830223035] |
|---|
| 2328 | [TypeFamilies: test for decidable tyfam instances |
|---|
| 2329 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070830144724] |
|---|
| 2330 | [Add a new RTTI test |
|---|
| 2331 | Pepe Iborra <mnislaih@gmail.com>**20070829182100] |
|---|
| 2332 | [Marked as expected failures for now |
|---|
| 2333 | Pepe Iborra <mnislaih@gmail.com>**20070830102439] |
|---|
| 2334 | [Add two new tests for the debuggger involving .boot modules |
|---|
| 2335 | Pepe Iborra <mnislaih@gmail.com>**20070830093423] |
|---|
| 2336 | [Adapting some breakXYZ tests to sorted output |
|---|
| 2337 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070830011021] |
|---|
| 2338 | [Add a test for #1375 (ByteStringâs âlinesâ eats empty lines) |
|---|
| 2339 | Ian Lynagh <igloo@earth.li>**20070829174618] |
|---|
| 2340 | [Accept slightly different output in some breakXYZ tests |
|---|
| 2341 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070829072143] |
|---|
| 2342 | [adjust some tests |
|---|
| 2343 | Pepe Iborra <mnislaih@gmail.com>**20070829085735] |
|---|
| 2344 | [Remove an old readme-like file |
|---|
| 2345 | Pepe Iborra <mnislaih@gmail.com>**20070829085712] |
|---|
| 2346 | [fix this test on Windows |
|---|
| 2347 | Simon Marlow <simonmar@microsoft.com>**20070829090202] |
|---|
| 2348 | [Added tests for :steplocal and :stepmodule |
|---|
| 2349 | Pepe Iborra <mnislaih@gmail.com>**20070828115403] |
|---|
| 2350 | [Accept output |
|---|
| 2351 | Pepe Iborra <mnislaih@gmail.com>**20070828103240] |
|---|
| 2352 | [Aad test break020 for :stepover |
|---|
| 2353 | Pepe Iborra <mnislaih@gmail.com>*-20070814164406] |
|---|
| 2354 | [add test for #1593 |
|---|
| 2355 | Simon Marlow <simonmar@microsoft.com>**20070828102508] |
|---|
| 2356 | [cc013 works now |
|---|
| 2357 | Simon Marlow <simonmar@microsoft.com>**20070828102433] |
|---|
| 2358 | [TypeFamilies: check arity of type instances |
|---|
| 2359 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070828065551] |
|---|
| 2360 | [Changes necessary for type family patch |
|---|
| 2361 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070828055140 |
|---|
| 2362 | - Mostly changed error messages |
|---|
| 2363 | - 'while' needs another type annotation due to changed rules as to what |
|---|
| 2364 | annotations are required for GADTs. |
|---|
| 2365 | ] |
|---|
| 2366 | [Revert a hack now that the buildds will make a gcc-lib directory on Windows |
|---|
| 2367 | Ian Lynagh <igloo@earth.li>**20070826133900] |
|---|
| 2368 | [tcrun021 needs -package containers |
|---|
| 2369 | Ian Lynagh <igloo@earth.li>**20070826125805] |
|---|
| 2370 | [dynamic002 needs -package packedstring now |
|---|
| 2371 | Ian Lynagh <igloo@earth.li>**20070826124918] |
|---|
| 2372 | [conc068 needs parallel |
|---|
| 2373 | Ian Lynagh <igloo@earth.li>**20070826123041] |
|---|
| 2374 | [conc057 needs the parallel library |
|---|
| 2375 | Ian Lynagh <igloo@earth.li>**20070826122117] |
|---|
| 2376 | [Update array test output |
|---|
| 2377 | Ian Lynagh <igloo@earth.li>**20070826120644 |
|---|
| 2378 | Unfortunately safeIndex is too polymorphic to be able to show the index |
|---|
| 2379 | or the bounds when we have a bad index. |
|---|
| 2380 | ] |
|---|
| 2381 | [Update tests now that #1384 is fixed |
|---|
| 2382 | Ian Lynagh <igloo@earth.li>**20070826013926 |
|---|
| 2383 | #1384 = Exporting a module that isn't imported doesn't fail |
|---|
| 2384 | ] |
|---|
| 2385 | [Fix the expected output for derefnull and divbyzero on Windows |
|---|
| 2386 | Ian Lynagh <igloo@earth.li>**20070824215351] |
|---|
| 2387 | [add test for part of #1372 |
|---|
| 2388 | Simon Marlow <simonmar@microsoft.com>**20070801153944] |
|---|
| 2389 | [fix syntax errors |
|---|
| 2390 | Simon Marlow <simonmar@microsoft.com>**20070823143236] |
|---|
| 2391 | [count a syntax error in a .T file as a framework failure |
|---|
| 2392 | Simon Marlow <simonmar@microsoft.com>**20070823142714] |
|---|
| 2393 | [Windows-specific output no longer required |
|---|
| 2394 | Simon Marlow <simonmar@microsoft.com>**20070823111653] |
|---|
| 2395 | [getDirContents001 needs -fno-gen-manifest |
|---|
| 2396 | Simon Marlow <simonmar@microsoft.com>**20070822075924] |
|---|
| 2397 | [Stop the timeout calibration ever returning 0 |
|---|
| 2398 | Ian Lynagh <igloo@earth.li>**20070821135055] |
|---|
| 2399 | [A couple more GADT/type families tests |
|---|
| 2400 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20070821020029] |
|---|
| 2401 | [Another type families/gadt test |
|---|
| 2402 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20070820034301] |
|---|
| 2403 | [Type families: adapt to improved error messages |
|---|
| 2404 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070820022251] |
|---|
| 2405 | [Type families: Infix works now |
|---|
| 2406 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070819114220] |
|---|
| 2407 | [Another type families test |
|---|
| 2408 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20070820020658] |
|---|
| 2409 | [Type families: "Kind" is now working |
|---|
| 2410 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070819072814] |
|---|
| 2411 | [Add a test ghci021 for trac #1565 |
|---|
| 2412 | Ian Lynagh <igloo@earth.li>**20070818152229] |
|---|
| 2413 | [Add a test ghci020 for trac #1587 |
|---|
| 2414 | Ian Lynagh <igloo@earth.li>**20070818151943] |
|---|
| 2415 | [Two more indexed types tests |
|---|
| 2416 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20070817070131] |
|---|
| 2417 | [Types families: Refl suceeds without tyfam patch |
|---|
| 2418 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070816102443] |
|---|
| 2419 | [Synonym family problem with higher-kinded families |
|---|
| 2420 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070816101137] |
|---|
| 2421 | [Accept output due to changes in :history |
|---|
| 2422 | Pepe Iborra <mnislaih@gmail.com>**20070814164438] |
|---|
| 2423 | [Aad test break020 for :stepover |
|---|
| 2424 | Pepe Iborra <mnislaih@gmail.com>**20070814164406] |
|---|
| 2425 | [Added a new :print test |
|---|
| 2426 | Pepe Iborra <mnislaih@gmail.com>**20070712135224] |
|---|
| 2427 | [Another indexed types testcase |
|---|
| 2428 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20070814025630 |
|---|
| 2429 | |
|---|
| 2430 | It exhibits a regression in the type functions patch. |
|---|
| 2431 | ] |
|---|
| 2432 | [Document and fix expected failure code for derefnull and divbyzero |
|---|
| 2433 | Ian Lynagh <igloo@earth.li>**20070812133550] |
|---|
| 2434 | [Follow the base split |
|---|
| 2435 | Ian Lynagh <igloo@earth.li>**20070803180545] |
|---|
| 2436 | [Update the bytestring tests for the bytestring package |
|---|
| 2437 | Ian Lynagh <igloo@earth.li>**20070728221246] |
|---|
| 2438 | [Update standalone deriving test, and add a failure test |
|---|
| 2439 | Ian Lynagh <igloo@earth.li>**20070810223439] |
|---|
| 2440 | [Accept changes (mostly paren removal) |
|---|
| 2441 | Ian Lynagh <igloo@earth.li>**20070810194402] |
|---|
| 2442 | [Test Trac #1606 |
|---|
| 2443 | simonpj@microsoft.com**20070810090346] |
|---|
| 2444 | [Another indexed type families test |
|---|
| 2445 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20070810042859 |
|---|
| 2446 | |
|---|
| 2447 | As before, this is against a patch which isn't in the HEAD yet. |
|---|
| 2448 | ] |
|---|
| 2449 | [Tests for indexed type synonyms |
|---|
| 2450 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20070810034436 |
|---|
| 2451 | |
|---|
| 2452 | The tests expose bugs in an implementation of indexed type families which |
|---|
| 2453 | hasn't been pushed to the HEAD yet. They are all marked as expect_fail. |
|---|
| 2454 | ] |
|---|
| 2455 | [FIX ghci019 |
|---|
| 2456 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20070810014947 |
|---|
| 2457 | |
|---|
| 2458 | Wrong line numbers in expected output |
|---|
| 2459 | ] |
|---|
| 2460 | [Trac #736 is fixed |
|---|
| 2461 | simonpj@microsoft.com**20070809115038] |
|---|
| 2462 | [Test for Trac #1037 |
|---|
| 2463 | simonpj@microsoft.com**20070804174231 |
|---|
| 2464 | |
|---|
| 2465 | ] |
|---|
| 2466 | [Test for Trac #1581 |
|---|
| 2467 | simonpj@microsoft.com**20070804173506] |
|---|
| 2468 | [Use -XGADTs rather than -X=GADTs |
|---|
| 2469 | Ian Lynagh <igloo@earth.li>**20070804211442] |
|---|
| 2470 | [Follow flag changes |
|---|
| 2471 | Ian Lynagh <igloo@earth.li>**20070804202839] |
|---|
| 2472 | [Add tests for catching exceptions on Windows |
|---|
| 2473 | Ian Lynagh <igloo@earth.li>**20070803183530] |
|---|
| 2474 | [Add exit_code_if_platform functions to the testlib |
|---|
| 2475 | Ian Lynagh <igloo@earth.li>**20070803183449] |
|---|
| 2476 | [Docs have moved to the wiki |
|---|
| 2477 | Ian Lynagh <igloo@earth.li>**20070803123118] |
|---|
| 2478 | [cabal01: we need --with-ld=$(LD) for Windows |
|---|
| 2479 | Simon Marlow <simonmar@microsoft.com>**20070803075231] |
|---|
| 2480 | [Define and use rawSystem in the testsuite driver and the driver tests |
|---|
| 2481 | Ian Lynagh <igloo@earth.li>**20070802223037 |
|---|
| 2482 | spawnlp doesn't exist in Windows, so this avoids using it. |
|---|
| 2483 | ] |
|---|
| 2484 | [Add "composes" to the driver docs |
|---|
| 2485 | Ian Lynagh <igloo@earth.li>**20070802170508] |
|---|
| 2486 | [Testsuite driver doc updates |
|---|
| 2487 | Ian Lynagh <igloo@earth.li>**20070802170343] |
|---|
| 2488 | [Add test for record wildcards |
|---|
| 2489 | simonpj@microsoft.com**20070802112227] |
|---|
| 2490 | [Update (previously buggy) output |
|---|
| 2491 | simonpj@microsoft.com**20070802111053] |
|---|
| 2492 | [Update expected output |
|---|
| 2493 | simonpj@microsoft.com**20070802102954] |
|---|
| 2494 | [Add test for Trac #1564 |
|---|
| 2495 | simonpj@microsoft.com**20070801132235] |
|---|
| 2496 | [The galois_raytrace test requires the parsec package |
|---|
| 2497 | Ian Lynagh <igloo@earth.li>**20070727145721] |
|---|
| 2498 | [skip read023 (see #1215 and comment in all.T) |
|---|
| 2499 | Simon Marlow <simonmar@microsoft.com>**20070724130810] |
|---|
| 2500 | [Add a test for copyFile |
|---|
| 2501 | Ian Lynagh <igloo@earth.li>**20070722133715] |
|---|
| 2502 | [Tell the testsuite what exeext is |
|---|
| 2503 | Ian Lynagh <igloo@earth.li>**20070721224708] |
|---|
| 2504 | [Fix cabal01 to work on Windows |
|---|
| 2505 | Ian Lynagh <igloo@earth.li>**20070721215854] |
|---|
| 2506 | [Share the pwd program between tests |
|---|
| 2507 | Ian Lynagh <igloo@earth.li>**20070721215816] |
|---|
| 2508 | [Make a non-profiling version of test cabal01 |
|---|
| 2509 | Ian Lynagh <igloo@earth.li>**20070721133457] |
|---|
| 2510 | [Really remove an obsolete test (print015) |
|---|
| 2511 | Pepe Iborra <mnislaih@gmail.com>**20070720070312] |
|---|
| 2512 | [Add a test for trac #1322 (ghc --make recompiles hs-boot files unnecessarily) |
|---|
| 2513 | Ian Lynagh <igloo@earth.li>**20070719112628] |
|---|
| 2514 | [Fix the haddock tests when going via C |
|---|
| 2515 | Ian Lynagh <igloo@earth.li>**20070719000840 |
|---|
| 2516 | We need to have a header which claims the foreign imports we do are |
|---|
| 2517 | for entities that actually exist. Otherwise the C compiler complains. |
|---|
| 2518 | ] |
|---|
| 2519 | [maessen_hashtab is broken (trac #1546) |
|---|
| 2520 | Ian Lynagh <igloo@earth.li>**20070718125422] |
|---|
| 2521 | [Skip the GHCi debugger tests when unregisterised (trac #1545) |
|---|
| 2522 | Ian Lynagh <igloo@earth.li>**20070718122042] |
|---|
| 2523 | [Adding compile_and_run_with_prefix and multimod_compile_and_run_with_prefix as test-fns. |
|---|
| 2524 | andy@galois.com**20070718045107] |
|---|
| 2525 | [Update drvfail008 output (flag name change) |
|---|
| 2526 | Ian Lynagh <igloo@earth.li>**20070717014132] |
|---|
| 2527 | [Skip the concio tests when fast, as we don't really want to hang around for 2s |
|---|
| 2528 | Ian Lynagh <igloo@earth.li>**20070717013425] |
|---|
| 2529 | [Bump the delay for concio from 0.45 to 1s |
|---|
| 2530 | Ian Lynagh <igloo@earth.li>**20070717013241 |
|---|
| 2531 | It wasn't long enough on thorkil's Mac. Should really do something based |
|---|
| 2532 | on the calibration value or something, I guess. |
|---|
| 2533 | ] |
|---|
| 2534 | [Skip break017 if fast (bit of a hack; just to make the validate script work) |
|---|
| 2535 | Ian Lynagh <igloo@earth.li>**20070714224728] |
|---|
| 2536 | [Accept output |
|---|
| 2537 | Pepe Iborra <mnislaih@gmail.com>**20070714155344] |
|---|
| 2538 | [Add a test for bug 1533 (currently broken) |
|---|
| 2539 | Ian Lynagh <igloo@earth.li>**20070713131013] |
|---|
| 2540 | [dynbrk005: update with expected output |
|---|
| 2541 | Pepe Iborra <mnislaih@gmail.com>**20070713110121 |
|---|
| 2542 | |
|---|
| 2543 | The test is still expected to fail, as there is some |
|---|
| 2544 | implementation work to be done here |
|---|
| 2545 | |
|---|
| 2546 | ] |
|---|
| 2547 | [break014: accept output and unfail |
|---|
| 2548 | Pepe Iborra <mnislaih@gmail.com>**20070713103724] |
|---|
| 2549 | [remove an obsolete test |
|---|
| 2550 | Pepe Iborra <mnislaih@gmail.com>**20070712100713 |
|---|
| 2551 | |
|---|
| 2552 | The script was using Data.Set to test handling of unboxed fields by :print, |
|---|
| 2553 | but some change in Data.Set or in ghc has made fromList more strict and |
|---|
| 2554 | the :print pprinter never gets to show the unboxed fields itself. |
|---|
| 2555 | Moreover, print022 is a much better test for unboxed fields than this one |
|---|
| 2556 | |
|---|
| 2557 | ] |
|---|
| 2558 | [concio001: give the process a tiny little bit more time in the Makefile |
|---|
| 2559 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070713042705 |
|---|
| 2560 | - Although the test passed when run by itself, it did sometimes fail |
|---|
| 2561 | with validate as the timing just didn't work out on a loaded machine. |
|---|
| 2562 | ] |
|---|
| 2563 | [Accept output |
|---|
| 2564 | Pepe Iborra <mnislaih@gmail.com>**20070712085231] |
|---|
| 2565 | [Unfail some :print tests |
|---|
| 2566 | Pepe Iborra <mnislaih@gmail.com>**20070711102423] |
|---|
| 2567 | [ffi012: stdcall doesn't work on MacOS #1524 |
|---|
| 2568 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070711101641] |
|---|
| 2569 | [concio001: account for constant overhead of threadDelay on MacOS |
|---|
| 2570 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070711092149 |
|---|
| 2571 | - See also #1523 |
|---|
| 2572 | ] |
|---|
| 2573 | [Follow error message changes |
|---|
| 2574 | Ian Lynagh <igloo@earth.li>**20070710152155] |
|---|
| 2575 | [Remove tcfail111; duplicate of tcfail098 |
|---|
| 2576 | Ian Lynagh <igloo@earth.li>**20070709215509] |
|---|
| 2577 | [Tweak tcfail098; we aren't interested in the undecidability error |
|---|
| 2578 | Ian Lynagh <igloo@earth.li>**20070709215427] |
|---|
| 2579 | [Add a test for -XPartiallyAppliedClosedTypeSynonyms |
|---|
| 2580 | Ian Lynagh <igloo@earth.li>**20070709181508] |
|---|
| 2581 | [add test for #1505 |
|---|
| 2582 | Simon Marlow <simonmar@microsoft.com>**20070709210632] |
|---|
| 2583 | [Fix this test to work with shells that don't have {..} globbing |
|---|
| 2584 | Simon Marlow <simonmar@microsoft.com>**20070709200946 |
|---|
| 2585 | e.g. the /bin/sh on my Ubuntu 7.04 system |
|---|
| 2586 | ] |
|---|
| 2587 | [Accept output (more flag name changes) |
|---|
| 2588 | Ian Lynagh <igloo@earth.li>**20070709165029] |
|---|
| 2589 | [Add tests for -XPolymorphicComponents |
|---|
| 2590 | Ian Lynagh <igloo@earth.li>**20070709120331] |
|---|
| 2591 | [readwrite002 is expect_broken_if_platform(1198,'i386-unknown-mingw32') |
|---|
| 2592 | Simon Marlow <simonmar@microsoft.com>**20070709113801] |
|---|
| 2593 | [reqlib now uses subprocess (when it's available) |
|---|
| 2594 | Ian Lynagh <igloo@earth.li>**20070709105014 |
|---|
| 2595 | Fixes a problem where /dev/null doesn't exist on mingw. |
|---|
| 2596 | ] |
|---|
| 2597 | [Accept output (following error message changes) |
|---|
| 2598 | Ian Lynagh <igloo@earth.li>**20070708193947] |
|---|
| 2599 | [Tests for -XFunctionalDependencies |
|---|
| 2600 | Ian Lynagh <igloo@earth.li>**20070708153251] |
|---|
| 2601 | [Add tests for -XRecursiveDo |
|---|
| 2602 | Ian Lynagh <igloo@earth.li>**20070708150546] |
|---|
| 2603 | [Tests for -XGeneralizedNewtypeDeriving |
|---|
| 2604 | Ian Lynagh <igloo@earth.li>**20070708144456] |
|---|
| 2605 | [Add tests for -XParallelListComp |
|---|
| 2606 | Ian Lynagh <igloo@earth.li>**20070708134210] |
|---|
| 2607 | [Add tests for -XMultiParamTypeClasses |
|---|
| 2608 | Ian Lynagh <igloo@earth.li>**20070708122732] |
|---|
| 2609 | [Tests for KindSignatures |
|---|
| 2610 | Ian Lynagh <igloo@earth.li>**20070708120837] |
|---|
| 2611 | [Tests for EmptyDataDecls extension |
|---|
| 2612 | Ian Lynagh <igloo@earth.li>**20070708112938] |
|---|
| 2613 | [Add tests for magic hashes (trac #1297) |
|---|
| 2614 | Ian Lynagh <igloo@earth.li>**20070708110956] |
|---|
| 2615 | [Fix calibrate python script for non-UNIX machines |
|---|
| 2616 | Ian Lynagh <igloo@earth.li>**20070707213542] |
|---|
| 2617 | [Fall back to os.spawnv is we don't have the subprocess module |
|---|
| 2618 | Ian Lynagh <igloo@earth.li>**20070707212648] |
|---|
| 2619 | [add prof_hb way |
|---|
| 2620 | Simon Marlow <simonmar@microsoft.com>**20070627090524] |
|---|
| 2621 | [clean up the extra_ways machinery |
|---|
| 2622 | Simon Marlow <simonmar@microsoft.com>**20070627090515] |
|---|
| 2623 | [add the profiling ways to config.other_ways |
|---|
| 2624 | Simon Marlow <simonmar@microsoft.com>**20070627084700] |
|---|
| 2625 | [make prof001 and prof002 into compile_and_run tests, to test #1472 |
|---|
| 2626 | Simon Marlow <simonmar@microsoft.com>**20070707191638] |
|---|
| 2627 | [Add a test for -fdisambiguate-record-fields (trac #1401) |
|---|
| 2628 | Ian Lynagh <igloo@earth.li>**20070707183413] |
|---|
| 2629 | [tcfail093 now succeeds, so has no stderr |
|---|
| 2630 | Ian Lynagh <igloo@earth.li>**20070707102012] |
|---|
| 2631 | [tc232 requires mtl |
|---|
| 2632 | Ian Lynagh <igloo@earth.li>**20070707101215] |
|---|
| 2633 | [Use subprocess.call rather than os.spawnv in the testsuite driver |
|---|
| 2634 | Ian Lynagh <igloo@earth.li>**20070706121450 |
|---|
| 2635 | os.spawnv is broken on non-cygwin Windows (looks like it goes via a shell). |
|---|
| 2636 | ] |
|---|
| 2637 | [drv015 should fial |
|---|
| 2638 | simonpj@microsoft.com**20070706095331] |
|---|
| 2639 | [tcfail093 should succeed |
|---|
| 2640 | simonpj@microsoft.com**20070706094731] |
|---|
| 2641 | [Added tests for Cmm and CPS (they are currently skipped) |
|---|
| 2642 | Michael D. Adams <t-madams@microsoft.com>**20070706092548 |
|---|
| 2643 | Also the test driver doesn't understand 'cmm' files |
|---|
| 2644 | so something will have to be written before these tests |
|---|
| 2645 | can even run. |
|---|
| 2646 | ] |
|---|
| 2647 | [tcfail140 is expect_broken(451) |
|---|
| 2648 | Simon Marlow <simonmar@microsoft.com>**20070706081157] |
|---|
| 2649 | [ffi-deriv1 is broken(736) |
|---|
| 2650 | Simon Marlow <simonmar@microsoft.com>**20070705140311] |
|---|
| 2651 | [Add test for Trac #1494 |
|---|
| 2652 | simonpj@microsoft.com**20070704215436] |
|---|
| 2653 | [fix testblockalloc for THREADS=2 |
|---|
| 2654 | Simon Marlow <simonmar@microsoft.com>**20070704154139] |
|---|
| 2655 | [accept output |
|---|
| 2656 | Simon Marlow <simonmar@microsoft.com>**20070704135029] |
|---|
| 2657 | [gadt23: $MAKE needs --no-print-directory |
|---|
| 2658 | Simon Marlow <simonmar@microsoft.com>**20070704134516] |
|---|
| 2659 | [add test for #1131 |
|---|
| 2660 | Simon Marlow <simonmar@microsoft.com>**20070704104931] |
|---|
| 2661 | [Test for Trac #1456 |
|---|
| 2662 | simonpj@microsoft.com**20070703161621] |
|---|
| 2663 | [don't reset MAKEFLAGS in recursive make in 'make fast' |
|---|
| 2664 | Simon Marlow <simonmar@microsoft.com>**20070703123426 |
|---|
| 2665 | It breaks some tests on Windows, because the stage=2 setting is lost |
|---|
| 2666 | in the recursive call. I don't understand why these variables are |
|---|
| 2667 | passed in MAKEFLAGS on Windows (cygwin) but not on Unix, something to |
|---|
| 2668 | do with environment variables presumably. |
|---|
| 2669 | ] |
|---|
| 2670 | [accept output |
|---|
| 2671 | Simon Marlow <simonmar@microsoft.com>**20070703105758] |
|---|
| 2672 | [accept output |
|---|
| 2673 | Simon Marlow <simonmar@microsoft.com>**20070703103912] |
|---|
| 2674 | [Update output |
|---|
| 2675 | simonpj@microsoft.com**20070629161308] |
|---|
| 2676 | [Add test for Trac #1465 |
|---|
| 2677 | simonpj@microsoft.com**20070629115325] |
|---|
| 2678 | [Type families: more overlap checks |
|---|
| 2679 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070629071438] |
|---|
| 2680 | [Type families: test type family with higher kinded parameters |
|---|
| 2681 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070629065523] |
|---|
| 2682 | [Type families: tests excluding type families in left hand sides |
|---|
| 2683 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070629064019] |
|---|
| 2684 | [Type families: test for tau typeness of rhs of type instances |
|---|
| 2685 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070629052042] |
|---|
| 2686 | [Type families: tests for overlap check of type families |
|---|
| 2687 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070629043820] |
|---|
| 2688 | [Add test for Trac #1445 |
|---|
| 2689 | simonpj@microsoft.com**20070628083059] |
|---|
| 2690 | [Types families: test that the right coercion names go into ifaces |
|---|
| 2691 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070627104656] |
|---|
| 2692 | [Type families: add test case for deriving of assoc data families |
|---|
| 2693 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070627055147] |
|---|
| 2694 | [make this test a bit more robust (hopefully) |
|---|
| 2695 | Simon Marlow <simonmar@microsoft.com>**20070626092843] |
|---|
| 2696 | [Add a test (tc229) for trac #1406 |
|---|
| 2697 | Ian Lynagh <igloo@earth.li>**20070624191431] |
|---|
| 2698 | [Add a test for trac #1287: SPECIALIZE causes panic |
|---|
| 2699 | Ian Lynagh <igloo@earth.li>**20070624172733] |
|---|
| 2700 | [Allow the "< /dev/null" when running tests to be disabled |
|---|
| 2701 | Ian Lynagh <igloo@earth.li>**20070623205213 |
|---|
| 2702 | The user001 test in the unix package can fail when stdin comes from a |
|---|
| 2703 | file. |
|---|
| 2704 | ] |
|---|
| 2705 | [Accept output (tcfail145) |
|---|
| 2706 | Ian Lynagh <igloo@earth.li>**20070623195449] |
|---|
| 2707 | [Accept output (read008) |
|---|
| 2708 | Ian Lynagh <igloo@earth.li>**20070623194707] |
|---|
| 2709 | [getC now works (trac 1430 is fixed) |
|---|
| 2710 | Ian Lynagh <igloo@earth.li>**20070623192346] |
|---|
| 2711 | [Mark ghci debugger tests broken |
|---|
| 2712 | Ian Lynagh <igloo@earth.li>**20070623175217] |
|---|
| 2713 | [Test for Trac #1402 |
|---|
| 2714 | simonpj@microsoft.com**20070621165221] |
|---|
| 2715 | [Fix flaggery |
|---|
| 2716 | simonpj@microsoft.com**20070621163321] |
|---|
| 2717 | [Test for Trac #1386 |
|---|
| 2718 | simonpj@microsoft.com**20070621163308] |
|---|
| 2719 | [Update expected output (mostly concerning deriving) |
|---|
| 2720 | simonpj@microsoft.com**20070620102719] |
|---|
| 2721 | [tcrun032 was using an un-documented (and now not implemented) feature of 'deriving' |
|---|
| 2722 | simonpj@microsoft.com**20070620102522] |
|---|
| 2723 | [Remove tcfail105.stderr; tcfail105 is now an expected pass! |
|---|
| 2724 | simonpj@microsoft.com**20070620102303] |
|---|
| 2725 | [no .bat scripts any more |
|---|
| 2726 | Simon Marlow <simonmar@microsoft.com>**20070621102024] |
|---|
| 2727 | [Test for Trac #1430 |
|---|
| 2728 | simonpj@microsoft.com**20070619163127] |
|---|
| 2729 | [Output reordering in debugger tests |
|---|
| 2730 | Ian Lynagh <igloo@earth.li>**20070618103251] |
|---|
| 2731 | [Two tests for newtypes & :print added |
|---|
| 2732 | Pepe Iborra <mnislaih@gmail.com>**20070618080252] |
|---|
| 2733 | [Update ghci debugger output order |
|---|
| 2734 | Ian Lynagh <igloo@earth.li>**20070617215040] |
|---|
| 2735 | [tcfail046,tcfail169,tcfail118 are broken; trac #1432 |
|---|
| 2736 | Ian Lynagh <igloo@earth.li>**20070617001116] |
|---|
| 2737 | [rnfail028 is currently broken; trac #1384 |
|---|
| 2738 | Ian Lynagh <igloo@earth.li>**20070616223140] |
|---|
| 2739 | [We expect getC to be broken: trac #1430 |
|---|
| 2740 | Ian Lynagh <igloo@earth.li>**20070616221450] |
|---|
| 2741 | [tcfail177 is expected to fail; trac #1176 |
|---|
| 2742 | Ian Lynagh <igloo@earth.li>**20070616211731] |
|---|
| 2743 | [Accept prog003 output |
|---|
| 2744 | Ian Lynagh <igloo@earth.li>**20070616204139 |
|---|
| 2745 | Also added some extra prints to make it clearer what's happening |
|---|
| 2746 | ] |
|---|
| 2747 | [ghci debugger output reordering |
|---|
| 2748 | Ian Lynagh <igloo@earth.li>**20070616200222] |
|---|
| 2749 | [Accept output reorderings in ghci debugger tests |
|---|
| 2750 | Ian Lynagh <igloo@earth.li>**20070616195730] |
|---|
| 2751 | [Accept output for TH_exn2 |
|---|
| 2752 | Ian Lynagh <igloo@earth.li>**20070616194758] |
|---|
| 2753 | [accept output |
|---|
| 2754 | Simon Marlow <simonmar@microsoft.com>**20070614111147] |
|---|
| 2755 | [move par tests to the parallel package |
|---|
| 2756 | Simon Marlow <simonmar@microsoft.com>**20070614092328] |
|---|
| 2757 | [add 32-bit output for num012 |
|---|
| 2758 | Simon Marlow <simonmar@microsoft.com>**20070614091546] |
|---|
| 2759 | [Test 11 double arguments instead of 6 (see #1424) |
|---|
| 2760 | Simon Marlow <simonmar@microsoft.com>**20070613144542] |
|---|
| 2761 | [test various kinds of heap profile |
|---|
| 2762 | Simon Marlow <simonmar@microsoft.com>**20070613124435] |
|---|
| 2763 | [add extra_ways, for adding running a test in more ways |
|---|
| 2764 | Simon Marlow <simonmar@microsoft.com>**20070613124318] |
|---|
| 2765 | [add more profiling ways, to test different kinds of heap profile |
|---|
| 2766 | Simon Marlow <simonmar@microsoft.com>**20070613121954] |
|---|
| 2767 | [fix this test |
|---|
| 2768 | Simon Marlow <simonmar@microsoft.com>**20070608104457] |
|---|
| 2769 | [expect more failures for ffi009 on x86 |
|---|
| 2770 | Simon Marlow <simonmar@microsoft.com>**20070608104150] |
|---|
| 2771 | [Split newtype deriving test from other deriving tests |
|---|
| 2772 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070608044250] |
|---|
| 2773 | [fix this test |
|---|
| 2774 | Simon Marlow <simonmar@microsoft.com>**20070607095334] |
|---|
| 2775 | [more expected failures for arith012 |
|---|
| 2776 | Simon Marlow <simonmar@microsoft.com>**20070607094022] |
|---|
| 2777 | [accept output |
|---|
| 2778 | Simon Marlow <simonmar@microsoft.com>**20070607093924] |
|---|
| 2779 | [arith008 fails for some more ways now that the NCG is used by default |
|---|
| 2780 | Simon Marlow <simonmar@microsoft.com>**20070607093505] |
|---|
| 2781 | [Add test for #1385 |
|---|
| 2782 | simonpj@microsoft.com**20070606131053] |
|---|
| 2783 | [Add comments about runCmd |
|---|
| 2784 | simonpj@microsoft.com**20070606094820] |
|---|
| 2785 | [Test for Trac #1396 |
|---|
| 2786 | Michael D. Adams <t-madams@microsoft.com>**20070531154432] |
|---|
| 2787 | [Test for Trac #1382 |
|---|
| 2788 | simonpj@microsoft.com**20070530082341] |
|---|
| 2789 | [add negative-prim-literal tests |
|---|
| 2790 | Isaac Dupree <id@isaac.cedarswampstudios.org>**20070526224405 |
|---|
| 2791 | the first for behavior common between their new and old parsings (passes both), |
|---|
| 2792 | the second to test the new behavior (fails before, passes after) |
|---|
| 2793 | ] |
|---|
| 2794 | [#1318: pre-emptively add test for Haskell98 treatment of operator "-" |
|---|
| 2795 | Isaac Dupree <id@isaac.cedarswampstudios.org>**20070526143814] |
|---|
| 2796 | [Add parser/should_run |
|---|
| 2797 | Isaac Dupree <id@isaac.cedarswampstudios.org>**20070526143151] |
|---|
| 2798 | [Update (incorrect) test output with '....'s |
|---|
| 2799 | Ian Lynagh <igloo@earth.li>**20070527213056] |
|---|
| 2800 | [Accept output (missing-main error changed) |
|---|
| 2801 | Ian Lynagh <igloo@earth.li>**20070527212624] |
|---|
| 2802 | [1332 is now fixed, so tc224 is passing again |
|---|
| 2803 | Ian Lynagh <igloo@earth.li>**20070527211601] |
|---|
| 2804 | [Use -v0 in TH tests to avoid package versions getting into stderr |
|---|
| 2805 | Ian Lynagh <igloo@earth.li>**20070527210126] |
|---|
| 2806 | [Use -v0 when doing test rnfail043 |
|---|
| 2807 | Ian Lynagh <igloo@earth.li>**20070527203004 |
|---|
| 2808 | This avoids version numbers of packages being in the output. |
|---|
| 2809 | ] |
|---|
| 2810 | [Accept output (missing-main error has changed) |
|---|
| 2811 | Ian Lynagh <igloo@earth.li>**20070527202508] |
|---|
| 2812 | [Accept output (missing-main error has changed) |
|---|
| 2813 | Ian Lynagh <igloo@earth.li>**20070527202333] |
|---|
| 2814 | [par001 requires the parallel library |
|---|
| 2815 | Ian Lynagh <igloo@earth.li>**20070527200931] |
|---|
| 2816 | [Accept output (source spans) |
|---|
| 2817 | Ian Lynagh <igloo@earth.li>**20070527184303] |
|---|
| 2818 | [remove unreg "way"; unreg is now all-or-nothing |
|---|
| 2819 | Simon Marlow <simonmar@microsoft.com>**20070525081742] |
|---|
| 2820 | [Accept output |
|---|
| 2821 | Pepe Iborra <mnislaih@gmail.com>**20070519215040] |
|---|
| 2822 | [ignore the .ghci file if present in the ghci debugger tests |
|---|
| 2823 | Pepe Iborra <mnislaih@gmail.com>**20070519211700] |
|---|
| 2824 | [Accept output (source spans) |
|---|
| 2825 | Ian Lynagh <igloo@earth.li>**20070519104909] |
|---|
| 2826 | [Accept output (... doesn't replace a constructor any more) |
|---|
| 2827 | Ian Lynagh <igloo@earth.li>**20070519103641] |
|---|
| 2828 | [add a test for printing unboxed fields |
|---|
| 2829 | Simon Marlow <simonmar@microsoft.com>**20070518141526] |
|---|
| 2830 | [arith011 is no longer broken on x86-64 Linux |
|---|
| 2831 | Simon Marlow <simonmar@microsoft.com>**20070518115502] |
|---|
| 2832 | [Accept output (src span) |
|---|
| 2833 | Ian Lynagh <igloo@earth.li>**20070517164019] |
|---|
| 2834 | [bio001 needs profiling |
|---|
| 2835 | Ian Lynagh <igloo@earth.li>**20070517163214] |
|---|
| 2836 | [Accept output (source spans) |
|---|
| 2837 | Ian Lynagh <igloo@earth.li>**20070517162651] |
|---|
| 2838 | [move dynbk tests into scripts/ and update them |
|---|
| 2839 | Simon Marlow <simonmar@microsoft.com>**20070517092220] |
|---|
| 2840 | [move STM-specific tests to the stm package |
|---|
| 2841 | Simon Marlow <simonmar@microsoft.com>**20070517085909] |
|---|
| 2842 | [make this test work a bit more reliably |
|---|
| 2843 | Simon Marlow <simonmar@microsoft.com>**20070517085853] |
|---|
| 2844 | [add missing files |
|---|
| 2845 | Simon Marlow <simonmar@microsoft.com>**20070517082938] |
|---|
| 2846 | [add another exception test |
|---|
| 2847 | Simon Marlow <simonmar@microsoft.com>**20070516133922] |
|---|
| 2848 | [move the break* tests into scripts/, and update as necessary |
|---|
| 2849 | Simon Marlow <simonmar@microsoft.com>**20070516095924] |
|---|
| 2850 | [move break1 to scripts/break012 |
|---|
| 2851 | Simon Marlow <simonmar@microsoft.com>**20070516090710] |
|---|
| 2852 | [add missing source file |
|---|
| 2853 | Simon Marlow <simonmar@microsoft.com>**20070516083636] |
|---|
| 2854 | [add missing source files for tests |
|---|
| 2855 | Simon Marlow <simonmar@microsoft.com>**20070516082958] |
|---|
| 2856 | [accept output and add a few more tests |
|---|
| 2857 | Simon Marlow <simonmar@microsoft.com>**20070515132532] |
|---|
| 2858 | [-findexed-types -> -ftype-families |
|---|
| 2859 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070514115132] |
|---|
| 2860 | [add test for #1277 |
|---|
| 2861 | Simon Marlow <simonmar@microsoft.com>**20070511145720] |
|---|
| 2862 | [Adapt indexed type tests to removal of newtype families |
|---|
| 2863 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070511113521] |
|---|
| 2864 | [Various indexed types tests fail due to trac #1331 |
|---|
| 2865 | Ian Lynagh <igloo@earth.li>*-20070505155605] |
|---|
| 2866 | [Add tests for -fwarn-implicit-prelude (and -fwarn-unused-imports along with it) (trac #1317) |
|---|
| 2867 | Isaac Dupree <id@isaac.cedarswampstudios.org>**20070508221238] |
|---|
| 2868 | [add a couple more tests |
|---|
| 2869 | Simon Marlow <simonmar@microsoft.com>**20070509133022] |
|---|
| 2870 | [add test for unicode constructor names in :print |
|---|
| 2871 | Simon Marlow <simonmar@microsoft.com>**20070509104517] |
|---|
| 2872 | [Add test for full laziness |
|---|
| 2873 | simonpj@microsoft.com**20070509113038] |
|---|
| 2874 | [accept output |
|---|
| 2875 | Simon Marlow <simonmar@microsoft.com>**20070508144310] |
|---|
| 2876 | [FIX #1159: This test needs to run in a subthread (see comments) |
|---|
| 2877 | Simon Marlow <simonmar@microsoft.com>**20070508130950] |
|---|
| 2878 | [add test for #1227 |
|---|
| 2879 | Simon Marlow <simonmar@microsoft.com>**20070508105325] |
|---|
| 2880 | [add test for #1253 |
|---|
| 2881 | Simon Marlow <simonmar@microsoft.com>**20070507132429] |
|---|
| 2882 | [add test for #1091 |
|---|
| 2883 | Simon Marlow <simonmar@microsoft.com>**20070507113903] |
|---|
| 2884 | [add basic concurrency/IO test: tests that stdin is non-blocking |
|---|
| 2885 | Simon Marlow <simonmar@microsoft.com>**20070507124521] |
|---|
| 2886 | [platform-specific output no longer required |
|---|
| 2887 | Simon Marlow <simonmar@microsoft.com>**20070417080859] |
|---|
| 2888 | [Add a test that 'ghc -e "return ()"' returns successfully |
|---|
| 2889 | Ian Lynagh <igloo@earth.li>**20070506113229] |
|---|
| 2890 | [Arrow tests are failing core lint; trac #1333 |
|---|
| 2891 | Ian Lynagh <igloo@earth.li>**20070505190414] |
|---|
| 2892 | [sed-o in the testsuite driver |
|---|
| 2893 | Ian Lynagh <igloo@earth.li>**20070505190353] |
|---|
| 2894 | [dsrun014 is broken (trac #1257, Bytecode generator can't handle unboxed tuples) |
|---|
| 2895 | Ian Lynagh <igloo@earth.li>**20070505172037] |
|---|
| 2896 | [tc224 (overloaded strings) is broken; trac #1332 |
|---|
| 2897 | Ian Lynagh <igloo@earth.li>**20070505161813] |
|---|
| 2898 | [Various indexed types tests fail due to trac #1331 |
|---|
| 2899 | Ian Lynagh <igloo@earth.li>**20070505155605] |
|---|
| 2900 | [Accept output (mdofail004) |
|---|
| 2901 | Ian Lynagh <igloo@earth.li>**20070505153527] |
|---|
| 2902 | [Church2 is broken; trac #1330 |
|---|
| 2903 | Ian Lynagh <igloo@earth.li>**20070505152441] |
|---|
| 2904 | [Accept output |
|---|
| 2905 | Ian Lynagh <igloo@earth.li>**20070505150128] |
|---|
| 2906 | [Accept output |
|---|
| 2907 | Ian Lynagh <igloo@earth.li>**20070505123344] |
|---|
| 2908 | [Accept output |
|---|
| 2909 | Ian Lynagh <igloo@earth.li>**20070505120131] |
|---|
| 2910 | [Add output |
|---|
| 2911 | Ian Lynagh <igloo@earth.li>**20070505115657] |
|---|
| 2912 | [Accept output |
|---|
| 2913 | Ian Lynagh <igloo@earth.li>**20070505114604] |
|---|
| 2914 | [Partially accept output |
|---|
| 2915 | Ian Lynagh <igloo@earth.li>**20070505113746] |
|---|
| 2916 | [Accept output |
|---|
| 2917 | Ian Lynagh <igloo@earth.li>**20070505113048] |
|---|
| 2918 | [Accept output for tcfail004 |
|---|
| 2919 | Ian Lynagh <igloo@earth.li>**20070505105852] |
|---|
| 2920 | [Track ... pretty-printer changes |
|---|
| 2921 | Ian Lynagh <igloo@earth.li>**20070505105355] |
|---|
| 2922 | [stm is no longer a corelib, so needs to be reqlib'ed now |
|---|
| 2923 | Ian Lynagh <igloo@earth.li>**20070505004835] |
|---|
| 2924 | [Don't dump stderr/stdout before we've split the ghci output |
|---|
| 2925 | Ian Lynagh <igloo@earth.li>**20070505004802 |
|---|
| 2926 | Fixes some framework failures. |
|---|
| 2927 | ] |
|---|
| 2928 | [Fix spec001 test |
|---|
| 2929 | Ian Lynagh <igloo@earth.li>**20070505001103] |
|---|
| 2930 | [Accept output |
|---|
| 2931 | Ian Lynagh <igloo@earth.li>**20070505000818] |
|---|
| 2932 | [Accept output |
|---|
| 2933 | Ian Lynagh <igloo@earth.li>**20070504235810] |
|---|
| 2934 | [maessen_hashtab needs QuickCheck |
|---|
| 2935 | Ian Lynagh <igloo@earth.li>**20070504235518] |
|---|
| 2936 | [regex tests need regex-posix, which is no longer a corelib |
|---|
| 2937 | Ian Lynagh <igloo@earth.li>**20070504232505] |
|---|
| 2938 | [Fix comment |
|---|
| 2939 | Ian Lynagh <igloo@earth.li>**20070504230405] |
|---|
| 2940 | [skip cabal02 (cabal-setup isn't in the GHC tree any more) |
|---|
| 2941 | Ian Lynagh <igloo@earth.li>**20070504220048] |
|---|
| 2942 | [Don't hardcode the version of base in the tests |
|---|
| 2943 | Ian Lynagh <igloo@earth.li>**20070504215708] |
|---|
| 2944 | [Accept output for tcfail005 |
|---|
| 2945 | Ian Lynagh <igloo@earth.li>**20070504092957] |
|---|
| 2946 | [cg025 requires regex-compat, which is now an extralib |
|---|
| 2947 | Ian Lynagh <igloo@earth.li>**20070503225622] |
|---|
| 2948 | [Test for Trac #1251 |
|---|
| 2949 | simonpj@microsoft.com**20070504111134] |
|---|
| 2950 | [Add test for Trac #1323 |
|---|
| 2951 | simonpj@microsoft.com**20070504075616] |
|---|
| 2952 | [Revert mistaken change to all.T |
|---|
| 2953 | simonpj@microsoft.com**20070504073843] |
|---|
| 2954 | [Use letters to allow output to be matched up with the code more easily |
|---|
| 2955 | Ian Lynagh <igloo@earth.li>**20070503192604] |
|---|
| 2956 | [Remove redundant arch-specific test files |
|---|
| 2957 | Ian Lynagh <igloo@earth.li>**20070503192139] |
|---|
| 2958 | [Accept output |
|---|
| 2959 | Ian Lynagh <igloo@earth.li>**20070503191615] |
|---|
| 2960 | [update: we give a diagnostic for an incorrect number in :delete now |
|---|
| 2961 | Simon Marlow <simonmar@microsoft.com>**20070503151724] |
|---|
| 2962 | [add a history test |
|---|
| 2963 | Simon Marlow <simonmar@microsoft.com>**20070503151700] |
|---|
| 2964 | [add a :list test |
|---|
| 2965 | Simon Marlow <simonmar@microsoft.com>**20070503150446] |
|---|
| 2966 | [add a test to demonstrate a new bug |
|---|
| 2967 | Simon Marlow <simonmar@microsoft.com>**20070503131223] |
|---|
| 2968 | [accept output |
|---|
| 2969 | Simon Marlow <simonmar@microsoft.com>**20070503094206] |
|---|
| 2970 | [add correct output now this test is fixed |
|---|
| 2971 | Simon Marlow <simonmar@microsoft.com>**20070430110058] |
|---|
| 2972 | [Add test for Trac #1255 |
|---|
| 2973 | simonpj@microsoft.com**20070503075022] |
|---|
| 2974 | [Add test for records and type families |
|---|
| 2975 | simonpj@microsoft.com**20070503073838] |
|---|
| 2976 | [Accept output |
|---|
| 2977 | Pepe Iborra <mnislaih@gmail.com>**20070430171655] |
|---|
| 2978 | [Adapt some breakpoint tests to the new command syntax |
|---|
| 2979 | Pepe Iborra <mnislaih@gmail.com>**20070430171643] |
|---|
| 2980 | [add test for a new assertion failure |
|---|
| 2981 | Simon Marlow <simonmar@microsoft.com>**20070427144739] |
|---|
| 2982 | [modify test to reproduce a new bug |
|---|
| 2983 | Simon Marlow <simonmar@microsoft.com>**20070426153744] |
|---|
| 2984 | [add another test, and accept some output |
|---|
| 2985 | Simon Marlow <simonmar@microsoft.com>**20070426152639] |
|---|
| 2986 | [Fix the test I just added |
|---|
| 2987 | Pepe Iborra <mnislaih@gmail.com>**20070426101615 |
|---|
| 2988 | |
|---|
| 2989 | :break qsort sets a breakpoint in the outer expression, before any variable |
|---|
| 2990 | has been bound. Once you :step the things are bound |
|---|
| 2991 | |
|---|
| 2992 | ] |
|---|
| 2993 | [Added a :break test |
|---|
| 2994 | Pepe Iborra <mnislaih@gmail.com>**20070426085538] |
|---|
| 2995 | [Disable the monomorphism restriction warnings in all tests |
|---|
| 2996 | Pepe Iborra <mnislaih@gmail.com>**20070426084918] |
|---|
| 2997 | [Accept output |
|---|
| 2998 | Pepe Iborra <mnislaih@gmail.com>**20070425175248] |
|---|
| 2999 | [add some :show bindings |
|---|
| 3000 | Simon Marlow <simonmar@microsoft.com>**20070425130058] |
|---|
| 3001 | [add test for a new bug |
|---|
| 3002 | Simon Marlow <simonmar@microsoft.com>**20070425130031] |
|---|
| 3003 | [this test requires an extra :step now |
|---|
| 3004 | Simon Marlow <simonmar@microsoft.com>**20070425125920] |
|---|
| 3005 | [New test covering bug discovered by Nicolas Frisby in TcUnify.boxySplitTyConApp |
|---|
| 3006 | simonpj@microsoft.com**20070424124702] |
|---|
| 3007 | [move some dynbrk tests into the scripts/ directory |
|---|
| 3008 | Simon Marlow <simonmar@microsoft.com>**20070423152829] |
|---|
| 3009 | [add dynbrk tests, and a few more breakpoint tests |
|---|
| 3010 | Simon Marlow <simonmar@microsoft.com>**20070423152031] |
|---|
| 3011 | [Adapt commands to the new ghci debugger command-set |
|---|
| 3012 | Pepe Iborra <mnislaih@gmail.com>**20070420170414] |
|---|
| 3013 | [Accept output |
|---|
| 3014 | Pepe Iborra <mnislaih@gmail.com>**20070420170311] |
|---|
| 3015 | [Add test suggested by Doaitse Swierestra |
|---|
| 3016 | simonpj@microsoft.com**20070418145918] |
|---|
| 3017 | [Update output |
|---|
| 3018 | Ian Lynagh <igloo@earth.li>**20070417151616] |
|---|
| 3019 | [Add a test for use of fail for trac #1265 |
|---|
| 3020 | Tyson Whitehead <twhitehe@uwo.ca>**20070410140653] |
|---|
| 3021 | [Differentiate between use of fail and failure of code (i.e., an exception is thrown) |
|---|
| 3022 | Tyson Whitehead <twhitehe@uwo.ca>**20070410140308] |
|---|
| 3023 | [Use $(PYTHON) rather than assuming python will find it |
|---|
| 3024 | Ian Lynagh <igloo@earth.li>**20070417130516] |
|---|
| 3025 | [Generate conc068 input in a more portable manner |
|---|
| 3026 | Thorkil Naur <naur@post11.tele.dk>**20070417063754 |
|---|
| 3027 | The earlier method with 'yes .. | head ..' does not work on PPC Mac OS X. |
|---|
| 3028 | ] |
|---|
| 3029 | [TAG 2007-04-17 |
|---|
| 3030 | Ian Lynagh <igloo@earth.li>**20070417125057] |
|---|
| 3031 | [Close 2 files that we open so we know that the writes have actually happened |
|---|
| 3032 | Ian Lynagh <igloo@earth.li>**20070416225010] |
|---|
| 3033 | [cabal01 needs profiling |
|---|
| 3034 | Ian Lynagh <igloo@earth.li>**20070416221129] |
|---|
| 3035 | [MERGE: Make conc056 independent of the network package |
|---|
| 3036 | Simon Marlow <simonmar@microsoft.com>**20070416101202 |
|---|
| 3037 | Should make the test more robust, we were seeing failures in the |
|---|
| 3038 | nightly builds. |
|---|
| 3039 | ] |
|---|
| 3040 | [conc063 should exit(0) now |
|---|
| 3041 | Simon Marlow <simonmar@microsoft.com>**20070416100847] |
|---|
| 3042 | [TAG 2007-04-14 |
|---|
| 3043 | Ian Lynagh <igloo@earth.li>**20070414110652] |
|---|
| 3044 | [Set some esc tests to skip_unless_tag('esc') |
|---|
| 3045 | Ian Lynagh <igloo@earth.li>**20070413234046] |
|---|
| 3046 | [Allow tests to be skipped based on whether or not the compiler has a tag |
|---|
| 3047 | Ian Lynagh <igloo@earth.li>**20070413233859 |
|---|
| 3048 | When working on a new foo extension, you can now put your tests in the |
|---|
| 3049 | testsuite, set ProjectTags=-foo in mk/build.mk and skip_unless_tag('foo') |
|---|
| 3050 | in the tests. |
|---|
| 3051 | ] |
|---|
| 3052 | [break1 and break4 are broken due to trac #1275 |
|---|
| 3053 | Ian Lynagh <igloo@earth.li>**20070413213209] |
|---|
| 3054 | [add one more example |
|---|
| 3055 | nx200@cam.ac.uk**20070413172149] |
|---|
| 3056 | [added a few more examples |
|---|
| 3057 | nx200@cam.ac.uk**20070413164522] |
|---|
| 3058 | [Except some output changes |
|---|
| 3059 | Ian Lynagh <igloo@earth.li>**20070413183008] |
|---|
| 3060 | [Give an ASCII representation of the PPM output |
|---|
| 3061 | Ian Lynagh <igloo@earth.li>**20070408180814 |
|---|
| 3062 | We will need to do some sort of similarity test to cope with FP differences, |
|---|
| 3063 | but this will at least let us see what differences we need to accommodate. |
|---|
| 3064 | ] |
|---|
| 3065 | [Give more output while running conc068 |
|---|
| 3066 | Ian Lynagh <igloo@earth.li>**20070413180859] |
|---|
| 3067 | [Print stdout/stderr when we get a bad result |
|---|
| 3068 | Ian Lynagh <igloo@earth.li>**20070413180412] |
|---|
| 3069 | [Add tests for OPTIONS pragmas applying to the wrong files |
|---|
| 3070 | Ian Lynagh <igloo@earth.li>**20070411222135] |
|---|
| 3071 | [added TestList TestImport |
|---|
| 3072 | nx200@cam.ac.uk**20070405173814] |
|---|
| 3073 | [More ppr tests |
|---|
| 3074 | Ian Lynagh <igloo@earth.li>**20070407122412 |
|---|
| 3075 | The name +_0 is a bit dubious. |
|---|
| 3076 | ] |
|---|
| 3077 | [Increase the FP fudge factor (0.000001 -> 0.00001) |
|---|
| 3078 | Ian Lynagh <igloo@earth.li>**20070407113910] |
|---|
| 3079 | [Calibrate == calibrate on Windows... |
|---|
| 3080 | Ian Lynagh <igloo@earth.li>**20070406001033] |
|---|
| 3081 | [Use $(PYTHON) to run calibrate, rather than relying on it finding python itself |
|---|
| 3082 | Ian Lynagh <igloo@earth.li>**20070405193027] |
|---|
| 3083 | [Avoid FP differences with cholewo-eval |
|---|
| 3084 | Ian Lynagh <igloo@earth.li>**20070405153241] |
|---|
| 3085 | [Remove redundant Main.hs (there's a Main.lhs too) |
|---|
| 3086 | Ian Lynagh <igloo@earth.li>**20070405151602] |
|---|
| 3087 | [barton-mangler-bug shouldn't have FP difference problems any more |
|---|
| 3088 | Ian Lynagh <igloo@earth.li>**20070405144929] |
|---|
| 3089 | [Check float values are within a small tolerance inside barton-mangler |
|---|
| 3090 | Ian Lynagh <igloo@earth.li>**20070405142508 |
|---|
| 3091 | Saves the test from failing due to small FP differences. |
|---|
| 3092 | ] |
|---|
| 3093 | [Calibrate the testsuite timeout if a value of -1 is given |
|---|
| 3094 | Ian Lynagh <igloo@earth.li>**20070405133331] |
|---|
| 3095 | [Add a test that checks pretty-printed TH output looks right |
|---|
| 3096 | Ian Lynagh <igloo@earth.li>**20070405114005] |
|---|
| 3097 | [MERGE: Another attempt to make mod{144,146,158,160,165} generate consistent output |
|---|
| 3098 | Simon Marlow <simonmar@microsoft.com>**20070404103634 |
|---|
| 3099 | On some platforms $MAKE == "gmake", so the error messages still didn't |
|---|
| 3100 | match. I made it so that these tests now don't fail in make, but the |
|---|
| 3101 | exit code from GHC is emitted to stderr so we can test it. |
|---|
| 3102 | ] |
|---|
| 3103 | [ghci015 should ignore output (see comment) |
|---|
| 3104 | Simon Marlow <simonmar@microsoft.com>**20070403112228] |
|---|
| 3105 | [Accept test output |
|---|
| 3106 | Ian Lynagh <igloo@earth.li>**20070401211751] |
|---|
| 3107 | [IsString and fromString are in Data.String now |
|---|
| 3108 | Ian Lynagh <igloo@earth.li>**20070401211027] |
|---|
| 3109 | [tc217/220/223 need mtl |
|---|
| 3110 | Ian Lynagh <igloo@earth.li>**20070401210909] |
|---|
| 3111 | [Remove generated file |
|---|
| 3112 | Ian Lynagh <igloo@earth.li>**20070401210528] |
|---|
| 3113 | [Update rnfail040 output |
|---|
| 3114 | Ian Lynagh <igloo@earth.li>**20070401210413] |
|---|
| 3115 | [Update output with new, friendlier error |
|---|
| 3116 | Ian Lynagh <igloo@earth.li>**20070401205626] |
|---|
| 3117 | [Consistent output for tests |
|---|
| 3118 | Ian Lynagh <igloo@earth.li>**20070401205455] |
|---|
| 3119 | [Add some -v0s to cabal01; cabal still isn't being quiet enough, though |
|---|
| 3120 | Ian Lynagh <igloo@earth.li>**20070401203313] |
|---|
| 3121 | [Accept output |
|---|
| 3122 | Ian Lynagh <igloo@earth.li>**20070401202323] |
|---|
| 3123 | [Check stderr output before stdout output |
|---|
| 3124 | Ian Lynagh <igloo@earth.li>**20070401202156] |
|---|
| 3125 | [On failure, diff the normalised test outputs |
|---|
| 3126 | Ian Lynagh <igloo@earth.li>**20070401202024] |
|---|
| 3127 | [Time how long is spent on each .T file |
|---|
| 3128 | Ian Lynagh <igloo@earth.li>**20070331115228] |
|---|
| 3129 | [Make our own pwd, so we don't get confused by paths on cygwin |
|---|
| 3130 | Ian Lynagh <igloo@earth.li>**20070330184246] |
|---|
| 3131 | [Update test output |
|---|
| 3132 | Ian Lynagh <igloo@earth.li>**20070401190122] |
|---|
| 3133 | [Test for RULES type-matching |
|---|
| 3134 | simonpj@microsoft.com**20070330140952] |
|---|
| 3135 | [There is no opt way any more |
|---|
| 3136 | simonpj@microsoft.com**20070330140914 |
|---|
| 3137 | |
|---|
| 3138 | Use optc, optasm instead. |
|---|
| 3139 | |
|---|
| 3140 | ] |
|---|
| 3141 | [Add rnfail047, test for trac #924 |
|---|
| 3142 | Ian Lynagh <igloo@earth.li>**20070331123429] |
|---|
| 3143 | [Use unified, rather than context, diffs |
|---|
| 3144 | Ian Lynagh <igloo@earth.li>**20070330134203] |
|---|
| 3145 | [added more examples |
|---|
| 3146 | nx200@cam.ac.uk**20070327135214] |
|---|
| 3147 | [add test for #1219 |
|---|
| 3148 | Simon Marlow <simonmar@microsoft.com>**20070327103851] |
|---|
| 3149 | [TH_dataD1/1193 is no longer broken, but is meant to fail |
|---|
| 3150 | Ian Lynagh <igloo@earth.li>**20070324003644] |
|---|
| 3151 | [Test for Trac #1031 |
|---|
| 3152 | simonpj@microsoft.com**20070316151633] |
|---|
| 3153 | [Add test for Trac #1221 |
|---|
| 3154 | simonpj@microsoft.com**20070314122854] |
|---|
| 3155 | [Add another renamer test nhc98 used to fail |
|---|
| 3156 | Ian Lynagh <igloo@earth.li>**20070315001153] |
|---|
| 3157 | [Another renamer test that nhc98 used to fail on |
|---|
| 3158 | Ian Lynagh <igloo@earth.li>**20070314190837] |
|---|
| 3159 | [Add a renamer test (nhc98 used to fail it) |
|---|
| 3160 | Ian Lynagh <igloo@earth.li>**20070314185736] |
|---|
| 3161 | [Fix gadt23 test |
|---|
| 3162 | Ian Lynagh <igloo@earth.li>**20070311214714] |
|---|
| 3163 | [Add a test gadt23 from Christophe Poucet |
|---|
| 3164 | Ian Lynagh <igloo@earth.li>**20070311195336] |
|---|
| 3165 | [Don't hide the Makefile commands |
|---|
| 3166 | Ian Lynagh <igloo@earth.li>**20070311195207 |
|---|
| 3167 | The testsuite uses -s to hide them, and this way we can see what's |
|---|
| 3168 | happening when running make by hand. |
|---|
| 3169 | ] |
|---|
| 3170 | [added contract synonym test case again |
|---|
| 3171 | nx200@cam.ac.uk**20070309173451] |
|---|
| 3172 | [added contract synonym test case |
|---|
| 3173 | nx200@cam.ac.uk**20070309172201] |
|---|
| 3174 | [on Windows, use the .bat versions of the inplace scripts |
|---|
| 3175 | Simon Marlow <simonmar@microsoft.com>**20070308131540 |
|---|
| 3176 | This will help the Cabal tests to work (although there are still more |
|---|
| 3177 | issues to fix). |
|---|
| 3178 | ] |
|---|
| 3179 | [add test for #986 |
|---|
| 3180 | Simon Marlow <simonmar@microsoft.com>**20070306155450] |
|---|
| 3181 | [Add a test (TH_reifyDecl2) for trac #1199 |
|---|
| 3182 | Ian Lynagh <igloo@earth.li>**20070306130708] |
|---|
| 3183 | [Test ghci018 for ghci running splices multiple times (trac #1201) |
|---|
| 3184 | Ian Lynagh <igloo@earth.li>**20070306125155] |
|---|
| 3185 | [Don't hide what the Makefile is doing in prog006 |
|---|
| 3186 | Ian Lynagh <igloo@earth.li>**20070305195516] |
|---|
| 3187 | [newtype, prof001, prof002 require profiling |
|---|
| 3188 | Ian Lynagh <igloo@earth.li>**20070305184129] |
|---|
| 3189 | [ghci014 needs QuickCheck |
|---|
| 3190 | Ian Lynagh <igloo@earth.li>**20070305174521] |
|---|
| 3191 | [cabal02 is broken on Windows; trac #1196 |
|---|
| 3192 | Ian Lynagh <igloo@earth.li>**20070305171757] |
|---|
| 3193 | [cabal01 is broken on Windows; trac #1196 |
|---|
| 3194 | Ian Lynagh <igloo@earth.li>**20070305171411] |
|---|
| 3195 | [TH_spliceE5_prof needs profiling |
|---|
| 3196 | Ian Lynagh <igloo@earth.li>**20070305155703] |
|---|
| 3197 | [MERGED: Add req_profiling to the driver |
|---|
| 3198 | Ian Lynagh <igloo@earth.li>**20070305160444] |
|---|
| 3199 | [Posix tests moved to the unix package |
|---|
| 3200 | Simon Marlow <simonmar@microsoft.com>**20070305145343] |
|---|
| 3201 | [tree requires mtl |
|---|
| 3202 | Ian Lynagh <igloo@earth.li>**20070304215516] |
|---|
| 3203 | [tcfail126 requires mtl |
|---|
| 3204 | Ian Lynagh <igloo@earth.li>**20070304214547] |
|---|
| 3205 | [tc183 depends on mtl |
|---|
| 3206 | Ian Lynagh <igloo@earth.li>**20070304213805] |
|---|
| 3207 | [Print something to stderr when a timeout happens |
|---|
| 3208 | Ian Lynagh <igloo@earth.li>**20070304212955 |
|---|
| 3209 | Also fixes whitespace. |
|---|
| 3210 | ] |
|---|
| 3211 | [reify requires mtl |
|---|
| 3212 | Ian Lynagh <igloo@earth.li>**20070304210343] |
|---|
| 3213 | [pkg02_b requires network |
|---|
| 3214 | Ian Lynagh <igloo@earth.li>**20070304195629] |
|---|
| 3215 | [Decouple more tests from each other so CLEANUP mode works |
|---|
| 3216 | Ian Lynagh <igloo@earth.li>**20070304194218] |
|---|
| 3217 | [More tweaks |
|---|
| 3218 | Ian Lynagh <igloo@earth.li>**20070304193526] |
|---|
| 3219 | [Tweaks |
|---|
| 3220 | Ian Lynagh <igloo@earth.li>**20070304192457] |
|---|
| 3221 | [Decouple mod158 from mod157 so it works in CLEANUP mode |
|---|
| 3222 | Ian Lynagh <igloo@earth.li>**20070304192411] |
|---|
| 3223 | [Make mod144/mod146 work in CLEANUP mode |
|---|
| 3224 | Ian Lynagh <igloo@earth.li>**20070304191539] |
|---|
| 3225 | [mod133 needs mtl |
|---|
| 3226 | Ian Lynagh <igloo@earth.li>**20070304184609] |
|---|
| 3227 | [Make ghcpkg03 not depend on haskell-src |
|---|
| 3228 | Ian Lynagh <igloo@earth.li>**20070304174635] |
|---|
| 3229 | [Make ghcpkg01 not depend on haskell-src |
|---|
| 3230 | Ian Lynagh <igloo@earth.li>**20070304174511] |
|---|
| 3231 | [drvfail006 and drvfail008 need mtl |
|---|
| 3232 | Ian Lynagh <igloo@earth.li>**20070304172853] |
|---|
| 3233 | [Increase the stack size for conc030 as the profiling way was failing |
|---|
| 3234 | Ian Lynagh <igloo@earth.li>**20070304171748] |
|---|
| 3235 | [TH_dataD1 is currently broken |
|---|
| 3236 | Ian Lynagh <igloo@earth.li>**20070304165220] |
|---|
| 3237 | [Add pretty-print test |
|---|
| 3238 | simonpj@microsoft.com**20070301114342] |
|---|
| 3239 | [Add tests for -keep-s-file with and without --make |
|---|
| 3240 | Simon Marlow <simonmar@microsoft.com>**20070301095725 |
|---|
| 3241 | One of these fails with 6.6 |
|---|
| 3242 | ] |
|---|
| 3243 | [prof001 & prof002 are not broken now |
|---|
| 3244 | Simon Marlow <simonmar@microsoft.com>**20070228155129] |
|---|
| 3245 | [Windows: the .ps file is <prog>.exe.ps |
|---|
| 3246 | Simon Marlow <simonmar@microsoft.com>**20070228120254] |
|---|
| 3247 | [Add testcase from trac #1171 as cg059 |
|---|
| 3248 | Ian Lynagh <igloo@earth.li>**20070226232635] |
|---|
| 3249 | [Test for derivign |
|---|
| 3250 | simonpj@microsoft.com**20070221170740] |
|---|
| 3251 | [Tests for Trac #1154 |
|---|
| 3252 | simonpj@microsoft.com**20070221170642] |
|---|
| 3253 | [Add a test for :quit and breakpoints in code with exception handlers |
|---|
| 3254 | Pepe Iborra <mnislaih@gmail.com>**20070221161548] |
|---|
| 3255 | [remove network tests, they're moving to the network package |
|---|
| 3256 | Simon Marlow <simonmar@microsoft.com>**20070221142519] |
|---|
| 3257 | [Look for .T files in packages too |
|---|
| 3258 | Simon Marlow <simonmar@microsoft.com>**20070221140708 |
|---|
| 3259 | This means we can put package-specific tests in the repository for the |
|---|
| 3260 | package, rather than putting them in the testsuite. There should be a |
|---|
| 3261 | .T file to go with the tests, in the same way as for other tests in |
|---|
| 3262 | the testsuite (but this could be in addition to a standalone test |
|---|
| 3263 | driver that works with Cabal's 'setup test'). |
|---|
| 3264 | ] |
|---|
| 3265 | [temp: omit conc063 on Windows to avoid hanging the build |
|---|
| 3266 | Simon Marlow <simonmar@microsoft.com>**20070221091925] |
|---|
| 3267 | [make this test deterministic on a multiprocessor |
|---|
| 3268 | Simon Marlow <simonmar@microsoft.com>**20070220142305] |
|---|
| 3269 | [conc058 is not an expected failure any more on Windows |
|---|
| 3270 | Simon Marlow <simonmar@microsoft.com>**20070220140410] |
|---|
| 3271 | [use HsInt64 instead of int64_t, fixes this test on Windows (and is more correct) |
|---|
| 3272 | Simon Marlow <simonmar@microsoft.com>**20070220140137] |
|---|
| 3273 | [Test for Trac #1128 |
|---|
| 3274 | simonpj@microsoft.com**20070220174634] |
|---|
| 3275 | [Add test for Trac #1153 |
|---|
| 3276 | simonpj@microsoft.com**20070219175015] |
|---|
| 3277 | [minor change |
|---|
| 3278 | nx200@cam.ac.uk**20070220165110] |
|---|
| 3279 | [modified all.T |
|---|
| 3280 | nx200@cam.ac.uk**20070220153016] |
|---|
| 3281 | [added new tests to esc |
|---|
| 3282 | nx200@cam.a.cuk[3~[Dd**20070220151847] |
|---|
| 3283 | [add Windows output |
|---|
| 3284 | Simon Marlow <simonmar@microsoft.com>**20070220095533] |
|---|
| 3285 | [we should really exit(0) at the end of main() |
|---|
| 3286 | Simon Marlow <simonmar@microsoft.com>**20070220095402] |
|---|
| 3287 | [make this test slightly more robust (fix occasional failure with threaded2) |
|---|
| 3288 | Simon Marlow <simonmar@microsoft.com>**20070220093206] |
|---|
| 3289 | [rename GHC_PKG -> LOCAL_GHC_PKG to avoid clash with mk/test.mk |
|---|
| 3290 | Simon Marlow <simonmar@microsoft.com>**20070220092011] |
|---|
| 3291 | [Add test for type refinement with :print in GHCi |
|---|
| 3292 | Pepe Iborra <mnislaih@gmail.com>**20070218200426] |
|---|
| 3293 | [Update test dynbk001 due to new functionality in :break add |
|---|
| 3294 | Pepe Iborra <mnislaih@gmail.com>**20070216202112] |
|---|
| 3295 | [Accept output |
|---|
| 3296 | Pepe Iborra <mnislaih@gmail.com>**20070216201850] |
|---|
| 3297 | [accept output |
|---|
| 3298 | Simon Marlow <simonmar@microsoft.com>**20070215093749] |
|---|
| 3299 | [only do win32002 on Windows |
|---|
| 3300 | Simon Marlow <simonmar@microsoft.com>**20070215092806 |
|---|
| 3301 | |
|---|
| 3302 | ] |
|---|
| 3303 | [add test for bug #1010 |
|---|
| 3304 | Simon Marlow <simonmar@microsoft.com>**20070214122124] |
|---|
| 3305 | [update way names (fix breakage in previous patch to this file) |
|---|
| 3306 | Simon Marlow <simonmar@microsoft.com>**20070209123135] |
|---|
| 3307 | [Accept output |
|---|
| 3308 | Pepe Iborra <mnislaih@gmail.com>**20070206191610] |
|---|
| 3309 | [Add tests for impredicativity |
|---|
| 3310 | simonpj@microsoft.com**20070206174555] |
|---|
| 3311 | [Add test for Trac #1128 |
|---|
| 3312 | simonpj@microsoft.com**20070206165846] |
|---|
| 3313 | [Expect tests to fail if we don't have libraries that they use |
|---|
| 3314 | Ian Lynagh <igloo@earth.li>**20070206142600] |
|---|
| 3315 | [Option to skip ways when running the testsuite |
|---|
| 3316 | Ian Lynagh <igloo@earth.li>**20070206012212] |
|---|
| 3317 | [Add tests for the Haddock extension |
|---|
| 3318 | davve@dtek.chalmers.se**20070203171220] |
|---|
| 3319 | [Don't put double-quotes around the command when passing it to timeout |
|---|
| 3320 | Simon Marlow <simonmar@microsoft.com>**20070202170026 |
|---|
| 3321 | Fixes the testsuite on Cygwin/MSYS using Cygwin Python. I hope it |
|---|
| 3322 | hasn't broken it using the native Python... if it has, we'll need to |
|---|
| 3323 | revisit. I can't see a good reason for the quotes, anyway. |
|---|
| 3324 | |
|---|
| 3325 | |
|---|
| 3326 | ] |
|---|
| 3327 | [Accept output |
|---|
| 3328 | Pepe Iborra <mnislaih@gmail.com>**20070202113202] |
|---|
| 3329 | [Add a test from #418 |
|---|
| 3330 | Ian Lynagh <igloo@earth.li>**20070131134818] |
|---|
| 3331 | [Ignore output when told to in the ghci way |
|---|
| 3332 | Ian Lynagh <igloo@earth.li>**20070131134800] |
|---|
| 3333 | [Test for debugging code with unlifted values around |
|---|
| 3334 | Pepe Iborra <mnislaih@gmail.com>**20070131104727] |
|---|
| 3335 | [Add test for infix type constructor |
|---|
| 3336 | simonpj@microsoft.com**20070130161053] |
|---|
| 3337 | [add test for bug #036 |
|---|
| 3338 | Simon Marlow <simonmar@microsoft.com>**20070130101059] |
|---|
| 3339 | [accept output |
|---|
| 3340 | Simon Marlow <simonmar@microsoft.com>**20070130100659] |
|---|
| 3341 | [add a test for #896 |
|---|
| 3342 | Simon Marlow <simonmar@microsoft.com>**20070129125049] |
|---|
| 3343 | [Add a hugs import bug to the testsuite |
|---|
| 3344 | Ian Lynagh <igloo@earth.li>**20070128220946 |
|---|
| 3345 | From http://www.haskell.org/pipermail/hugs-bugs/2007-January/001686.html |
|---|
| 3346 | ] |
|---|
| 3347 | [Add a test for trac #1012: Problems with TH and recursive module imports |
|---|
| 3348 | Ian Lynagh <igloo@earth.li>**20070124172850] |
|---|
| 3349 | [Check flags in OPTIONS_GHC pragma only apply to the module they're in |
|---|
| 3350 | Ian Lynagh <igloo@earth.li>**20070123143755] |
|---|
| 3351 | [now that -O implies -fasm, not -fvia-C, we must explicitly test -fvia-C |
|---|
| 3352 | Simon Marlow <simonmar@microsoft.com>**20070123115104] |
|---|
| 3353 | [Add the overloaded string test case to the list. |
|---|
| 3354 | lennart@augustsson.net**20070120174619] |
|---|
| 3355 | [Add a test case for overloaded strings. |
|---|
| 3356 | lennart@augustsson.net**20070120163645] |
|---|
| 3357 | [Remove an obsolete test |
|---|
| 3358 | Pepe Iborra <mnislaih@gmail.com>**20070120160816 |
|---|
| 3359 | |
|---|
| 3360 | Breakpoint coalescing is disabled for now |
|---|
| 3361 | ] |
|---|
| 3362 | [Accept output |
|---|
| 3363 | Pepe Iborra <mnislaih@gmail.com>**20070119112219] |
|---|
| 3364 | [fixes to the ignore-output patch |
|---|
| 3365 | Simon Marlow <simonmar@microsoft.com>**20070116093510] |
|---|
| 3366 | [Remove unused import |
|---|
| 3367 | Ian Lynagh <igloo@earth.li>**20070115142215] |
|---|
| 3368 | [Add a test for trac #1042 |
|---|
| 3369 | Ian Lynagh <igloo@earth.li>**20070115141941] |
|---|
| 3370 | [Add test for Trac #1092 |
|---|
| 3371 | simonpj@microsoft.com**20070113220518] |
|---|
| 3372 | [Test for tabs warning |
|---|
| 3373 | Ian Lynagh <igloo@earth.li>**20070112164823] |
|---|
| 3374 | [Add a test for associated types and interface files |
|---|
| 3375 | simonpj@microsoft.com**20070111084226] |
|---|
| 3376 | [Add another GADT test |
|---|
| 3377 | simonpj@microsoft.com**20070109134628] |
|---|
| 3378 | [Add GADT terminating-lambda test (due to Jim Apple) |
|---|
| 3379 | simonpj@microsoft.com**20070108121107] |
|---|
| 3380 | [oops, fix bogosity in "ignore_output should be a test option" |
|---|
| 3381 | Simon Marlow <simonmar@microsoft.com>**20070108141423] |
|---|
| 3382 | [tests for #1047 |
|---|
| 3383 | Simon Marlow <simonmar@microsoft.com>**20070105135621] |
|---|
| 3384 | [ignore_output should be a test option |
|---|
| 3385 | Simon Marlow <simonmar@microsoft.com>**20070105135600] |
|---|
| 3386 | [add test for #1067 |
|---|
| 3387 | Simon Marlow <simonmar@microsoft.com>**20070105123546] |
|---|
| 3388 | [indexed types, should_fail: added missing .stderrs and adapted to new error messages |
|---|
| 3389 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070105011706] |
|---|
| 3390 | [indexed types: fixed expected fails for should_compile |
|---|
| 3391 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070105010317] |
|---|
| 3392 | [indexed types: extend Deriving to cover standalone derive |
|---|
| 3393 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20070104013049] |
|---|
| 3394 | [Add a fundep test, due to Yitzchak Gale |
|---|
| 3395 | simonpj@microsoft.com**20070103160336] |
|---|
| 3396 | [Add test for floating strict bindings |
|---|
| 3397 | simonpj@microsoft.com**20070103150833] |
|---|
| 3398 | [Fixed TH problem |
|---|
| 3399 | simonpj@microsoft.com**20070103121341] |
|---|
| 3400 | [Add more GADT tests, this time concerning contexts in data constructors |
|---|
| 3401 | simonpj@microsoft.com**20070103113657] |
|---|
| 3402 | [No pattern matching on GADTs except if type is rigid |
|---|
| 3403 | simonpj@microsoft.com**20070103101715 |
|---|
| 3404 | |
|---|
| 3405 | GHC currnently will only pattern-match on a GADT if the scrutinee type |
|---|
| 3406 | is rigid. It's kind-of possible to mactch a wobbly scrutinee if all |
|---|
| 3407 | the case alternatives can be made compatible, but that seems a rare case. |
|---|
| 3408 | |
|---|
| 3409 | So for now, I'm just making it illegal. |
|---|
| 3410 | |
|---|
| 3411 | ] |
|---|
| 3412 | [More test-suite updates |
|---|
| 3413 | simonpj@microsoft.com**20070103095506] |
|---|
| 3414 | [Fix sundry test failures (some of Trac #1054) |
|---|
| 3415 | simonpj@microsoft.com**20070103094207] |
|---|
| 3416 | [Update expected output |
|---|
| 3417 | simonpj@microsoft.com**20070102162011] |
|---|
| 3418 | [Add stand-alone deriving test |
|---|
| 3419 | simonpj@microsoft.com**20070102161944] |
|---|
| 3420 | [Add test for deriving Typeable |
|---|
| 3421 | simonpj@microsoft.com**20070102151607] |
|---|
| 3422 | [Add test for trac #1051 |
|---|
| 3423 | Ian Lynagh <igloo@earth.li>**20061224125949] |
|---|
| 3424 | [Add test TH_dataD1 for trac #1065 |
|---|
| 3425 | Ian Lynagh <igloo@earth.li>**20061223172536] |
|---|
| 3426 | [Add a test for returning Int64s through the FFI |
|---|
| 3427 | Ian Lynagh <igloo@earth.li>**20061222141536] |
|---|
| 3428 | [Fix conc063 |
|---|
| 3429 | tharris@microsoft.com**20061221151529] |
|---|
| 3430 | [Add test for trac #455 |
|---|
| 3431 | Ian Lynagh <igloo@earth.li>**20061221024356] |
|---|
| 3432 | [fail -> broken |
|---|
| 3433 | Ian Lynagh <igloo@earth.li>**20061219235527] |
|---|
| 3434 | [fail -> broken |
|---|
| 3435 | Ian Lynagh <igloo@earth.li>**20061219234644] |
|---|
| 3436 | [whitespace change only |
|---|
| 3437 | Ian Lynagh <igloo@earth.li>**20061219231544] |
|---|
| 3438 | [fail -> broken |
|---|
| 3439 | Ian Lynagh <igloo@earth.li>**20061219231503] |
|---|
| 3440 | [fail -> broken |
|---|
| 3441 | Ian Lynagh <igloo@earth.li>**20061219215850] |
|---|
| 3442 | [indexed type: deriving indexed newtypes |
|---|
| 3443 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20061219212552] |
|---|
| 3444 | [fail -> broken |
|---|
| 3445 | Ian Lynagh <igloo@earth.li>**20061219203622] |
|---|
| 3446 | [Stop skipping tests that work |
|---|
| 3447 | Ian Lynagh <igloo@earth.li>**20061219195406] |
|---|
| 3448 | [Remove skip of ffi003 on alpha-dec-osf3 (no reason given) |
|---|
| 3449 | Ian Lynagh <igloo@earth.li>**20061216164552] |
|---|
| 3450 | [indexed types: deriving test |
|---|
| 3451 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20061218210544] |
|---|
| 3452 | [Update a readme file |
|---|
| 3453 | Pepe Iborra <mnislaih@gmail.com>**20061217004749] |
|---|
| 3454 | [Fix a ghci.debugger test |
|---|
| 3455 | Pepe Iborra <mnislaih@gmail.com>**20061217004617] |
|---|
| 3456 | [Go back to using $(PYTHON) rather than hardcoding python2.5 |
|---|
| 3457 | Ian Lynagh <igloo@earth.li>**20061216154727] |
|---|
| 3458 | [Fix mdo test |
|---|
| 3459 | pepeiborra@gmail.com**20061208175837] |
|---|
| 3460 | [Accept output |
|---|
| 3461 | pepeiborra@gmail.com**20061208174426] |
|---|
| 3462 | [Improved a test |
|---|
| 3463 | pepeiborra@gmail.com**20061208171701] |
|---|
| 3464 | [Added more tests with newtypes |
|---|
| 3465 | pepeiborra@gmail.com**20061208171620] |
|---|
| 3466 | [More tests for the closure viewer |
|---|
| 3467 | pepeiborra@gmail.com**20061201143348] |
|---|
| 3468 | [Accept output |
|---|
| 3469 | pepeiborra@gmail.com**20061130122221] |
|---|
| 3470 | [Test type reconstruction in presence of newtypes |
|---|
| 3471 | pepeiborra@gmail.com**20061130122145] |
|---|
| 3472 | [Accepted output |
|---|
| 3473 | pepeiborra@gmail.com**20061128222435] |
|---|
| 3474 | [accept output |
|---|
| 3475 | pepeiborra@gmail.com**20061121100425] |
|---|
| 3476 | [Advances in the test suite |
|---|
| 3477 | pepeiborra@gmail.com**20061117150137] |
|---|
| 3478 | [Some more tests for the ghci.debugger |
|---|
| 3479 | Pepe Iborra <mnislaih@gmail.com>**20060827115413] |
|---|
| 3480 | [GHCi.debugger tests |
|---|
| 3481 | Pepe Iborra <mnislaih@gmail.com>**20060824180602] |
|---|
| 3482 | [indexed types: adding missing files |
|---|
| 3483 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20061215160008] |
|---|
| 3484 | [cg057 broken: trac #948. Also fix whitespace. |
|---|
| 3485 | Ian Lynagh <igloo@earth.li>**20061215155212] |
|---|
| 3486 | [Add a composes function to the driver |
|---|
| 3487 | Ian Lynagh <igloo@earth.li>**20061215155106] |
|---|
| 3488 | [Mark tests in trac #1054 as broken |
|---|
| 3489 | Ian Lynagh <igloo@earth.li>**20061215130656] |
|---|
| 3490 | [Simple2 randomly passes or fails; mark broken so we know which bug it is |
|---|
| 3491 | Ian Lynagh <igloo@earth.li>**20061215121729] |
|---|
| 3492 | [tc215 is broken: trac #366 |
|---|
| 3493 | Ian Lynagh <igloo@earth.li>**20061215013527] |
|---|
| 3494 | [Accept output |
|---|
| 3495 | Ian Lynagh <igloo@earth.li>**20061215013411] |
|---|
| 3496 | [simplrun006 is broken: trac #149 |
|---|
| 3497 | Ian Lynagh <igloo@earth.li>**20061215013213] |
|---|
| 3498 | [read032 is broken: trac #314 |
|---|
| 3499 | Ian Lynagh <igloo@earth.li>**20061215013159] |
|---|
| 3500 | [prof001 and prof002 are broken (trac #249) |
|---|
| 3501 | Ian Lynagh <igloo@earth.li>**20061215011151] |
|---|
| 3502 | [More infrastructure for 'broken' |
|---|
| 3503 | Ian Lynagh <igloo@earth.li>**20061215011040] |
|---|
| 3504 | [Accept output |
|---|
| 3505 | Ian Lynagh <igloo@earth.li>**20061215005910] |
|---|
| 3506 | [mod174/mod175 are broken: trac bugs #414 and #437 |
|---|
| 3507 | Ian Lynagh <igloo@earth.li>**20061215005846] |
|---|
| 3508 | [Fix braino |
|---|
| 3509 | Ian Lynagh <igloo@earth.li>**20061215005024] |
|---|
| 3510 | [tc175 / trac #179 fixed |
|---|
| 3511 | Ian Lynagh <igloo@earth.li>**20061215004506] |
|---|
| 3512 | [ghci016 is broken: trac #552 |
|---|
| 3513 | Ian Lynagh <igloo@earth.li>**20061215004246] |
|---|
| 3514 | [Accept output; we now get info for both type and constructor |
|---|
| 3515 | Ian Lynagh <igloo@earth.li>**20061215003935] |
|---|
| 3516 | [Accept output |
|---|
| 3517 | Ian Lynagh <igloo@earth.li>**20061215003128] |
|---|
| 3518 | [ds060 and ds061 are broken: trac #322, #851 |
|---|
| 3519 | Ian Lynagh <igloo@earth.li>**20061215002315] |
|---|
| 3520 | [accept output |
|---|
| 3521 | Ian Lynagh <igloo@earth.li>**20061215002009] |
|---|
| 3522 | [countReaders001 is broken - trac #629 |
|---|
| 3523 | Ian Lynagh <igloo@earth.li>**20061215001419] |
|---|
| 3524 | [Set MAKEFLAGS= in recursive make call on make fast |
|---|
| 3525 | Ian Lynagh <igloo@earth.li>**20061215000533 |
|---|
| 3526 | base0 was failing because of the extra noise make was generating. |
|---|
| 3527 | ] |
|---|
| 3528 | [Accept output |
|---|
| 3529 | Ian Lynagh <igloo@earth.li>**20061214235120] |
|---|
| 3530 | [arith011 is broken on amd64 Linux; trac #1052 |
|---|
| 3531 | Ian Lynagh <igloo@earth.li>**20061214234903] |
|---|
| 3532 | [add 'broken' variant of expect_broken_if_platform |
|---|
| 3533 | Ian Lynagh <igloo@earth.li>**20061214234836] |
|---|
| 3534 | [Accept output |
|---|
| 3535 | Ian Lynagh <igloo@earth.li>**20061214183402] |
|---|
| 3536 | [Mark TH_recompile as broken |
|---|
| 3537 | Ian Lynagh <igloo@earth.li>**20061214183349] |
|---|
| 3538 | [Start ok 'broken' infrastructure |
|---|
| 3539 | Ian Lynagh <igloo@earth.li>**20061214183323] |
|---|
| 3540 | [testblockalloc: run the threaded way with -I0, so it doesn't try to GC |
|---|
| 3541 | Simon Marlow <simonmar@microsoft.com>**20061214155927] |
|---|
| 3542 | [add test for the block allocator |
|---|
| 3543 | Simon Marlow <simonmar@microsoft.com>**20061214155419] |
|---|
| 3544 | [add support for tests consisting of a C source file |
|---|
| 3545 | Simon Marlow <simonmar@microsoft.com>**20061214155406] |
|---|
| 3546 | [Accept output |
|---|
| 3547 | simonpj@microsoft.com**20061213164601] |
|---|
| 3548 | [You can now have an MVar with a polymorphic contents |
|---|
| 3549 | simonpj@microsoft.com**20061213164538] |
|---|
| 3550 | [Add tc222, tests for Trac 981 |
|---|
| 3551 | simonpj@microsoft.com**20061213164500] |
|---|
| 3552 | [Add kind-error test inspired by a message from David Roundy |
|---|
| 3553 | simonpj@microsoft.com**20061211163639] |
|---|
| 3554 | [Add test for Trac #1033 |
|---|
| 3555 | simonpj@microsoft.com**20061211162749] |
|---|
| 3556 | [Add bang-pattern test |
|---|
| 3557 | simonpj@microsoft.com**20061211161900 |
|---|
| 3558 | |
|---|
| 3559 | Fixes Trac #1041 |
|---|
| 3560 | |
|---|
| 3561 | ] |
|---|
| 3562 | [Check running ghci with -hide-package haskell98 works. Tests trac #1001. |
|---|
| 3563 | Ian Lynagh <igloo@earth.li>**20061209190118] |
|---|
| 3564 | [indexed types: type instance indexes my all be type variables |
|---|
| 3565 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20061207224216] |
|---|
| 3566 | [add test for #1013 |
|---|
| 3567 | Simon Marlow <simonmar@microsoft.com>**20061207151459] |
|---|
| 3568 | [indexed types: adapted two tests to omitted sigs in ATs |
|---|
| 3569 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20061206222005] |
|---|
| 3570 | [indexed types: kind sigs can be omitted from ATs |
|---|
| 3571 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20061206203025] |
|---|
| 3572 | [Accept output for tc040 |
|---|
| 3573 | simonpj@microsoft.com**20061129110642] |
|---|
| 3574 | [Add test for typechecking lazy pattern matching |
|---|
| 3575 | simonpj@microsoft.com**20061129104518] |
|---|
| 3576 | [Add test ThreadDelay001: check threadDelay sleeps as long as it is asked to |
|---|
| 3577 | Ian Lynagh <igloo@earth.li>**20061128204457] |
|---|
| 3578 | [Tests for implicit parameters, and for a specialisation bug |
|---|
| 3579 | simonpj@microsoft.com**20061124122028] |
|---|
| 3580 | [Remove control-Ms |
|---|
| 3581 | simonpj@microsoft.com**20061124102054] |
|---|
| 3582 | [Skip out lots of the middle numbers in cg058 as the test was taking too long |
|---|
| 3583 | Ian Lynagh <igloo@earth.li>**20061124001809 |
|---|
| 3584 | The test still shows up the problem in hugs. |
|---|
| 3585 | ] |
|---|
| 3586 | [Test that deriving Data does not get confused with z-encoding |
|---|
| 3587 | simonpj@microsoft.com**20061123084805] |
|---|
| 3588 | [Add tcfail171 |
|---|
| 3589 | simonpj@microsoft.com**20061122173629] |
|---|
| 3590 | [Tests for Trac #289 |
|---|
| 3591 | simonpj@microsoft.com**20061110150517] |
|---|
| 3592 | [Add two GADT tests for Trac #301, fixed by implication constraints |
|---|
| 3593 | simonpj@microsoft.com**20061110145707] |
|---|
| 3594 | [New GADT tests, looking at interaction with type classes |
|---|
| 3595 | simonpj@microsoft.com**20061110140407] |
|---|
| 3596 | [Accept output |
|---|
| 3597 | simonpj@microsoft.com**20061110140251] |
|---|
| 3598 | [Add the Faxen test for completeness of type inference |
|---|
| 3599 | simonpj@microsoft.com**20061110140209] |
|---|
| 3600 | [Two new typechecker tests that exploit implication constraints |
|---|
| 3601 | simonpj@microsoft.com**20061110135942] |
|---|
| 3602 | [Add 64-bit stdout for simplrun007 |
|---|
| 3603 | Ian Lynagh <igloo@earth.li>**20061120141304] |
|---|
| 3604 | [Add tests for bitshift PrelRules |
|---|
| 3605 | Samuel Bronson <naesten@gmail.com>**20061116142723] |
|---|
| 3606 | [getDirContents001 hp2ps testing fix |
|---|
| 3607 | Ravi Nanavati <ravi@bluespec.com>**20060928205710 |
|---|
| 3608 | |
|---|
| 3609 | This tweaks the getDirContents001 testcase to ignore the .ps and .aux files |
|---|
| 3610 | that might be generated by hp2ps if testing of hp2ps via GhostScript is |
|---|
| 3611 | enabled. Please include in the 6.6 branch as well as HEAD. |
|---|
| 3612 | |
|---|
| 3613 | ] |
|---|
| 3614 | [add tests for heap profiles and hp2ps |
|---|
| 3615 | ravi@bluespec.com**20060918210845] |
|---|
| 3616 | [Add test for trac #953: panic in ghci for lseek ffi import statement |
|---|
| 3617 | Ian Lynagh <igloo@earth.li>**20061112162606] |
|---|
| 3618 | [Remove "Arbitrary (Maybe a)" instances to track changes in QuickCheck |
|---|
| 3619 | Ian Lynagh <igloo@earth.li>**20061112141944] |
|---|
| 3620 | [Add tests for Data.List.intercalate (ticket #971) |
|---|
| 3621 | Josef Svenningsson <josef.svenningsson@gmail.com>**20061102122958] |
|---|
| 3622 | [test rotates larger than the wordsize |
|---|
| 3623 | Simon Marlow <simonmar@microsoft.com>**20061107094606] |
|---|
| 3624 | [Add test for unused imports |
|---|
| 3625 | simonpj@microsoft.com**20061106161323] |
|---|
| 3626 | [Added tests for Data.List.intercalate and split |
|---|
| 3627 | Josef Svenningsson <josef.svenningsson@gmail.com>*-20061022135817] |
|---|
| 3628 | [Add test for unused imports |
|---|
| 3629 | simonpj@microsoft.com**20061102121702] |
|---|
| 3630 | [Add test for Trac #963 |
|---|
| 3631 | simonpj@microsoft.com**20061101173907] |
|---|
| 3632 | [Add a simple coverage-condition test |
|---|
| 3633 | simonpj@microsoft.com**20061101123555] |
|---|
| 3634 | [Add test for Trac 958 |
|---|
| 3635 | simonpj@microsoft.com**20061101122052] |
|---|
| 3636 | [Added tests for Data.List.intercalate and split |
|---|
| 3637 | Josef Svenningsson <josef.svenningsson@gmail.com>**20061022135817] |
|---|
| 3638 | [removing .tix files before running tests |
|---|
| 3639 | andy@galois.com**20061025202427] |
|---|
| 3640 | [Adding a new way for hpc |
|---|
| 3641 | andy@galois.com**20061025201846] |
|---|
| 3642 | [indexed types: small tests covering important cases |
|---|
| 3643 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20061023005347] |
|---|
| 3644 | [indexed types: GMap tests |
|---|
| 3645 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20061022203334] |
|---|
| 3646 | [indexed types: import/export test |
|---|
| 3647 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20061022182045] |
|---|
| 3648 | [indexed types: multi-module overlap check |
|---|
| 3649 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20061022180131] |
|---|
| 3650 | [Partitioned indexed-types tests into fail/compile/run dirs |
|---|
| 3651 | Manuel M T Chakravarty <chak@cse.unsw.edu.au>**20061022174019] |
|---|
| 3652 | [Add test ds061 for trac #851 (incomplete pattern warnings wrong with n+k pats) |
|---|
| 3653 | Ian Lynagh <igloo@earth.li>**20061021153928] |
|---|
| 3654 | [Add test tc216 for trac #816 (fundep undecidable-instances typechecking loop) |
|---|
| 3655 | Ian Lynagh <igloo@earth.li>**20061021120628] |
|---|
| 3656 | [Add test gadt20 for trac #810 (GHC fails to find GADT instances) |
|---|
| 3657 | Ian Lynagh <igloo@earth.li>**20061021020142] |
|---|
| 3658 | [Add test getEnvironment01 for trac #781 (check getEnvironment doesn't break) |
|---|
| 3659 | Ian Lynagh <igloo@earth.li>**20061020215050] |
|---|
| 3660 | [Add test tcfail168 for trac #719 (error messages are too long sometimes) |
|---|
| 3661 | Ian Lynagh <igloo@earth.li>**20061020191818] |
|---|
| 3662 | [Add test countReaders001 for trac #629 (file locking doesn't count readers) |
|---|
| 3663 | Ian Lynagh <igloo@earth.li>**20061020165449] |
|---|
| 3664 | [Add test ghci016 for trac #552 (ghci doesn't handle defaults correctly). |
|---|
| 3665 | Ian Lynagh <igloo@earth.li>**20061020153239] |
|---|
| 3666 | [Add test TH_recompile for trac #481 (Recompilation check fails for TH) |
|---|
| 3667 | Ian Lynagh <igloo@earth.li>**20061020145617] |
|---|
| 3668 | [Add test mod175 for trac 437 (Recompilation check should include flags) |
|---|
| 3669 | Ian Lynagh <igloo@earth.li>**20061020140355] |
|---|
| 3670 | [Add test mod174 for trac #414 (GHC does not enforce that Main exports main) |
|---|
| 3671 | Ian Lynagh <igloo@earth.li>**20061020131224] |
|---|
| 3672 | [Tests for trac #366 (incomplete pattern warnings and GADTs) |
|---|
| 3673 | Ian Lynagh <igloo@earth.li>**20061019182440] |
|---|
| 3674 | [Add test ds060 for trac #322 (bogus overlapping patterns warnings) |
|---|
| 3675 | Ian Lynagh <igloo@earth.li>**20061019163244] |
|---|
| 3676 | [Update comments in test tcfail132 |
|---|
| 3677 | Ian Lynagh <igloo@earth.li>**20061019155000] |
|---|
| 3678 | [Add a test for trac #314 (#line pragmas not respected inside nested comments) |
|---|
| 3679 | Ian Lynagh <igloo@earth.li>**20061019154907] |
|---|
| 3680 | [Update module tests slightly |
|---|
| 3681 | simonpj@microsoft.com**20061018122727] |
|---|
| 3682 | [Test for Trac #940 |
|---|
| 3683 | simonpj@microsoft.com**20061018095608] |
|---|
| 3684 | [Add tests for trac#249 and #931 |
|---|
| 3685 | Ian Lynagh <igloo@earth.li>**20061013151233] |
|---|
| 3686 | [Add test for correct unlitting. Tests trac #210. |
|---|
| 3687 | Ian Lynagh <igloo@earth.li>**20061013131602] |
|---|
| 3688 | [Allow literate tests |
|---|
| 3689 | Ian Lynagh <igloo@earth.li>**20061013131542] |
|---|
| 3690 | [Update bug reference for test tc175 |
|---|
| 3691 | Ian Lynagh <igloo@earth.li>**20061013123021] |
|---|
| 3692 | [Test for #149 (missed CSE opportunity) |
|---|
| 3693 | Ian Lynagh <igloo@earth.li>**20061012200213] |
|---|
| 3694 | [Test for trac #921 |
|---|
| 3695 | Ian Lynagh <igloo@earth.li>**20061011135910] |
|---|
| 3696 | [Fix test base01 |
|---|
| 3697 | Ian Lynagh <igloo@earth.li>**20061010102524] |
|---|
| 3698 | [STM invariants |
|---|
| 3699 | tharris@microsoft.com**20061007123151] |
|---|
| 3700 | [Add a test for 'module M' in export lists |
|---|
| 3701 | simonpj@microsoft.com**20061006143248] |
|---|
| 3702 | [Test for scoped type variables |
|---|
| 3703 | simonpj@microsoft.com**20061005132851] |
|---|
| 3704 | [Test separate compilation with indexed types |
|---|
| 3705 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20061005081706] |
|---|
| 3706 | [Two new tricky deriving tests |
|---|
| 3707 | simonpj@microsoft.com**20061003082615] |
|---|
| 3708 | [Add test for Trac #919 |
|---|
| 3709 | simonpj@microsoft.com**20061003081555] |
|---|
| 3710 | [Need -fglasgow-exts for gadt18 |
|---|
| 3711 | Ian Lynagh <igloo@earth.li>**20060924171441] |
|---|
| 3712 | [Allow testsuite to run under MSYS/MinGW using native Python (not Cygwin Python). |
|---|
| 3713 | brianlsmith@gmail.com**20060917010602 |
|---|
| 3714 | This patch is based on a similar one "Enable timeout in Windows |
|---|
| 3715 | and don't require cygwin python" by Esa Ilari Vuokko. It seems |
|---|
| 3716 | like timeout is always built on Windows so I rearranged the logic |
|---|
| 3717 | there to make the code clearer, Esa's patch required the user to |
|---|
| 3718 | uncomment the MinGW-specific logic in order for it to work; this |
|---|
| 3719 | patch does not have the MinGW-specific logic commented out. |
|---|
| 3720 | |
|---|
| 3721 | I tested this on the trunk in Ubuntu 6.06 on i686 (VMWare). |
|---|
| 3722 | I tested this on the trunk and ghc-6.6 branch on Windows i686. |
|---|
| 3723 | |
|---|
| 3724 | ] |
|---|
| 3725 | [accept output |
|---|
| 3726 | Simon Marlow <simonmar@microsoft.com>**20060929101912] |
|---|
| 3727 | [add test for #906 |
|---|
| 3728 | Simon Marlow <simonmar@microsoft.com>**20060928145539] |
|---|
| 3729 | [add test for #830 |
|---|
| 3730 | Simon Marlow <simonmar@microsoft.com>**20060928145442] |
|---|
| 3731 | [Add a test for trac #867 |
|---|
| 3732 | Ian Lynagh <igloo@earth.li>**20060927225225] |
|---|
| 3733 | [A new GADT test, which killed FC temporarily |
|---|
| 3734 | simonpj@microsoft.com**20060927125644] |
|---|
| 3735 | [Test for problem with compiling the base package with --make |
|---|
| 3736 | Ian Lynagh <igloo@earth.li>**20060926205447] |
|---|
| 3737 | [Added drv020, a test for newtype deriving of multi-parameter type classes which currently makes HEAD panic. |
|---|
| 3738 | bjorn@bringert.net**20060924195626 |
|---|
| 3739 | It is called drv020 in order not to clash with some yet to be pushed test cases for stand-alone deriving. |
|---|
| 3740 | ] |
|---|
| 3741 | [Add another GADT test |
|---|
| 3742 | simonpj@microsoft.com**20060923080543] |
|---|
| 3743 | [Accept typechecker output |
|---|
| 3744 | simonpj@microsoft.com**20060923080424] |
|---|
| 3745 | [Add new sub-directory indexed-types to the GHC testsuite |
|---|
| 3746 | simonpj@microsoft.com**20060923080330] |
|---|
| 3747 | [Add test for Hugs #37 |
|---|
| 3748 | simonpj@microsoft.com**20060922175854] |
|---|
| 3749 | [Make it so that 'make boot' is optional in the testsuite |
|---|
| 3750 | Simon Marlow <simonmar@microsoft.com>**20060916075035 |
|---|
| 3751 | mk/wordsize.mk and timeout/timeout get built automatically if necessary. |
|---|
| 3752 | ] |
|---|
| 3753 | [add boot to the all target |
|---|
| 3754 | Simon Marlow <simonmar@microsoft.com>**20060916071047] |
|---|
| 3755 | [add 'make boot' to the instructions |
|---|
| 3756 | Simon Marlow <simonmar@microsoft.com>**20060916071026] |
|---|
| 3757 | [Add a test for impredicative polymorphism |
|---|
| 3758 | simonpj@microsoft.com**20060918011234] |
|---|
| 3759 | [Add test for Trac #900 |
|---|
| 3760 | simonpj@microsoft.com**20060917171358] |
|---|
| 3761 | [Tests for impredicative polymorphism |
|---|
| 3762 | simonpj@microsoft.com**20060917153347] |
|---|
| 3763 | [Add another type checker test |
|---|
| 3764 | simonpj@microsoft.com**20060917152456] |
|---|
| 3765 | [Add GADT test from Doaitse |
|---|
| 3766 | simonpj@microsoft.com**20060917152309] |
|---|
| 3767 | [Added test for ticket #902, deriving for GADTs which declare H98 types fails. |
|---|
| 3768 | bjorn@bringert.net**20060915223811] |
|---|
| 3769 | [Fix up tests for unboxed tuples |
|---|
| 3770 | simonpj@microsoft.com**20060908094824] |
|---|
| 3771 | [Accept output on sparc-sun-solaris2 |
|---|
| 3772 | Roman Leshchinskiy <rl@cse.unsw.edu.au>**20060907083310] |
|---|
| 3773 | [Add stdout for expfloat test |
|---|
| 3774 | Ian Lynagh <igloo@earth.li>**20060910150353] |
|---|
| 3775 | [Catch exceptions while cleaning rather than checking for existence first |
|---|
| 3776 | Ian Lynagh <igloo@earth.li>**20060910145957 |
|---|
| 3777 | As well as being generally a good idea, os.access('foo') seems to return |
|---|
| 3778 | true if foo.exe exists on Windows. |
|---|
| 3779 | ] |
|---|
| 3780 | [Add cleaning for .exe files |
|---|
| 3781 | Ian Lynagh <igloo@earth.li>**20060910144741] |
|---|
| 3782 | [Test expFloat# linking |
|---|
| 3783 | Ian Lynagh <igloo@earth.li>**20060910133339] |
|---|
| 3784 | [More cleaning tidyups |
|---|
| 3785 | Ian Lynagh <igloo@earth.li>**20060908215102] |
|---|
| 3786 | [Update the testsuite cleaning |
|---|
| 3787 | Ian Lynagh <igloo@earth.li>**20060908130210] |
|---|
| 3788 | [update bytestring tests |
|---|
| 3789 | Don Stewart <dons@cse.unsw.edu.au>**20060909111806] |
|---|
| 3790 | [Fix another use of result type signatures (this one was easy) |
|---|
| 3791 | simonpj@microsoft.com**20060908084257] |
|---|
| 3792 | [Alter source code of test, now that result type signatures do not bind type variables |
|---|
| 3793 | simonpj@microsoft.com**20060908083719] |
|---|
| 3794 | [Improved error locations |
|---|
| 3795 | simonpj@microsoft.com**20060908080302] |
|---|
| 3796 | [Add test for Trac 877 |
|---|
| 3797 | simonpj@microsoft.com**20060907141624] |
|---|
| 3798 | [Accept output |
|---|
| 3799 | simonpj@microsoft.com**20060907105531] |
|---|
| 3800 | [Use a python timeout for the testsuite when we don't have a threaded RTS |
|---|
| 3801 | Ian Lynagh <igloo@earth.li>**20060907113001] |
|---|
| 3802 | [Use Data.Map instead of Data.FiniteMap |
|---|
| 3803 | simonpj@microsoft.com**20060907105256] |
|---|
| 3804 | [More changes for scoped type variables |
|---|
| 3805 | simonpj@microsoft.com**20060907104106] |
|---|
| 3806 | [Revise tc103, in the light of the story for result type signatures |
|---|
| 3807 | simonpj@microsoft.com**20060907103227] |
|---|
| 3808 | [Accept output for ! kind |
|---|
| 3809 | simonpj@microsoft.com**20060907094039 |
|---|
| 3810 | |
|---|
| 3811 | I'm not entirely sure of this bang-kind stuff, but in so far as it works |
|---|
| 3812 | at all, this test is fine. I guess I should look at the bang-kind stuff |
|---|
| 3813 | again, as soon as the FC branch becomes the HEAD |
|---|
| 3814 | |
|---|
| 3815 | ] |
|---|
| 3816 | [Fix this test on a fast machine |
|---|
| 3817 | Simon Marlow <simonmar@microsoft.com>**20060907083932 |
|---|
| 3818 | The artificial loop wasn't running for long enough for a context |
|---|
| 3819 | switch to happen, so the finalizer wasn't getting to run early enough. |
|---|
| 3820 | ] |
|---|
| 3821 | [Tickle a bug in impredicative polymorphism |
|---|
| 3822 | simonpj@microsoft.com**20060907075656] |
|---|
| 3823 | [Update output |
|---|
| 3824 | simonpj@microsoft.com**20060907074820] |
|---|
| 3825 | [Accept output |
|---|
| 3826 | simonpj@microsoft.com**20060906211938 |
|---|
| 3827 | |
|---|
| 3828 | These error messages (to do with failure in higher-rank situations) |
|---|
| 3829 | are different, but probably no worse than before. |
|---|
| 3830 | |
|---|
| 3831 | ] |
|---|
| 3832 | [Add renamer test (qualified name in binding position) |
|---|
| 3833 | simonpj@microsoft.com**20060906204517] |
|---|
| 3834 | [accept output |
|---|
| 3835 | Simon Marlow <simonmar@microsoft.com>**20060905090412] |
|---|
| 3836 | [Add test for dependency analysis in type checking |
|---|
| 3837 | simonpj@microsoft.com**20060905105449] |
|---|
| 3838 | [improve conc039 a little bit, and omit it for threaded1 |
|---|
| 3839 | Simon Marlow <simonmar@microsoft.com>**20060905082828] |
|---|
| 3840 | [omit conc036(threaded2) |
|---|
| 3841 | Simon Marlow <simonmar@microsoft.com>**20060904150015] |
|---|
| 3842 | [win-specific output not needed |
|---|
| 3843 | Simon Marlow <simonmar@microsoft.com>**20060901150449] |
|---|
| 3844 | [leave EXTRA_HC_OPTS for use on the command line |
|---|
| 3845 | Simon Marlow <simonmar@microsoft.com>**20060901135822] |
|---|
| 3846 | [fix for Windows |
|---|
| 3847 | Simon Marlow <simonmar@microsoft.com>**20060831132332] |
|---|
| 3848 | [add conc059 |
|---|
| 3849 | Simon Marlow <simonmar@microsoft.com>**20060831090349] |
|---|
| 3850 | [accept |
|---|
| 3851 | Simon Marlow <simonmar@microsoft.com>**20060831085057] |
|---|
| 3852 | [fix up tests for Windows |
|---|
| 3853 | Simon Marlow <simonmar@microsoft.com>**20060830144428 |
|---|
| 3854 | threadDelay is not interruptible on Windows with the threaded RTS. |
|---|
| 3855 | Work around it in conc014, conc015 and conc017, and add a new test for |
|---|
| 3856 | this specific failure, and mark it as an expected failure for the |
|---|
| 3857 | relevant cases. |
|---|
| 3858 | ] |
|---|
| 3859 | [adapt these to work on Windows |
|---|
| 3860 | Simon Marlow <simonmar@microsoft.com>**20060830121158] |
|---|
| 3861 | [add skip_if_platform |
|---|
| 3862 | Simon Marlow <simonmar@microsoft.com>**20060830121121] |
|---|
| 3863 | [skip conc053 on Windows (registerDelay not supported) |
|---|
| 3864 | Simon Marlow <simonmar@microsoft.com>**20060830120949] |
|---|
| 3865 | [USETHREADS=0 by default unless you set THREADS explicitly |
|---|
| 3866 | Simon Marlow <simonmar@microsoft.com>**20060830122306 |
|---|
| 3867 | This means the testsuite works by default even if you have Python 2.2, |
|---|
| 3868 | but will fail with Python 2.2 if you set THREADS. |
|---|
| 3869 | ] |
|---|
| 3870 | [Add a test for length not causing a stack overflow (from #876) |
|---|
| 3871 | Ian Lynagh <igloo@earth.li>**20060829224845] |
|---|
| 3872 | [Add list002 to tests - seems to have got lost during the testsuite revamp |
|---|
| 3873 | Ian Lynagh <igloo@earth.li>**20060829224345] |
|---|
| 3874 | [Allow threading to be completely disabled with USETHREADS=0 |
|---|
| 3875 | Ian Lynagh <igloo@earth.li>**20060829144159 |
|---|
| 3876 | I had to pull the global classes and instances out into their own module |
|---|
| 3877 | as there was a catch-22: testlib needed to know if threading was enabled, |
|---|
| 3878 | but we don't know that until we have gone through the argument, but going |
|---|
| 3879 | through the arguments required changing things like config in testlib. |
|---|
| 3880 | ] |
|---|
| 3881 | [Clean .hp files |
|---|
| 3882 | Ian Lynagh <igloo@earth.li>**20060829124729] |
|---|
| 3883 | [Allow the timeout to be given as a Makefile argument |
|---|
| 3884 | Ian Lynagh <igloo@earth.li>**20060829124359] |
|---|
| 3885 | [omit conc023 the non-threaded ways on Windows (see comment) |
|---|
| 3886 | Simon Marlow <simonmar@microsoft.com>*-20060829135821] |
|---|
| 3887 | [omit conc023 the non-threaded ways on Windows (see comment) |
|---|
| 3888 | Simon Marlow <simonmar@microsoft.com>**20060829135821] |
|---|
| 3889 | [ds052 not an expected failure any more |
|---|
| 3890 | Simon Marlow <simonmar@microsoft.com>**20060825150430] |
|---|
| 3891 | [update FFI syntax |
|---|
| 3892 | Simon Marlow <simonmar@microsoft.com>**20060825145839] |
|---|
| 3893 | [fix FFI syntax |
|---|
| 3894 | Simon Marlow <simonmar@microsoft.com>**20060825134227] |
|---|
| 3895 | [fix parse error |
|---|
| 3896 | Simon Marlow <simonmar@microsoft.com>**20060825133909] |
|---|
| 3897 | [cg025 needs regex-compat |
|---|
| 3898 | Simon Marlow <simonmar@microsoft.com>**20060825133349] |
|---|
| 3899 | [Don't use the threaded2 way when we don't support SMP |
|---|
| 3900 | Ian Lynagh <igloo@earth.li>**20060825004042] |
|---|
| 3901 | [fix old regex test, add two new ones |
|---|
| 3902 | Simon Marlow <simonmar@microsoft.com>**20060824140622] |
|---|
| 3903 | [Fix typo |
|---|
| 3904 | Esa Ilari Vuokko <ei@vuokko.info>**20060823202055] |
|---|
| 3905 | [update tests |
|---|
| 3906 | Don Stewart <dons@cse.unsw.edu.au>**20060823155147] |
|---|
| 3907 | [Driver: Add THREADS-support |
|---|
| 3908 | Esa Ilari Vuokko <ei@vuokko.info>**20060822213145] |
|---|
| 3909 | [Fix some THREADED-caused fails |
|---|
| 3910 | Esa Ilari Vuokko <ei@vuokko.info>**20060821230831] |
|---|
| 3911 | [Fix driver not to normalise output when using platform specific output files |
|---|
| 3912 | Esa Ilari Vuokko <ei@vuokko.info>**20060813124649] |
|---|
| 3913 | [accept output |
|---|
| 3914 | Simon Marlow <simonmar@microsoft.com>**20060823092224] |
|---|
| 3915 | [add test for Data/Fixed module, in libraries folder |
|---|
| 3916 | Ashley Yakeley <ashley@semantic.org>**20060823073948] |
|---|
| 3917 | [accept output |
|---|
| 3918 | Simon Marlow <simonmar@microsoft.com>**20060822102811] |
|---|
| 3919 | [accept output (improvements) |
|---|
| 3920 | Simon Marlow <simonmar@microsoft.com>**20060822102609] |
|---|
| 3921 | [Update output (remove "In the call...") |
|---|
| 3922 | simonpj@microsoft.com**20060818161412] |
|---|
| 3923 | [Update output |
|---|
| 3924 | simonpj@microsoft.com**20060818155640] |
|---|
| 3925 | [Add test for tagToEnum# |
|---|
| 3926 | simonpj@microsoft.com**20060816203023] |
|---|
| 3927 | [Two more tests |
|---|
| 3928 | simonpj@microsoft.com**20060815080606] |
|---|
| 3929 | [Update expected output |
|---|
| 3930 | simonpj@microsoft.com**20060814090354] |
|---|
| 3931 | [Add flag to test |
|---|
| 3932 | simonpj@microsoft.com**20060811142744] |
|---|
| 3933 | [More upated output |
|---|
| 3934 | simonpj@microsoft.com**20060811133858] |
|---|
| 3935 | [More updated output |
|---|
| 3936 | simonpj@microsoft.com**20060811133233] |
|---|
| 3937 | [Update test outpuot |
|---|
| 3938 | simonpj@microsoft.com**20060811131132] |
|---|
| 3939 | [Remove typecheck.testeq1.run.stdout |
|---|
| 3940 | simonpj@microsoft.com**20060811125001] |
|---|
| 3941 | [Comments in Makefile |
|---|
| 3942 | simonpj@microsoft.com**20060811123001] |
|---|
| 3943 | [This test now compiles without errors |
|---|
| 3944 | Simon Marlow <simonmar@microsoft.com>**20060811102354] |
|---|
| 3945 | [accept output |
|---|
| 3946 | Simon Marlow <simonmar@microsoft.com>**20060811101931] |
|---|
| 3947 | [base-1.0 ==> base-2.0 |
|---|
| 3948 | Simon Marlow <simonmar@microsoft.com>**20060811101925] |
|---|
| 3949 | [base-1.0 ==> base-2.0 |
|---|
| 3950 | Simon Marlow <simonmar@microsoft.com>**20060811101619] |
|---|
| 3951 | [accept output |
|---|
| 3952 | Simon Marlow <simonmar@microsoft.com>**20060811101428] |
|---|
| 3953 | [update FFI syntax |
|---|
| 3954 | Simon Marlow <simonmar@microsoft.com>**20060811100321] |
|---|
| 3955 | [expect fail for threaded2 way, fork isn't supported in SMP mode (yet) |
|---|
| 3956 | Simon Marlow <simonmar@microsoft.com>**20060811100315] |
|---|
| 3957 | [fix FFI syntax |
|---|
| 3958 | Simon Marlow <simonmar@microsoft.com>**20060811095918] |
|---|
| 3959 | [accept output |
|---|
| 3960 | Simon Marlow <simonmar@microsoft.com>**20060811095501] |
|---|
| 3961 | [Fix some Array.bounds calls to Array.getBounds |
|---|
| 3962 | Esa Ilari Vuokko <ei@vuokko.info>**20060809220653] |
|---|
| 3963 | [Add tests for incomplete-pattern warnings |
|---|
| 3964 | simonpj@microsoft.com**20060808144017] |
|---|
| 3965 | [Lazy patterns can't be unboxed (Trac 845) |
|---|
| 3966 | simonpj@microsoft.com**20060808135821] |
|---|
| 3967 | [Test error message (Trac 844) |
|---|
| 3968 | simonpj@microsoft.com**20060808133927] |
|---|
| 3969 | [Add tc206; edit a couple of others |
|---|
| 3970 | simonpj@microsoft.com**20060808091517] |
|---|
| 3971 | [Add test for overlapping pattern warnings for lazy patterns |
|---|
| 3972 | simonpj@microsoft.com**20060727154926] |
|---|
| 3973 | [Add a test for infix type constructors |
|---|
| 3974 | simonpj@microsoft.com**20060727154247] |
|---|
| 3975 | [Add test for unboxed fields in GADT record selectors |
|---|
| 3976 | kevind@bu.edu**20060802125121] |
|---|
| 3977 | [add new cabal test |
|---|
| 3978 | Simon Marlow <simonmar@microsoft.com>**20060727140657] |
|---|
| 3979 | [test fixes and new tests for package support |
|---|
| 3980 | Simon Marlow <simonmar@microsoft.com>**20060727140436] |
|---|
| 3981 | [accept output (improved error messages due to PrintUnqual changes) |
|---|
| 3982 | Simon Marlow <simonmar@microsoft.com>**20060727140124] |
|---|
| 3983 | [accept output |
|---|
| 3984 | Simon Marlow <simonmar@microsoft.com>**20060727134921] |
|---|
| 3985 | [add test for Ix bug |
|---|
| 3986 | Simon Marlow <simonmar@microsoft.com>**20060721100303] |
|---|
| 3987 | [document stage=2, and clean up a little. |
|---|
| 3988 | Simon Marlow <simonmar@microsoft.com>**20060710153547] |
|---|
| 3989 | [remove unused imports |
|---|
| 3990 | Simon Marlow <simonmar@microsoft.com>**20060616105302] |
|---|
| 3991 | [Test Trac bug #795 |
|---|
| 3992 | simonpj@microsoft.com**20060703151859] |
|---|
| 3993 | [encorporate rest of property checks for Data.ByteString |
|---|
| 3994 | Don Stewart <dons@cse.unsw.edu.au>**20060702093816] |
|---|
| 3995 | [Add regress tests for fusion rules. Makes sure they fire, and rewrite to correct result |
|---|
| 3996 | Don Stewart <dons@cse.unsw.edu.au>**20060702090703] |
|---|
| 3997 | [Add model-based tests for ByteString.Lazy<=>ByteString<=>Data.list |
|---|
| 3998 | Don Stewart <dons@cse.unsw.edu.au>**20060702055523] |
|---|
| 3999 | [Accept output change |
|---|
| 4000 | simonpj@microsoft.com**20060626111936] |
|---|
| 4001 | [Add test for infix function definitions |
|---|
| 4002 | simonpj@microsoft.com**20060519103259] |
|---|
| 4003 | [Test for pattern type sigs in do-notation |
|---|
| 4004 | simonpj@microsoft.com**20060504142058] |
|---|
| 4005 | [add test from #799 |
|---|
| 4006 | Simon Marlow <simonmar@microsoft.com>**20060623094712] |
|---|
| 4007 | [omit conc039 for threaded2 |
|---|
| 4008 | Simon Marlow <simonmar@microsoft.com>**20060622092716] |
|---|
| 4009 | [robustify the test a little |
|---|
| 4010 | Simon Marlow <simonmar@microsoft.com>**20060622092148] |
|---|
| 4011 | [omit conc036 for GHCi |
|---|
| 4012 | Simon Marlow <simonmar@microsoft.com>**20060622091811] |
|---|
| 4013 | [add a prof/TH test |
|---|
| 4014 | Simon Marlow <simonmar@microsoft.com>**20060622090109] |
|---|
| 4015 | [accept output |
|---|
| 4016 | Simon Marlow <simonmar@microsoft.com>**20060622085217] |
|---|
| 4017 | [re-enable various tests with -threaded that now work |
|---|
| 4018 | Simon Marlow <simonmar@microsoft.com>**20060614144922] |
|---|
| 4019 | [fix this test to work propertly with -threaded |
|---|
| 4020 | Simon Marlow <simonmar@microsoft.com>**20060614144256] |
|---|
| 4021 | [Fix this test to work properly with -threaded |
|---|
| 4022 | Simon Marlow <simonmar@microsoft.com>**20060614144219] |
|---|
| 4023 | [test for NCG bug |
|---|
| 4024 | Simon Marlow <simonmar@microsoft.com>**20060606112614] |
|---|
| 4025 | [accept output |
|---|
| 4026 | Simon Marlow <simonmar@microsoft.com>**20060601123936 |
|---|
| 4027 | NOTE: I made a slight tweak to Alex to improve the lexical error messages, |
|---|
| 4028 | to get correct output for these tests you need an updated Alex from darcs. |
|---|
| 4029 | ] |
|---|
| 4030 | [disable ffi016 for GHCi |
|---|
| 4031 | Simon Marlow <simonmar@microsoft.com>**20060530095146] |
|---|
| 4032 | [first attempt at being boring |
|---|
| 4033 | Ashley Yakeley <ashley@semantic.org>**20060526070327] |
|---|
| 4034 | [Update expected output |
|---|
| 4035 | Don Stewart <dons@cse.unsw.edu.au>**20060525071135] |
|---|
| 4036 | [update expected output. tougher replicate test. |
|---|
| 4037 | Don Stewart <dons@cse.unsw.edu.au>**20060517020540] |
|---|
| 4038 | [accept output |
|---|
| 4039 | Simon Marlow <simonmar@microsoft.com>**20060508073357] |
|---|
| 4040 | [More QC tests. Update output |
|---|
| 4041 | Don Stewart <dons@cse.unsw.edu.au>**20060507042341] |
|---|
| 4042 | [More QC properties. Update output |
|---|
| 4043 | Don Stewart <dons@cse.unsw.edu.au>**20060506043305] |
|---|
| 4044 | [Add test for newtypes in FFI |
|---|
| 4045 | simonpj@microsoft.com**20060426183636 |
|---|
| 4046 | |
|---|
| 4047 | The standard FFI says that newtypes are automatically unwrapped in |
|---|
| 4048 | argument and result types. This test checks that it also happens |
|---|
| 4049 | for newtype-wrapping of the IO monad itself, a recent change to |
|---|
| 4050 | GHC. |
|---|
| 4051 | |
|---|
| 4052 | ] |
|---|
| 4053 | [And add QC test for group/groupBy |
|---|
| 4054 | Don Stewart <dons@cse.unsw.edu.au>**20060501065658] |
|---|
| 4055 | [More QC properties, for fold{lr}1. Update expected output |
|---|
| 4056 | Don Stewart <dons@cse.unsw.edu.au>**20060430084252] |
|---|
| 4057 | [Import Data.ByteString regression tests |
|---|
| 4058 | Don Stewart <dons@cse.unsw.edu.au>**20060428122838] |
|---|
| 4059 | [avoid running out of stack |
|---|
| 4060 | Simon Marlow <simonmar@microsoft.com>**20060428083855] |
|---|
| 4061 | [test Bool arguments too |
|---|
| 4062 | Simon Marlow <simonmar@microsoft.com>**20060418144834] |
|---|
| 4063 | [Test for foralls to the right of => |
|---|
| 4064 | simonpj@microsoft.com**20060418125116] |
|---|
| 4065 | [Test for error recovery in TH |
|---|
| 4066 | simonpj@microsoft.com**20060414120213] |
|---|
| 4067 | [forgot to add this file |
|---|
| 4068 | Simon Marlow <simonmar@microsoft.com>**20060413080300] |
|---|
| 4069 | [Add a test for SpecConstr + GADTs |
|---|
| 4070 | simonpj@microsoft.com**20060412153402] |
|---|
| 4071 | [Memo-function test |
|---|
| 4072 | simonpj@microsoft.com**20060410164304 |
|---|
| 4073 | |
|---|
| 4074 | Checks that preInlineUnconditionally isn't to eager! |
|---|
| 4075 | (If it is, this test goes exponential.) |
|---|
| 4076 | |
|---|
| 4077 | ] |
|---|
| 4078 | [add a test for a division bug in the NCG |
|---|
| 4079 | Simon Marlow <simonmar@microsoft.com>**20060412144627] |
|---|
| 4080 | [Add test for newtype deriving (thanks to Ross) |
|---|
| 4081 | simonpj@microsoft.com**20060402215709] |
|---|
| 4082 | [update for new source tree layout |
|---|
| 4083 | Simon Marlow <simonmar@microsoft.com>**20060410091202] |
|---|
| 4084 | [add a test for a blackhole GC bug |
|---|
| 4085 | Simon Marlow <simonmar@microsoft.com>**20060407101628] |
|---|
| 4086 | [the "threaded" way was renamed to "threaded1"/"threaded2" |
|---|
| 4087 | Simon Marlow <simonmar@microsoft.com>**20060407101619] |
|---|
| 4088 | [Track the GHC source tree reorganisation |
|---|
| 4089 | Simon Marlow <simonmar@microsoft.com>**20060407041720] |
|---|
| 4090 | [omit asm ways for this test on x86 |
|---|
| 4091 | Simon Marlow <simonmar@microsoft.com>**20060407080546] |
|---|
| 4092 | [avoid running out of stack for non-optimised ways |
|---|
| 4093 | Simon Marlow <simonmar@microsoft.com>**20060407080032] |
|---|
| 4094 | [add test for ForeignPtrEnv |
|---|
| 4095 | Simon Marlow <simonmar@microsoft.com>**20060405160129] |
|---|
| 4096 | [omit ffi007 and ffi008 for GHCi (see comment for details) |
|---|
| 4097 | Simon Marlow <simonmar@microsoft.com>**20060405133421] |
|---|
| 4098 | [fix tests for Windows |
|---|
| 4099 | Simon Marlow <simonmar@microsoft.com>**20060404153133] |
|---|
| 4100 | [unnecessary mingw-specific output |
|---|
| 4101 | Simon Marlow <simonmar@microsoft.com>**20060404150047] |
|---|
| 4102 | [windows output |
|---|
| 4103 | Simon Marlow <simonmar@microsoft.com>**20060404145525] |
|---|
| 4104 | [crummy fix for Windows |
|---|
| 4105 | Simon Marlow <simonmar@microsoft.com>**20060404145128] |
|---|
| 4106 | [fix the expect_fail_if_windows macro |
|---|
| 4107 | Simon Marlow <simonmar@microsoft.com>**20060404144611] |
|---|
| 4108 | [Add scoped tyvar test |
|---|
| 4109 | simonpj@microsoft.com**20060327123134] |
|---|
| 4110 | [attempt to work around restrictions with fork() & pthreads |
|---|
| 4111 | Simon Marlow <simonmar@microsoft.com>**20060323134034 |
|---|
| 4112 | In the child process, call exec() directly instead of using |
|---|
| 4113 | System.Cmd.system, which involves another fork()/exec() and a |
|---|
| 4114 | non-blocking wait. The problem is that in a forked child of a |
|---|
| 4115 | threaded process, it isn't safe to do much except exec() according to |
|---|
| 4116 | POSIX. In fact calling pthread_create() in the child causes the |
|---|
| 4117 | pthread library to fail with an error on FreeBSD. |
|---|
| 4118 | ] |
|---|
| 4119 | [accept output (better error locations) |
|---|
| 4120 | Simon Marlow <simonmar@microsoft.com>**20060323102719] |
|---|
| 4121 | [fix to previous |
|---|
| 4122 | Simon Marlow <simonmar@microsoft.com>**20060323102523] |
|---|
| 4123 | [fcntl-FreeBSD |
|---|
| 4124 | stolz@i2.informatik.rwth-aachen.de**20060321165137 |
|---|
| 4125 | Expect failure of queryfdoption01 on FreeBSD (6/7): /dev/null |
|---|
| 4126 | can't be switched to non-blocking i/o, so fcntl() will throw an error. |
|---|
| 4127 | Unfortunately this went to the old CVS first. |
|---|
| 4128 | ] |
|---|
| 4129 | [fix for GHCi tests that raise exceptions or exit |
|---|
| 4130 | Simon Marlow <simonmar@microsoft.com>**20060320124648 |
|---|
| 4131 | We need to call GHC.TopHandler.runIOFastExit instead of |
|---|
| 4132 | GHC.TopHandler.runIO. Recent fixes to the shutdown code have meant |
|---|
| 4133 | that when a thread invokes shutdownHaskellAndExit(), other main |
|---|
| 4134 | threads get a chance to exit (as they should), but this means that we |
|---|
| 4135 | might have a race between the child thread trying to exit the program |
|---|
| 4136 | and the main thread doing the same. In the case of GHCi, if we're |
|---|
| 4137 | running an interpreted computation that needs to exit (as some tests |
|---|
| 4138 | do), then we really want this child thread to exit the program rather |
|---|
| 4139 | than the main thread. |
|---|
| 4140 | ] |
|---|
| 4141 | [sort the keys when outputting the summary |
|---|
| 4142 | Simon Marlow <simonmar@microsoft.com>**20060320114811] |
|---|
| 4143 | [fix a regex that was too slow |
|---|
| 4144 | Simon Marlow <simonmar@microsoft.com>**20060316163903] |
|---|
| 4145 | [ignore ".exe" in program output, for Windows |
|---|
| 4146 | Simon Marlow <simonmar@microsoft.com>**20060316155440] |
|---|
| 4147 | [fix for Win32 |
|---|
| 4148 | Simon Marlow <simonmar@microsoft.com>**20060316154734] |
|---|
| 4149 | [remove some dead code |
|---|
| 4150 | Simon Marlow <simonmar@microsoft.com>**20060315114645] |
|---|
| 4151 | [Tidy up the testsuite output by combinding failures for multiple ways |
|---|
| 4152 | Simon Marlow <simonmar@microsoft.com>**20060315112501 |
|---|
| 4153 | |
|---|
| 4154 | Before: |
|---|
| 4155 | tc056(normal) |
|---|
| 4156 | tc056(opt) |
|---|
| 4157 | tc056(optasm) |
|---|
| 4158 | tc056(prof) |
|---|
| 4159 | tc056(profasm) |
|---|
| 4160 | tc056(unreg) |
|---|
| 4161 | |
|---|
| 4162 | After: |
|---|
| 4163 | tc056(normal,opt,optasm,prof,profasm,unreg) |
|---|
| 4164 | ] |
|---|
| 4165 | [patch up this test again |
|---|
| 4166 | Simon Marlow <simonmar@microsoft.com>**20060314151844] |
|---|
| 4167 | [process003 doesn't work with GHCi, omit it |
|---|
| 4168 | Simon Marlow <simonmar@microsoft.com>**20060314151657] |
|---|
| 4169 | [fix clean target |
|---|
| 4170 | Simon Marlow <simonmar@microsoft.com>**20060314124525] |
|---|
| 4171 | [add test for #713 |
|---|
| 4172 | Simon Marlow <simonmar@microsoft.com>**20060314121232] |
|---|
| 4173 | [Require -fallow-undecidable-instances |
|---|
| 4174 | simonpj@microsoft.com**20060223141727] |
|---|
| 4175 | [Test for deprecated constructors |
|---|
| 4176 | simonpj@microsoft.com**20060223141701] |
|---|
| 4177 | [Update output |
|---|
| 4178 | simonpj@microsoft.com**20060223135107] |
|---|
| 4179 | [Update output and add -fallow-undecidable-instances where necesssary |
|---|
| 4180 | simonpj@microsoft.com**20060223133629] |
|---|
| 4181 | [Add -fallow-undecidable-instances to reflect more accurate termination test in fundeps |
|---|
| 4182 | simonpj@microsoft.com**20060223133113] |
|---|
| 4183 | [Remove dependence on haskell98 package in expected output |
|---|
| 4184 | simonpj@microsoft.com**20060223130208] |
|---|
| 4185 | [Accept output |
|---|
| 4186 | simonpj@microsoft.com**20060223125845] |
|---|
| 4187 | [Add expected output for rn049 |
|---|
| 4188 | simonpj@microsoft.com**20060223124018] |
|---|
| 4189 | [Accept (slightly mysterious) output formatting changes |
|---|
| 4190 | simonpj@microsoft.com**20060223123611] |
|---|
| 4191 | [Update output |
|---|
| 4192 | simonpj@microsoft.com**20060223123516] |
|---|
| 4193 | [Update output (TH no longer depends on haskell98 package) |
|---|
| 4194 | simonpj@microsoft.com**20060223123331] |
|---|
| 4195 | [Add a fundep loop test |
|---|
| 4196 | simonpj@microsoft.com**20060222101347] |
|---|
| 4197 | [add expected output for x86_64 |
|---|
| 4198 | Simon Marlow <simonmar@microsoft.com>**20060223121322] |
|---|
| 4199 | [accept output |
|---|
| 4200 | Simon Marlow <simonmar@microsoft.com>**20060210151137] |
|---|
| 4201 | [remove smp way, replace threaded with threaded1/threaded2 |
|---|
| 4202 | Simon Marlow <simonmar@microsoft.com>**20060210123325 |
|---|
| 4203 | |
|---|
| 4204 | threaded1 = -threaded -debug |
|---|
| 4205 | threaded2 = -O -threaded, and +RTS -N2 -RTS at runtime |
|---|
| 4206 | ] |
|---|
| 4207 | [Add test for bug 685 |
|---|
| 4208 | simonpj@microsoft.com**20060208160511] |
|---|
| 4209 | [Add test from Markus Lauer |
|---|
| 4210 | simonpj@microsoft.com**20060206084209] |
|---|
| 4211 | ["s" is in GhcRTSWays now |
|---|
| 4212 | Simon Marlow <simonmar@microsoft.com>**20060208150646] |
|---|
| 4213 | [allow setting stage=N variable to select compiler in the testsuite |
|---|
| 4214 | Simon Marlow <simonmar@microsoft.com>**20060208140219] |
|---|
| 4215 | [Eta expand gzip test to match new higher-rank-type story |
|---|
| 4216 | simonpj@microsoft.com**20060202131654] |
|---|
| 4217 | [Fix GADT tests |
|---|
| 4218 | simonpj@microsoft.com**20060202130236] |
|---|
| 4219 | [New GADT desugaring test |
|---|
| 4220 | simonpj@microsoft.com**20060202124603] |
|---|
| 4221 | [Remove package lang reqt |
|---|
| 4222 | simonpj@microsoft.com**20060202102030] |
|---|
| 4223 | [Update to track improvements in typechecker |
|---|
| 4224 | simonpj@microsoft.com**20060201171451] |
|---|
| 4225 | [Update to track new scoped-tyvar story |
|---|
| 4226 | simonpj@microsoft.com**20060201171415] |
|---|
| 4227 | [Eta expansion and scoped type variables in generic code |
|---|
| 4228 | simonpj@microsoft.com**20060201171238 |
|---|
| 4229 | |
|---|
| 4230 | The new story on higher-rank types requires a few functions to be |
|---|
| 4231 | eta-expanded. And the new scoped-type-variable story also forces |
|---|
| 4232 | a few changes. |
|---|
| 4233 | |
|---|
| 4234 | ] |
|---|
| 4235 | [Add CPR test |
|---|
| 4236 | simonpj@microsoft.com**20060131164801] |
|---|
| 4237 | [remove old docs |
|---|
| 4238 | Simon Marlow <simonmar@microsoft.com>**20060201163734] |
|---|
| 4239 | [add test for bug #661 |
|---|
| 4240 | Simon Marlow <simonmar@microsoft.com>**20060201130720] |
|---|
| 4241 | [fix recently-introduced breakage in 'make accept' |
|---|
| 4242 | Simon Marlow <simonmar@microsoft.com>**20060201115729] |
|---|
| 4243 | [Add a higher-kinded test |
|---|
| 4244 | simonpj@microsoft.com**20060131123016] |
|---|
| 4245 | [Add fundep test |
|---|
| 4246 | simonpj@microsoft.com**20060131115806] |
|---|
| 4247 | [Module import test |
|---|
| 4248 | simonpj@microsoft.com**20060131115404] |
|---|
| 4249 | [Wibble |
|---|
| 4250 | simonpj@microsoft.com**20060125140817] |
|---|
| 4251 | [Add test for bogus unusued-import message |
|---|
| 4252 | simonpj@microsoft.com**20060125090704] |
|---|
| 4253 | [[project @ 2006-01-19 09:47:11 by simonmar] |
|---|
| 4254 | simonmar**20060119094711 |
|---|
| 4255 | Test tryPutMVar on empty MVars too |
|---|
| 4256 | ] |
|---|
| 4257 | [[project @ 2006-01-18 16:31:10 by simonmar] |
|---|
| 4258 | simonmar**20060118163112 |
|---|
| 4259 | Add a fast version of the testsuite |
|---|
| 4260 | |
|---|
| 4261 | The idea is to have a way to run as much of the testsuite as possible |
|---|
| 4262 | in a short time, so that we'll run it more often (such as just before |
|---|
| 4263 | checking in a change, for example). 'make fast' tries for good |
|---|
| 4264 | coverage without using too many cycles. Currently it takes about 4 |
|---|
| 4265 | minutes on a fast machine with an optimised GHC build; I think this |
|---|
| 4266 | might still be a little on the slow side. |
|---|
| 4267 | |
|---|
| 4268 | When you say 'make fast' in testsuite/tests/ghc-regress, we run each |
|---|
| 4269 | test only one way, and all of the long-running tests are omitted. |
|---|
| 4270 | Also, to get the runtime down further, I arbitrarily omitted many of |
|---|
| 4271 | the should_run tests (because these tend to take a lot longer than |
|---|
| 4272 | should_compile or should_fail tests). I tried to keep a |
|---|
| 4273 | representative few in each category. |
|---|
| 4274 | ] |
|---|
| 4275 | [[project @ 2006-01-18 15:25:45 by simonpj] |
|---|
| 4276 | simonpj**20060118152545 |
|---|
| 4277 | Add test for data con in class sig |
|---|
| 4278 | ] |
|---|
| 4279 | [[project @ 2006-01-12 16:10:41 by simonmar] |
|---|
| 4280 | simonmar**20060112161041 |
|---|
| 4281 | Add test from ticket #488 |
|---|
| 4282 | ] |
|---|
| 4283 | [[project @ 2006-01-12 16:03:21 by simonmar] |
|---|
| 4284 | simonmar**20060112160321 |
|---|
| 4285 | add test from ticket #441 |
|---|
| 4286 | ] |
|---|
| 4287 | [[project @ 2006-01-10 14:39:50 by simonmar] |
|---|
| 4288 | simonmar**20060110143950 |
|---|
| 4289 | accept output |
|---|
| 4290 | ] |
|---|
| 4291 | [[project @ 2006-01-10 14:11:53 by simonmar] |
|---|
| 4292 | simonmar**20060110141153 |
|---|
| 4293 | comment update |
|---|
| 4294 | ] |
|---|
| 4295 | [[project @ 2006-01-10 14:11:24 by simonmar] |
|---|
| 4296 | simonmar**20060110141124 |
|---|
| 4297 | recode this file in UTF-8 from Latin-1 |
|---|
| 4298 | ] |
|---|
| 4299 | [[project @ 2006-01-10 13:41:48 by simonmar] |
|---|
| 4300 | simonmar**20060110134148 |
|---|
| 4301 | accept output (improved lexer error messages) |
|---|
| 4302 | ] |
|---|
| 4303 | [[project @ 2006-01-09 12:49:28 by simonmar] |
|---|
| 4304 | simonmar**20060109124928 |
|---|
| 4305 | Add test case that causes a core-lint failure (cut down from |
|---|
| 4306 | Encoding.hs in HEAD). |
|---|
| 4307 | ] |
|---|
| 4308 | [[project @ 2006-01-09 10:29:44 by simonmar] |
|---|
| 4309 | simonmar**20060109102944 |
|---|
| 4310 | add a cmm lint failure |
|---|
| 4311 | ] |
|---|
| 4312 | [[project @ 2006-01-09 10:27:33 by simonmar] |
|---|
| 4313 | simonmar**20060109102733 |
|---|
| 4314 | Add -dcmm-lint when compiling |
|---|
| 4315 | ] |
|---|
| 4316 | [[project @ 2006-01-06 16:34:56 by simonmar] |
|---|
| 4317 | simonmar**20060106163456 |
|---|
| 4318 | Unicode source tests |
|---|
| 4319 | ] |
|---|
| 4320 | [[project @ 2006-01-06 16:15:19 by simonpj] |
|---|
| 4321 | simonpj**20060106161519 |
|---|
| 4322 | Add another synonym-performance test (but comment it out of the test file; too slow!) |
|---|
| 4323 | ] |
|---|
| 4324 | [[project @ 2006-01-06 16:14:45 by simonpj] |
|---|
| 4325 | simonpj**20060106161445 |
|---|
| 4326 | Better type signature for higher-rank |
|---|
| 4327 | ] |
|---|
| 4328 | [[project @ 2006-01-06 16:12:42 by simonpj] |
|---|
| 4329 | simonpj**20060106161242 |
|---|
| 4330 | Add tests for boxy types |
|---|
| 4331 | ] |
|---|
| 4332 | [[project @ 2006-01-06 16:08:57 by simonpj] |
|---|
| 4333 | simonpj**20060106160857 |
|---|
| 4334 | Add GADT tests |
|---|
| 4335 | ] |
|---|
| 4336 | [[project @ 2006-01-06 16:03:25 by simonpj] |
|---|
| 4337 | simonpj**20060106160325 |
|---|
| 4338 | Cosmetic |
|---|
| 4339 | ] |
|---|
| 4340 | [[project @ 2006-01-05 13:08:14 by simonpj] |
|---|
| 4341 | simonpj**20060105130814 |
|---|
| 4342 | Add a nasty multiple-instantiation test |
|---|
| 4343 | ] |
|---|
| 4344 | [[project @ 2006-01-05 10:06:30 by simonpj] |
|---|
| 4345 | simonpj**20060105100630 |
|---|
| 4346 | Add test for newtype existential |
|---|
| 4347 | ] |
|---|
| 4348 | [[project @ 2006-01-05 09:16:28 by simonmar] |
|---|
| 4349 | simonmar**20060105091628 |
|---|
| 4350 | Add test for "scavenge_stack" bug fixed in rev 1.16 of Exception.cmm |
|---|
| 4351 | ] |
|---|
| 4352 | [[project @ 2006-01-04 11:50:44 by simonpj] |
|---|
| 4353 | simonpj**20060104115044 |
|---|
| 4354 | Add test for data con returning wrong type |
|---|
| 4355 | ] |
|---|
| 4356 | [[project @ 2006-01-02 19:36:50 by jpbernardy] |
|---|
| 4357 | jpbernardy**20060102193650 |
|---|
| 4358 | minor cleanups |
|---|
| 4359 | ] |
|---|
| 4360 | [[project @ 2006-01-01 21:46:31 by jpbernardy] |
|---|
| 4361 | jpbernardy**20060101214631 |
|---|
| 4362 | More tests for: |
|---|
| 4363 | * Sets |
|---|
| 4364 | * Non-structural equality |
|---|
| 4365 | * Left-Bias |
|---|
| 4366 | * Performance |
|---|
| 4367 | ] |
|---|
| 4368 | [[project @ 2005-12-26 19:54:32 by jpbernardy] |
|---|
| 4369 | jpbernardy**20051226195432 |
|---|
| 4370 | Infrastructure for testing Data structures. |
|---|
| 4371 | + some tests |
|---|
| 4372 | ] |
|---|
| 4373 | [[project @ 2005-12-19 09:47:49 by simonpj] |
|---|
| 4374 | simonpj**20051219094749 |
|---|
| 4375 | Add test for trailing parens in GADT signatures |
|---|
| 4376 | ] |
|---|
| 4377 | [[project @ 2005-12-16 16:03:02 by simonpj] |
|---|
| 4378 | simonpj**20051216160302 |
|---|
| 4379 | Add deriving for infix constructors |
|---|
| 4380 | ] |
|---|
| 4381 | [[project @ 2005-12-16 14:56:50 by simonpj] |
|---|
| 4382 | simonpj**20051216145650 |
|---|
| 4383 | Add repeated-type-variable tests for instance constexts |
|---|
| 4384 | ] |
|---|
| 4385 | [[project @ 2005-12-16 10:54:50 by simonmar] |
|---|
| 4386 | simonmar**20051216105450 |
|---|
| 4387 | TimeExts has gone away |
|---|
| 4388 | ] |
|---|
| 4389 | [[project @ 2005-12-16 10:53:24 by simonmar] |
|---|
| 4390 | simonmar**20051216105324 |
|---|
| 4391 | update to not use hslibs |
|---|
| 4392 | ] |
|---|
| 4393 | [[project @ 2005-12-16 10:50:31 by simonmar] |
|---|
| 4394 | simonmar**20051216105031 |
|---|
| 4395 | -package lang isn't required. |
|---|
| 4396 | ] |
|---|
| 4397 | [[project @ 2005-12-16 10:46:05 by simonmar] |
|---|
| 4398 | simonmar**20051216104605 |
|---|
| 4399 | Now that we aren't building hslibs, keep the memo tests alive by |
|---|
| 4400 | bringing Memo.hs into the testsuite. These tests are a useful |
|---|
| 4401 | shakedown for StableNames. |
|---|
| 4402 | ] |
|---|
| 4403 | [[project @ 2005-12-13 16:04:25 by simonmar] |
|---|
| 4404 | simonmar**20051213160425 |
|---|
| 4405 | Add nested atomically test |
|---|
| 4406 | ] |
|---|
| 4407 | [[project @ 2005-12-13 16:04:09 by simonmar] |
|---|
| 4408 | simonmar**20051213160409 |
|---|
| 4409 | fix comments |
|---|
| 4410 | ] |
|---|
| 4411 | [[project @ 2005-12-09 19:17:57 by simonpj] |
|---|
| 4412 | simonpj**20051209191757 |
|---|
| 4413 | add output file |
|---|
| 4414 | ] |
|---|
| 4415 | [[project @ 2005-12-09 19:16:58 by simonpj] |
|---|
| 4416 | simonpj**20051209191658 |
|---|
| 4417 | A minor, probably redundant, test |
|---|
| 4418 | ] |
|---|
| 4419 | [[project @ 2005-12-05 11:43:51 by simonmar] |
|---|
| 4420 | simonmar**20051205114351 |
|---|
| 4421 | add newTVarIO test |
|---|
| 4422 | ] |
|---|
| 4423 | [[project @ 2005-12-05 10:08:53 by simonpj] |
|---|
| 4424 | simonpj**20051205100853 |
|---|
| 4425 | Add an expected-failure test |
|---|
| 4426 | ] |
|---|
| 4427 | [[project @ 2005-12-05 09:13:07 by simonpj] |
|---|
| 4428 | simonpj**20051205091307 |
|---|
| 4429 | Update expected output |
|---|
| 4430 | ] |
|---|
| 4431 | [[project @ 2005-12-05 09:08:51 by simonpj] |
|---|
| 4432 | simonpj**20051205090851 |
|---|
| 4433 | Fix test |
|---|
| 4434 | ] |
|---|
| 4435 | [[project @ 2005-12-02 10:56:34 by simonmar] |
|---|
| 4436 | simonmar**20051202105634 |
|---|
| 4437 | add this test that I had lying around |
|---|
| 4438 | ] |
|---|
| 4439 | [[project @ 2005-12-02 10:54:05 by simonmar] |
|---|
| 4440 | simonmar**20051202105405 |
|---|
| 4441 | conc053 only works in threaded & smp ways at the moment. |
|---|
| 4442 | ] |
|---|
| 4443 | [[project @ 2005-12-02 10:51:15 by simonmar] |
|---|
| 4444 | simonmar**20051202105115 |
|---|
| 4445 | accept output |
|---|
| 4446 | ] |
|---|
| 4447 | [[project @ 2005-12-01 08:54:57 by simonpj] |
|---|
| 4448 | simonpj**20051201085457 |
|---|
| 4449 | Another GADT test |
|---|
| 4450 | ] |
|---|
| 4451 | [[project @ 2005-11-30 14:17:35 by simonpj] |
|---|
| 4452 | simonpj**20051130141735 |
|---|
| 4453 | Add mkName test |
|---|
| 4454 | ] |
|---|
| 4455 | [[project @ 2005-11-30 12:25:20 by simonmar] |
|---|
| 4456 | simonmar**20051130122520 |
|---|
| 4457 | Add test for Control.Concurrent.STM.registerDelay |
|---|
| 4458 | ] |
|---|
| 4459 | [TAG Last rev before making ghc-6-4 branch |
|---|
| 4460 | John Goerzen <jgoerzen@complete.org>**20051128164635] |
|---|
| 4461 | [TAG Initial conversion from CVS complete |
|---|
| 4462 | John Goerzen <jgoerzen@complete.org>**20051128163910] |
|---|
| 4463 | Patch bundle hash: |
|---|
| 4464 | 32fda07463a2948866eabcf33a7263b1fd29ddcb |
|---|