pgj-freebsd-amd64-stable (amd64 FreeBSD STABLE), build 730, Success

2012-11-10 Thread Builder
pgj-freebsd-amd64-stable (amd64 FreeBSD STABLE), build 730 Build succeeded Details: http://darcs.haskell.org/ghcBuilder/builders/pgj-freebsd-amd64-stable/730.html git clone| Success create mk/build.mk | Success get subrepos | Success repo versions

pgj2 (amd64 FreeBSD HEAD), build 858, Success

2012-11-10 Thread Builder
pgj2 (amd64 FreeBSD HEAD), build 858 Build succeeded Details: http://darcs.haskell.org/ghcBuilder/builders/pgj2/858.html git clone| Success create mk/build.mk | Success get subrepos | Success repo versions| Success touching clean-check

simonmar-win32-stable (x86 Windows STABLE), build 567, Success

2012-11-10 Thread Builder
simonmar-win32-stable (x86 Windows STABLE), build 567 Build succeeded Details: http://darcs.haskell.org/ghcBuilder/builders/simonmar-win32-stable/567.html git clone| Success create mk/build.mk | Success get subrepos | Success repo versions

pgj-freebsd-i386-stable (x86 FreeBSD STABLE), build 718, Success

2012-11-10 Thread Builder
pgj-freebsd-i386-stable (x86 FreeBSD STABLE), build 718 Build succeeded Details: http://darcs.haskell.org/ghcBuilder/builders/pgj-freebsd-i386-stable/718.html git clone| Success create mk/build.mk | Success get subrepos | Success repo versions

pgj (x86 FreeBSD HEAD), build 855, Success

2012-11-10 Thread Builder
pgj (x86 FreeBSD HEAD), build 855 Build succeeded Details: http://darcs.haskell.org/ghcBuilder/builders/pgj/855.html git clone| Success create mk/build.mk | Success get subrepos | Success repo versions| Success touching clean-check fil

[nightly] 10-Nov-2012 build of HEAD on x86_64-unknown-linux (cam-04-unx)

2012-11-10 Thread GHC Build Reports
Build description = HEAD on x86_64-unknown-linux (cam-04-unx) Build location= /64playpen/simonmar/nightly/HEAD-cam-04-unx Build config file = /home/simonmar/nightly/site/msrc/conf-HEAD-cam-04-unx Nightly build started on cam-04-unx at Sat Nov 10 18:00:01 GMT 2012. checking out new source

[nightly] 10-Nov-2012 build of STABLE on x86_64-unknown-linux (cam-04-unx)

2012-11-10 Thread GHC Build Reports
Build description = STABLE on x86_64-unknown-linux (cam-04-unx) Build location= /64playpen/simonmar/nightly/STABLE-cam-04-unx Build config file = /home/simonmar/nightly/site/msrc/conf-STABLE-cam-04-unx Nightly build started on cam-04-unx at Sat Nov 10 18:10:01 GMT 2012. checking out new s

[commit: ghc] master: Merge branch 'master' of ssh://darcs.haskell.org/srv/darcs/ghc (121768d)

2012-11-10 Thread Iavor Diatchki
Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master http://hackage.haskell.org/trac/ghc/changeset/121768dec30facc5c9ff94cf84bc9eac71e7290b >--- commit 121768dec30facc5c9ff94cf84bc9eac71e7290b Merge: df04d2d... b78b6

[commit: ghc] master: Allow '-' to be used as an infix type constructor. (df04d2d)

2012-11-10 Thread Iavor Diatchki
Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master http://hackage.haskell.org/trac/ghc/changeset/df04d2d875f4f17b04cd8bd396b62b1eadd932e8 >--- commit df04d2d875f4f17b04cd8bd396b62b1eadd932e8 Author: Iavor S. Diatch

[nightly] 10-Nov-2012 build of HEAD (unreg) on x86_64-unknown-linux (cam-04-unx)

2012-11-10 Thread GHC Build Reports
Build description = HEAD (unreg) on x86_64-unknown-linux (cam-04-unx) Build location= /64playpen/simonmar/nightly/HEAD-unreg-cam-04-unx Build config file = /home/simonmar/nightly/site/msrc/conf-HEAD-unreg-cam-04-unx Nightly build started on cam-04-unx at Sat Nov 10 18:20:01 GMT 2012. chec

simonmar-win32-head (x86 Windows HEAD), build 680, Failure

2012-11-10 Thread Builder
simonmar-win32-head (x86 Windows HEAD), build 680 Build failed Details: http://darcs.haskell.org/ghcBuilder/builders/simonmar-win32-head/680.html git clone | Success create mk/build.mk | Success get subrepos | Failure: Just (ExitFailure 2) Build failed Details: http://darcs.hask

Re: Validate failures of the day

2012-11-10 Thread Ian Lynagh
On Wed, Oct 31, 2012 at 04:22:03PM +, Simon Peyton-Jones wrote: > I think that's all mine. arrowfail001 fails with stage=1 (with an ASSERT > error, and it *is* wrong) I think it'll only fail with a DEBUG compiler. I've updated the test accordingly. Thanks Ian

[commit: testsuite] master: Add if_compiler_debugged to testsuite driver (888daa5)

2012-11-10 Thread Ian Lynagh
Repository : ssh://darcs.haskell.org//srv/darcs/testsuite On branch : master http://hackage.haskell.org/trac/ghc/changeset/888daa51a7d656bba5f39e16e6396ba9d4d29f4c >--- commit 888daa51a7d656bba5f39e16e6396ba9d4d29f4c Author: Ian Lynag

Re: Proposal: alpha-rename the type signatures of foldl, foldl', and scanl to be consistent with foldr and scanr

2012-11-10 Thread Ian Lynagh
Hi Bas, On Fri, Nov 09, 2012 at 11:32:05AM +0100, Bas van Dijk wrote: > > I think you missed some fixes in Data.Foldable from the original patch: > > foldl :: (a -> b -> a) -> a -> t b -> ato: > foldl :: (b -> a -> b) -> b -> t a -> b > > foldl' :: (a -> b -> a) -> a -> t b -> ato: > f

Re: Proposal: alpha-rename the type signatures of foldl, foldl', and scanl to be consistent with foldr and scanr

2012-11-10 Thread Gábor Lehel
Hmm, I think foldlM was something that I missed. But +1 to all. On Fri, Nov 9, 2012 at 11:32 AM, Bas van Dijk wrote: > Ian, > > I think you missed some fixes in Data.Foldable from the original patch: > > foldl :: (a -> b -> a) -> a -> t b -> ato: > foldl :: (b -> a -> b) -> b -> t a -> b > >

pgj-freebsd-amd64-stable (amd64 FreeBSD STABLE), build 729, Success

2012-11-10 Thread Builder
pgj-freebsd-amd64-stable (amd64 FreeBSD STABLE), build 729 Build succeeded Details: http://darcs.haskell.org/ghcBuilder/builders/pgj-freebsd-amd64-stable/729.html git clone| Success create mk/build.mk | Success get subrepos | Success repo versions