<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.lang.haskell.cvs.ghc">
    <title>gmane.comp.lang.haskell.cvs.ghc</title>
    <link>http://blog.gmane.org/gmane.comp.lang.haskell.cvs.ghc</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58400"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58399"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58398"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58397"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58396"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58395"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58394"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58393"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58392"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58391"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58390"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58389"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58388"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58387"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58386"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58385"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58384"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58383"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58382"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58381"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58400">
    <title>[commit: ghc] master: Fix problems with getMonotonicNSec on OS X(d0d0c36)</title>
    <link>http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58400</link>
    <description>&lt;pre&gt;Repository : ssh://darcs.haskell.org//srv/darcs/ghc

On branch  : master

http://hackage.haskell.org/trac/ghc/changeset/d0d0c36a99c588f47d530eae0e505e5a9d317339


commit d0d0c36a99c588f47d530eae0e505e5a9d317339
Author: Ian Lynagh &amp;lt;igloo&amp;lt; at &amp;gt;earth.li&amp;gt;
Date:   Sat May 26 11:41:12 2012 +0100

    Fix problems with getMonotonicNSec on OS X
    
    We were incorrectly multiplying by 1e9, which (a) meant we were
    getting values that were far too large, and (b) meant that when
    we casted from double to StgWord64 the result was 0, as the value
    was out of range.
    
    We now do all the work as StgWord64.


 rts/posix/GetTime.c |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/rts/posix/GetTime.c b/rts/posix/GetTime.c
index da8d0fa..fabc404 100644
--- a/rts/posix/GetTime.c
+++ b/rts/posix/GetTime.c
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -34,7 +34,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 // separately, using getrusage() and gettimeofday() respectively
 
 #ifdef darwin_HOST_OS
-static double timer_scaling_factor_ns = 0.0;
+static uint64_t timer_scaling_factor_numer = 0;
+static uint64_t timer_scaling_factor_denom = 0;
 #endif
 
 void initializeTimer()
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -42,7 +43,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; void initializeTimer()
 #ifdef darwin_HOST_OS
     mach_timebase_info_data_t info;
     (void) mach_timebase_info(&amp;amp;info);
-    timer_scaling_factor_ns = (double)info.numer / (double)info.denom * 1e9;
+    timer_scaling_factor_numer = (uint64_t)info.numer;
+    timer_scaling_factor_denom = (uint64_t)info.denom;
 #endif
 }
 
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -87,7 +89,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; StgWord64 getMonotonicNSec(void)
            (StgWord64)ts.tv_nsec;
 #elif defined(darwin_HOST_OS)
     uint64_t time = mach_absolute_time();
-    return (double)time * timer_scaling_factor_ns;
+    return (time * timer_scaling_factor_numer) / timer_scaling_factor_denom;
 #else
     struct timeval tv;
&lt;/pre&gt;</description>
    <dc:creator>Ian Lynagh</dc:creator>
    <dc:date>2012-05-26T11:27:34</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58399">
    <title>tn23 (x86 OSX HEAD), build 626, Success</title>
    <link>http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58399</link>
    <description>&lt;pre&gt;tn23 (x86 OSX HEAD), build 626

Build succeeded
Details: http://darcs.haskell.org/ghcBuilder/builders/tn23/626.html

git clone                    | Success
create mk/build.mk           | Success
get subrepos                 | Success
repo versions                | Success
touching clean-check files   | Success
setting version date         | Success
booting                      | Success
configuring                  | Success
creating check-remove-before | Success
compiling                    | Success
creating check-remove-after  | Success
compiling testremove         | Success
simulating clean             | Success
checking clean               | Success
making bindist               | Success
testing bindist              | Success
testing                      | Success
testsuite summary            | Success

Build succeeded
Details: http://darcs.haskell.org/ghcBuilder/builders/tn23/626.html

File not deleted:    "compiler/ghc.cabal.old"
File not deleted:    "inplace"
File not deleted:    "libraries/base/include/EventConfig.h"
Deleted before file: "libraries/time/include/HsTimeConfig.h"
File not deleted:    "mk/config.mk.old"
File not deleted:    "mk/project.mk.old"
File not deleted:    "rts/libs.depend"
File not deleted:    "rts/package.conf.inplace"
File not deleted:    "rts/package.conf.inplace.raw"

OVERALL SUMMARY for test run started at Sat May 26 04:19:22 CEST 2012
    3320 total tests, which gave rise to
   16214 test cases, of which
       0 caused framework failures
   13210 were skipped

    2892 expected passes
      50 had missing libraries
      34 expected failures
       0 unexpected passes
      28 unexpected failures

Unexpected failures:
   ../../libraries/base/tests/Concurrent  ThreadDelay001 [bad exit code] (normal)
   ../../libraries/base/tests/IO          concio002 [bad exit code] (normal)
   ../../libraries/directory/tests        T4113 [bad stdout] (normal)
   ../../libraries/unix/tests             1185 [bad exit code] (normal)
   concurrent/should_run                  2910 [bad exit code] (normal)
   concurrent/should_run                  2910a [bad exit code] (normal)
   concurrent/should_run                  3429 [bad exit code] (normal)
   concurrent/should_run                  5421 [bad exit code] (normal)
   concurrent/should_run                  5611 [bad exit code] (normal)
   concurrent/should_run                  5866 [bad exit code] (normal)
   concurrent/should_run                  async001 [bad exit code] (normal)
   concurrent/should_run                  conc070 [bad stdout or stderr] (ghci)
   concurrent/should_run                  throwto003 [bad exit code] (normal)
   dynlibs                                T3807 [bad exit code] (normal)
   ffi/should_run                         ffi016 [bad exit code] (normal)
   ghci/linking                           ghcilink003 [bad exit code] (normal)
   ghci/linking                           ghcilink006 [bad exit code] (normal)
   ghci/scripts                           T5979 [bad stderr] (ghci)
   ghci/should_run                        3171 [bad stdout] (normal)
   perf/compiler                          T1969 [stat not good enough] (normal)
   perf/compiler                          T3064 [stat not good enough] (normal)
   perf/should_run                        T5205 [bad exit code] (normal)
   perf/space_leaks                       T4018 [bad exit code] (optasm)
   profiling/should_run                   5314 [bad exit code] (profasm)
   rts                                    stack001 [bad exit code] (normal)
   rts                                    stack002 [bad exit code] (normal)
   typecheck/should_fail                  T5300 [stderr mismatch] (normal)
   typecheck/should_fail                  T5691 [stderr mismatch] (normal)

_______________________________________________
Cvs-ghc mailing list
Cvs-ghc&amp;lt; at &amp;gt;haskell.org
http://www.haskell.org/mailman/listinfo/cvs-ghc
&lt;/pre&gt;</description>
    <dc:creator>Builder</dc:creator>
    <dc:date>2012-05-26T10:42:26</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58398">
    <title>pgj-freebsd-amd64-stable (amd64 FreeBSD STABLE), build 570, Success</title>
    <link>http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58398</link>
    <description>&lt;pre&gt;pgj-freebsd-amd64-stable (amd64 FreeBSD STABLE), build 570

Build succeeded
Details: http://darcs.haskell.org/ghcBuilder/builders/pgj-freebsd-amd64-stable/570.html

git clone                    | Success
create mk/build.mk           | Success
get subrepos                 | Success
repo versions                | Success
touching clean-check files   | Success
setting version date         | Success
booting                      | Success
configuring                  | Success
creating check-remove-before | Success
compiling                    | Success
creating check-remove-after  | Success
compiling testremove         | Success
simulating clean             | Success
checking clean               | Success
making bindist               | Success
publishing bindist           | Success
testing bindist              | Success
testing                      | Success
testsuite summary            | Success

Build succeeded
Details: http://darcs.haskell.org/ghcBuilder/builders/pgj-freebsd-amd64-stable/570.html

File not deleted:    "compiler/ghc.cabal.old"
File not deleted:    "inplace"
File not deleted:    "libraries/base/base.buildinfo"
File not deleted:    "libraries/base/config.log"
File not deleted:    "libraries/base/config.status"
File not deleted:    "libraries/base/include/EventConfig.h"
File not deleted:    "libraries/base/include/HsBaseConfig.h"
File not deleted:    "libraries/directory/config.log"
File not deleted:    "libraries/directory/config.status"
File not deleted:    "libraries/directory/include/HsDirectoryConfig.h"
File not deleted:    "libraries/doc-index-124.html"
File not deleted:    "libraries/doc-index-126.html"
File not deleted:    "libraries/doc-index-33.html"
File not deleted:    "libraries/doc-index-36.html"
File not deleted:    "libraries/doc-index-37.html"
File not deleted:    "libraries/doc-index-38.html"
File not deleted:    "libraries/doc-index-42.html"
File not deleted:    "libraries/doc-index-43.html"
File not deleted:    "libraries/doc-index-45.html"
File not deleted:    "libraries/doc-index-46.html"
File not deleted:    "libraries/doc-index-47.html"
File not deleted:    "libraries/doc-index-58.html"
File not deleted:    "libraries/doc-index-60.html"
File not deleted:    "libraries/doc-index-61.html"
File not deleted:    "libraries/doc-index-62.html"
File not deleted:    "libraries/doc-index-92.html"
File not deleted:    "libraries/doc-index-94.html"
File not deleted:    "libraries/doc-index-A.html"
File not deleted:    "libraries/doc-index-All.html"
File not deleted:    "libraries/doc-index-B.html"
File not deleted:    "libraries/doc-index-C.html"
File not deleted:    "libraries/doc-index-D.html"
File not deleted:    "libraries/doc-index-E.html"
File not deleted:    "libraries/doc-index-F.html"
File not deleted:    "libraries/doc-index-G.html"
File not deleted:    "libraries/doc-index-H.html"
File not deleted:    "libraries/doc-index-I.html"
File not deleted:    "libraries/doc-index-J.html"
File not deleted:    "libraries/doc-index-K.html"
File not deleted:    "libraries/doc-index-L.html"
File not deleted:    "libraries/doc-index-M.html"
File not deleted:    "libraries/doc-index-N.html"
File not deleted:    "libraries/doc-index-O.html"
File not deleted:    "libraries/doc-index-P.html"
File not deleted:    "libraries/doc-index-Q.html"
File not deleted:    "libraries/doc-index-R.html"
File not deleted:    "libraries/doc-index-S.html"
File not deleted:    "libraries/doc-index-T.html"
File not deleted:    "libraries/doc-index-U.html"
File not deleted:    "libraries/doc-index-V.html"
File not deleted:    "libraries/doc-index-W.html"
File not deleted:    "libraries/doc-index-X.html"
File not deleted:    "libraries/doc-index-Y.html"
File not deleted:    "libraries/doc-index-Z.html"
File not deleted:    "libraries/doc-index.html"
File not deleted:    "libraries/frames.html"
File not deleted:    "libraries/haddock-util.js"
File not deleted:    "libraries/hslogo-16.png"
File not deleted:    "libraries/index-frames.html"
File not deleted:    "libraries/index.html"
File not deleted:    "libraries/integer-gmp/config.log"
File not deleted:    "libraries/integer-gmp/config.status"
File not deleted:    "libraries/integer-gmp/integer-gmp.buildinfo"
File not deleted:    "libraries/minus.gif"
File not deleted:    "libraries/ocean.css"
File not deleted:    "libraries/old-time/config.log"
File not deleted:    "libraries/old-time/config.status"
File not deleted:    "libraries/old-time/include/HsTimeConfig.h"
File not deleted:    "libraries/plus.gif"
File not deleted:    "libraries/process/config.log"
File not deleted:    "libraries/process/config.status"
File not deleted:    "libraries/process/include/HsProcessConfig.h"
File not deleted:    "libraries/synopsis.png"
File not deleted:    "libraries/terminfo/config.log"
File not deleted:    "libraries/terminfo/config.status"
File not deleted:    "libraries/terminfo/terminfo.buildinfo"
File not deleted:    "libraries/time/config.log"
File not deleted:    "libraries/time/config.status"
File not deleted:    "libraries/unix/config.log"
File not deleted:    "libraries/unix/config.status"
File not deleted:    "libraries/unix/include/HsUnixConfig.h"
File not deleted:    "libraries/unix/unix.buildinfo"
File not deleted:    "mk/config.mk.old"
File not deleted:    "mk/project.mk.old"
File not deleted:    "rts/libs.depend"
File not deleted:    "rts/package.conf.inplace"
File not deleted:    "rts/package.conf.inplace.raw"

OVERALL SUMMARY for test run started at Sat May 26 07:34:12 UTC 2012
    3160 total tests, which gave rise to
   13545 test cases, of which
       1 caused framework failures
   10701 were skipped

    2750 expected passes
      80 expected failures
       0 unexpected passes
      13 unexpected failures

Unexpected failures:
   ../../libraries/directory/tests  getPermissions001 [bad exit code] (normal)
   ../../libraries/process/tests    process007 [bad stdout] (normal)
   driver                           dynHelloWorld [bad exit code] (dyn)
   driver/recomp011                 recomp011 [bad stdout] (normal)
   dynlibs                          T3807 [bad exit code] (normal)
   dynlibs                          T5373 [bad stdout] (normal)
   ghci/linking                     ghcilink006 [bad exit code] (normal)
   lib/IO                           T4113 [bad stdout] (normal)
   plugins                          plugins01 [bad exit code] (normal)
   plugins                          plugins02 [stderr mismatch] (normal)
   plugins                          plugins03 [stderr mismatch] (normal)
   rts                              T2615 [bad stdout] (normal)
   typecheck/should_fail            T5300 [stderr mismatch] (normal)

_______________________________________________
Cvs-ghc mailing list
Cvs-ghc&amp;lt; at &amp;gt;haskell.org
http://www.haskell.org/mailman/listinfo/cvs-ghc
&lt;/pre&gt;</description>
    <dc:creator>Builder</dc:creator>
    <dc:date>2012-05-26T08:09:28</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58397">
    <title>[nightly] 25-May-2012 build of HEAD on i386-unknown-linux (cam-02-unx)</title>
    <link>http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58397</link>
    <description>&lt;pre&gt;Build description = HEAD on i386-unknown-linux (cam-02-unx)
Build location    = /playpen/simonmar/nightly/HEAD
Build config file = /home/simonmar/nightly/site/msrc/conf-HEAD-cam-02-unx

Nightly build started on cam-02-unx at Fri May 25 18:00:01 BST 2012.
**** checking out new source tree                 ... ok.
**** Building stage 1 compiler                    ... ok.
GHC Version 7.5.20120525
**** Building stage 2 compiler                    ... ok.
**** Building stage 3 compiler                    ... ok.
**** building testsuite tools                     ... ok.
**** running tests                                ... ok (summary below).
**** building compiler binary distribution        ... ok.
**** uploading binary distribution                ... ok.
**** running nofib (-rtsopts -O2)                 ... ok.
**** running nofib (-rtsopts -O2 -fllvm)          ... ok. (5 failures)
**** running nofib (-rtsopts -O2 -prof -auto-all) ... ok. (2 failures)
**** running nofib (-rtsopts -O2 -prof -auto-all -fllvm)... ok. (1 failures)
**** publishing logs                              ... ssh: connect to host haskell.org port 22: No route to host
lost connection
failed.
Logs  are at http://www.haskell.org/ghc/dist/current/logs
Dists are at http://www.haskell.org/ghc/dist/current/dist
Docs  are at http://www.haskell.org/ghc/dist/current/docs
-----------------------------------------------------------------------------
Respository hashes:
.|05289c2ac1203a5d5bbe8236d0239946b5093116
ghc-tarballs|5e1f5d19ef2f836d180947aadc0dd9a9851edf28
libraries/Cabal|cc2c5a78f8fd5b2ab2c0dd3629a8184e7e0c95c4
libraries/Win32|bda29f7fe0b61b70f558549407e598c9256ad293
libraries/array|2a3d41bcae1d0a5d192e614370459dfdd31f3bcf
libraries/base|dc521b8b23847b07072a1aea0f56614ae2370e02
libraries/binary|527be910f16a4bc047069281fc58bc6748e5fecc
libraries/bytestring|fc8e1ee849b10fe2b63eb1024aff3d6624ddd069
libraries/containers|d4e8b5bd70f87af4463410df3aade72d42d675e0
libraries/deepseq|61d95ab64b1610817288e6f6b880ca2770fcc68f
libraries/directory|854bd9e4ec8c502327300c939ad197cbc39bde2c
libraries/dph|01416ec30eb73ac512cdf894a7bb44e5cebd8457
libraries/filepath|f451c8b4330fb69573533ed19a2645afa936ccaf
libraries/ghc-prim|529167773a9a036d7d3262707be4c5a2f6a04bcf
libraries/haskeline|bd39c0ce02ad07515450bfe5d667ce1635221b04
libraries/haskell2010|07f24cea759fae7994c89d77fae199862d9e2acf
libraries/haskell98|857ba8b14bba4b597d104e3d7264aee4bb4e74ae
libraries/hoopl|1ef68d6f2a8a7e89a5ed4cc78e3fefc89dc8ccab
libraries/hpc|4d661848575009bbcf3fe8e1f7c69da12f1d3a8e
libraries/integer-gmp|121cd52f9ae00ff0d6d072cc51939fb887db3fba
libraries/integer-simple|87ce6a97d7a07badc73d599a7b2ee629b2967866
libraries/old-locale|201f149646b5c2be6145436449d66bc69563c635
libraries/old-time|b2c2c9d01c3c71a9a37c11b455aba63b7a3199c2
libraries/parallel|e8ee35f4bb43cfde410d27e056d4083ced0a24c9
libraries/pretty|ab7e8d91470bb94c9e184dffbec89d0aae116f9b
libraries/primitive|75c3379b6d76e914cc3c7ffd290b6b1cad7ea3e6
libraries/process|76fb4b7e8861dec8054723a3c794c73511d07bb2
libraries/random|69bfde219bab869729fdbe9c1496371f912bf41e
libraries/stm|f3a4ab56195f943e149ccc14fbfe18c00d2fea70
libraries/template-haskell|e6323fef1a67cf9d8e91ca35d71a9c89d2494413
libraries/terminfo|64d1e6201b490942636f5f3883cf5e81c2338fc8
libraries/transformers|a59fb93860f84ccd44178dcbbb82cfea7e02cd07
libraries/unix|389820b2bcdc32be728e05fd98b69382f9c55721
libraries/utf8-string|d7386bea7fe286483ea559fb9b3898be080af700
libraries/vector|c4c5a740ec977a4300449bc85f4707ec641be923
libraries/xhtml|e6dc0c800f5a1c3ac8f0fcb477b2d76394c30d38
nofib|40c01620651d93166e2b8da156f113a4e7b827de
testsuite|4e07a12029dc856f79e0057ad955c3dcd657543a
utils/haddock|4fbd2b4b0088d373f0d026dc1cd7117269c7a9db
utils/hsc2hs|b46ae9e455a4e6766a4dba688c9bc2186056218a
-----------------------------------------------------------------------------
All done!
Nightly build finished successfully at Sat May 26 08:47:56 BST 2012

------------- GHC Test summary ---------------------

OVERALL SUMMARY for test run started at Sat May 26 00:45:01 BST 2012
    3343 total tests, which gave rise to
   16440 test cases, of which
       0 caused framework failures
    3553 were skipped

   12552 expected passes
     194 had missing libraries
     126 expected failures
       4 unexpected passes
      11 unexpected failures

Unexpected passes:
   typecheck/should_compile  tc078 (hpc,optasm,profasm)
   typecheck/should_compile  tc126 (optasm)

Unexpected failures:
   ../../libraries/template-haskell/tests  dataToExpQUnit [exit code non-0] (profasm)
   dph/nbody                               dph-nbody-copy-opt [exit code non-0] (normal,threaded1,threaded2)
   dph/words                               dph-words-copy-opt [exit code non-0] (normal)
   ffi/should_run                          capi_value [bad stdout or stderr] (ghci)
   ffi/should_run                          ffi_parsing_001 [bad stdout or stderr] (ghci)
   perf/compiler                           T1969 [stat not good enough] (normal)
   perf/compiler                           T3064 [stat not good enough] (normal)
   perf/compiler                           T4801 [stat not good enough] (normal)
   rts                                     5250 [bad exit code] (optllvm)

----------------------------------------------------
Nightly run ended at Sat May 26 08:47:56 BST 2012
&lt;/pre&gt;</description>
    <dc:creator>GHC Build Reports</dc:creator>
    <dc:date>2012-05-26T07:47:58</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58396">
    <title>pgj2 (amd64 FreeBSD HEAD), build 688, Success</title>
    <link>http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58396</link>
    <description>&lt;pre&gt;pgj2 (amd64 FreeBSD HEAD), build 688

Build succeeded
Details: http://darcs.haskell.org/ghcBuilder/builders/pgj2/688.html

git clone                    | Success
create mk/build.mk           | Success
get subrepos                 | Success
repo versions                | Success
touching clean-check files   | Success
setting version date         | Success
booting                      | Success
configuring                  | Success
creating check-remove-before | Success
compiling                    | Success
creating check-remove-after  | Success
compiling testremove         | Success
simulating clean             | Success
checking clean               | Success
making bindist               | Success
publishing bindist           | Success
testing bindist              | Success
testing                      | Success
testsuite summary            | Success

Build succeeded
Details: http://darcs.haskell.org/ghcBuilder/builders/pgj2/688.html

File not deleted:    "compiler/ghc.cabal.old"
File not deleted:    "inplace"
File not deleted:    "libraries/base/include/EventConfig.h"
Deleted before file: "libraries/time/include/HsTimeConfig.h"
File not deleted:    "mk/config.mk.old"
File not deleted:    "mk/project.mk.old"
File not deleted:    "rts/libs.depend"
File not deleted:    "rts/package.conf.inplace"
File not deleted:    "rts/package.conf.inplace.raw"

OVERALL SUMMARY for test run started at Sat May 26 06:29:05 UTC 2012
    3320 total tests, which gave rise to
   14089 test cases, of which
       0 caused framework failures
   11088 were skipped

    2898 expected passes
      48 had missing libraries
      35 expected failures
       0 unexpected passes
      20 unexpected failures

Unexpected failures:
   ../../libraries/directory/tests      T4113 [bad stdout] (normal)
   ../../libraries/directory/tests      getPermissions001 [bad exit code] (normal)
   ../../libraries/process/tests        process007 [bad stdout] (normal)
   ../../libraries/unix/tests/libposix  posix005 [bad stdout] (normal)
   driver                               dynHelloWorld [bad exit code] (dyn)
   driver/recomp011                     recomp011 [bad stdout] (normal)
   dynlibs                              T3807 [bad exit code] (normal)
   dynlibs                              T5373 [bad stdout] (normal)
   ghci/scripts                         T5979 [bad stderr] (ghci)
   ghci/scripts                         T6106 [bad stderr] (ghci)
   perf/compiler                        T4801 [stat not good enough] (normal)
   perf/compiler                        parsing001 [stat too good] (normal)
   plugins                              plugins01 [bad exit code] (normal)
   plugins                              plugins02 [stderr mismatch] (normal)
   plugins                              plugins03 [stderr mismatch] (normal)
   rts                                  T2615 [bad stdout] (normal)
   simplCore/should_compile             T4306 [bad stderr] (normal)
   typecheck/should_fail                T5300 [stderr mismatch] (normal)
   typecheck/should_fail                T5691 [stderr mismatch] (normal)
   typecheck/should_fail                tcfail032 [stderr mismatch] (normal)

_______________________________________________
Cvs-ghc mailing list
Cvs-ghc&amp;lt; at &amp;gt;haskell.org
http://www.haskell.org/mailman/listinfo/cvs-ghc
&lt;/pre&gt;</description>
    <dc:creator>Builder</dc:creator>
    <dc:date>2012-05-26T07:04:18</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58395">
    <title>pgj-freebsd-i386-stable (x86 FreeBSD STABLE), build 553, Success</title>
    <link>http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58395</link>
    <description>&lt;pre&gt;pgj-freebsd-i386-stable (x86 FreeBSD STABLE), build 553

Build succeeded
Details: http://darcs.haskell.org/ghcBuilder/builders/pgj-freebsd-i386-stable/553.html

git clone                    | Success
create mk/build.mk           | Success
get subrepos                 | Success
repo versions                | Success
touching clean-check files   | Success
setting version date         | Success
booting                      | Success
configuring                  | Success
creating check-remove-before | Success
compiling                    | Success
creating check-remove-after  | Success
compiling testremove         | Success
simulating clean             | Success
checking clean               | Success
making bindist               | Success
publishing bindist           | Success
testing bindist              | Success
testing                      | Success
testsuite summary            | Success

Build succeeded
Details: http://darcs.haskell.org/ghcBuilder/builders/pgj-freebsd-i386-stable/553.html

File not deleted:    "compiler/ghc.cabal.old"
File not deleted:    "inplace"
File not deleted:    "libraries/base/base.buildinfo"
File not deleted:    "libraries/base/config.log"
File not deleted:    "libraries/base/config.status"
File not deleted:    "libraries/base/include/EventConfig.h"
File not deleted:    "libraries/base/include/HsBaseConfig.h"
File not deleted:    "libraries/directory/config.log"
File not deleted:    "libraries/directory/config.status"
File not deleted:    "libraries/directory/include/HsDirectoryConfig.h"
File not deleted:    "libraries/doc-index-124.html"
File not deleted:    "libraries/doc-index-126.html"
File not deleted:    "libraries/doc-index-33.html"
File not deleted:    "libraries/doc-index-36.html"
File not deleted:    "libraries/doc-index-37.html"
File not deleted:    "libraries/doc-index-38.html"
File not deleted:    "libraries/doc-index-42.html"
File not deleted:    "libraries/doc-index-43.html"
File not deleted:    "libraries/doc-index-45.html"
File not deleted:    "libraries/doc-index-46.html"
File not deleted:    "libraries/doc-index-47.html"
File not deleted:    "libraries/doc-index-58.html"
File not deleted:    "libraries/doc-index-60.html"
File not deleted:    "libraries/doc-index-61.html"
File not deleted:    "libraries/doc-index-62.html"
File not deleted:    "libraries/doc-index-92.html"
File not deleted:    "libraries/doc-index-94.html"
File not deleted:    "libraries/doc-index-A.html"
File not deleted:    "libraries/doc-index-All.html"
File not deleted:    "libraries/doc-index-B.html"
File not deleted:    "libraries/doc-index-C.html"
File not deleted:    "libraries/doc-index-D.html"
File not deleted:    "libraries/doc-index-E.html"
File not deleted:    "libraries/doc-index-F.html"
File not deleted:    "libraries/doc-index-G.html"
File not deleted:    "libraries/doc-index-H.html"
File not deleted:    "libraries/doc-index-I.html"
File not deleted:    "libraries/doc-index-J.html"
File not deleted:    "libraries/doc-index-K.html"
File not deleted:    "libraries/doc-index-L.html"
File not deleted:    "libraries/doc-index-M.html"
File not deleted:    "libraries/doc-index-N.html"
File not deleted:    "libraries/doc-index-O.html"
File not deleted:    "libraries/doc-index-P.html"
File not deleted:    "libraries/doc-index-Q.html"
File not deleted:    "libraries/doc-index-R.html"
File not deleted:    "libraries/doc-index-S.html"
File not deleted:    "libraries/doc-index-T.html"
File not deleted:    "libraries/doc-index-U.html"
File not deleted:    "libraries/doc-index-V.html"
File not deleted:    "libraries/doc-index-W.html"
File not deleted:    "libraries/doc-index-X.html"
File not deleted:    "libraries/doc-index-Y.html"
File not deleted:    "libraries/doc-index-Z.html"
File not deleted:    "libraries/doc-index.html"
File not deleted:    "libraries/frames.html"
File not deleted:    "libraries/haddock-util.js"
File not deleted:    "libraries/hslogo-16.png"
File not deleted:    "libraries/index-frames.html"
File not deleted:    "libraries/index.html"
File not deleted:    "libraries/integer-gmp/config.log"
File not deleted:    "libraries/integer-gmp/config.status"
File not deleted:    "libraries/integer-gmp/integer-gmp.buildinfo"
File not deleted:    "libraries/minus.gif"
File not deleted:    "libraries/ocean.css"
File not deleted:    "libraries/old-time/config.log"
File not deleted:    "libraries/old-time/config.status"
File not deleted:    "libraries/old-time/include/HsTimeConfig.h"
File not deleted:    "libraries/plus.gif"
File not deleted:    "libraries/process/config.log"
File not deleted:    "libraries/process/config.status"
File not deleted:    "libraries/process/include/HsProcessConfig.h"
File not deleted:    "libraries/synopsis.png"
File not deleted:    "libraries/terminfo/config.log"
File not deleted:    "libraries/terminfo/config.status"
File not deleted:    "libraries/terminfo/terminfo.buildinfo"
File not deleted:    "libraries/time/config.log"
File not deleted:    "libraries/time/config.status"
File not deleted:    "libraries/unix/config.log"
File not deleted:    "libraries/unix/config.status"
File not deleted:    "libraries/unix/include/HsUnixConfig.h"
File not deleted:    "libraries/unix/unix.buildinfo"
File not deleted:    "mk/config.mk.old"
File not deleted:    "mk/project.mk.old"
File not deleted:    "rts/libs.depend"
File not deleted:    "rts/package.conf.inplace"
File not deleted:    "rts/package.conf.inplace.raw"

OVERALL SUMMARY for test run started at Sat May 26 06:24:47 UTC 2012
    3160 total tests, which gave rise to
   13545 test cases, of which
       1 caused framework failures
   10702 were skipped

    2740 expected passes
      79 expected failures
       5 unexpected passes
      18 unexpected failures

Unexpected passes:
   ../../libraries/unix/tests  getEnvironment01 (normal)
   ../../libraries/unix/tests  getEnvironment02 (normal)
   ../../libraries/unix/tests  getGroupEntryForName (normal)
   ../../libraries/unix/tests  getUserEntryForName (normal)
   ../../libraries/unix/tests  queryfdoption01 (normal)

Unexpected failures:
   ../../libraries/directory/tests  getPermissions001 [bad exit code] (normal)
   ../../libraries/process/tests    process007 [bad stdout] (normal)
   cabal/cabal01                    cabal01 [bad stderr] (normal)
   deSugar/should_compile           ds014 [stderr mismatch] (normal)
   driver                           dynHelloWorld [bad exit code] (dyn)
   driver/recomp011                 recomp011 [bad stdout] (normal)
   dynlibs                          T3807 [bad exit code] (normal)
   dynlibs                          T5373 [bad stdout] (normal)
   ghci/linking                     ghcilink006 [bad stderr] (normal)
   lib/IO                           T4113 [bad stdout] (normal)
   numeric/should_run               numrun012 [bad stdout] (normal)
   plugins                          plugins01 [bad exit code] (normal)
   plugins                          plugins02 [stderr mismatch] (normal)
   plugins                          plugins03 [stderr mismatch] (normal)
   rts                              T2615 [bad stdout] (normal)
   simplCore/should_compile         T5327 [bad stderr] (normal)
   typecheck/should_fail            T5300 [stderr mismatch] (normal)
   typecheck/should_fail            tcfail068 [stderr mismatch] (normal)

_______________________________________________
Cvs-ghc mailing list
Cvs-ghc&amp;lt; at &amp;gt;haskell.org
http://www.haskell.org/mailman/listinfo/cvs-ghc
&lt;/pre&gt;</description>
    <dc:creator>Builder</dc:creator>
    <dc:date>2012-05-26T07:01:45</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58394">
    <title>[nightly] 25-May-2012 build of HEAD (unreg) on x86_64-unknown-linux(cam-04-unx)</title>
    <link>http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58394</link>
    <description>&lt;pre&gt;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 Fri May 25 18:20:01 BST 2012.
**** checking out new source tree                 ... ok.
**** Building stage 1 compiler                    ... ok.
GHC Version 7.5
**** Building stage 2 compiler                    ... ok.
**** Building stage 3 compiler                    ... ok.
**** building testsuite tools                     ... ok.
**** running tests                                ... ok (summary below).
**** running nofib (-rtsopts -O2)                 ... ok.
-----------------------------------------------------------------------------
Respository hashes:
.|05289c2ac1203a5d5bbe8236d0239946b5093116
ghc-tarballs|5e1f5d19ef2f836d180947aadc0dd9a9851edf28
libraries/Cabal|cc2c5a78f8fd5b2ab2c0dd3629a8184e7e0c95c4
libraries/Win32|bda29f7fe0b61b70f558549407e598c9256ad293
libraries/array|2a3d41bcae1d0a5d192e614370459dfdd31f3bcf
libraries/base|dc521b8b23847b07072a1aea0f56614ae2370e02
libraries/binary|527be910f16a4bc047069281fc58bc6748e5fecc
libraries/bytestring|fc8e1ee849b10fe2b63eb1024aff3d6624ddd069
libraries/containers|d4e8b5bd70f87af4463410df3aade72d42d675e0
libraries/deepseq|61d95ab64b1610817288e6f6b880ca2770fcc68f
libraries/directory|854bd9e4ec8c502327300c939ad197cbc39bde2c
libraries/dph|01416ec30eb73ac512cdf894a7bb44e5cebd8457
libraries/filepath|f451c8b4330fb69573533ed19a2645afa936ccaf
libraries/ghc-prim|529167773a9a036d7d3262707be4c5a2f6a04bcf
libraries/haskeline|bd39c0ce02ad07515450bfe5d667ce1635221b04
libraries/haskell2010|07f24cea759fae7994c89d77fae199862d9e2acf
libraries/haskell98|857ba8b14bba4b597d104e3d7264aee4bb4e74ae
libraries/hoopl|1ef68d6f2a8a7e89a5ed4cc78e3fefc89dc8ccab
libraries/hpc|4d661848575009bbcf3fe8e1f7c69da12f1d3a8e
libraries/integer-gmp|121cd52f9ae00ff0d6d072cc51939fb887db3fba
libraries/integer-simple|87ce6a97d7a07badc73d599a7b2ee629b2967866
libraries/old-locale|201f149646b5c2be6145436449d66bc69563c635
libraries/old-time|b2c2c9d01c3c71a9a37c11b455aba63b7a3199c2
libraries/parallel|e8ee35f4bb43cfde410d27e056d4083ced0a24c9
libraries/pretty|ab7e8d91470bb94c9e184dffbec89d0aae116f9b
libraries/primitive|75c3379b6d76e914cc3c7ffd290b6b1cad7ea3e6
libraries/process|76fb4b7e8861dec8054723a3c794c73511d07bb2
libraries/random|69bfde219bab869729fdbe9c1496371f912bf41e
libraries/stm|f3a4ab56195f943e149ccc14fbfe18c00d2fea70
libraries/template-haskell|e6323fef1a67cf9d8e91ca35d71a9c89d2494413
libraries/terminfo|64d1e6201b490942636f5f3883cf5e81c2338fc8
libraries/transformers|a59fb93860f84ccd44178dcbbb82cfea7e02cd07
libraries/unix|389820b2bcdc32be728e05fd98b69382f9c55721
libraries/utf8-string|d7386bea7fe286483ea559fb9b3898be080af700
libraries/vector|c4c5a740ec977a4300449bc85f4707ec641be923
libraries/xhtml|e6dc0c800f5a1c3ac8f0fcb477b2d76394c30d38
nofib|40c01620651d93166e2b8da156f113a4e7b827de
testsuite|4e07a12029dc856f79e0057ad955c3dcd657543a
utils/haddock|4fbd2b4b0088d373f0d026dc1cd7117269c7a9db
utils/hsc2hs|b46ae9e455a4e6766a4dba688c9bc2186056218a
-----------------------------------------------------------------------------
All done!
Nightly build finished successfully at Sat May 26 07:37:48 BST 2012

------------- GHC Test summary ---------------------

OVERALL SUMMARY for test run started at Sat May 26 02:13:10 BST 2012
    3343 total tests, which gave rise to
   12534 test cases, of which
       0 caused framework failures
    2590 were skipped

    9679 expected passes
     143 had missing libraries
     108 expected failures
       2 unexpected passes
      12 unexpected failures

Unexpected passes:
   typecheck/should_compile  tc078 (hpc,profasm)

Unexpected failures:
   ../../libraries/template-haskell/tests  dataToExpQUnit [exit code non-0] (profasm)
   dph/nbody                               dph-nbody-copy-opt [exit code non-0] (normal,threaded1)
   dph/nbody                               dph-nbody-vseg-opt [exit code non-0] (normal,threaded1)
   dph/words                               dph-words-copy-opt [exit code non-0] (normal)
   ffi/should_run                          capi_value [bad stdout or stderr] (ghci)
   ffi/should_run                          ffi_parsing_001 [bad stdout or stderr] (ghci)
   perf/compiler                           T4801 [stat too good] (normal)
   perf/compiler                           T783 [stat too good] (normal)
   perf/should_run                         T3736 [bad stderr] (normal)
   rts                                     T5423 [bad exit code] (normal)

----------------------------------------------------
Nightly run ended at Sat May 26 07:37:48 BST 2012
&lt;/pre&gt;</description>
    <dc:creator>GHC Build Reports</dc:creator>
    <dc:date>2012-05-26T06:37:50</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58393">
    <title>[nightly] 25-May-2012 build of STABLE on i386-unknown-linux(cam-02-unx)</title>
    <link>http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58393</link>
    <description>&lt;pre&gt;Build description = STABLE on i386-unknown-linux (cam-02-unx)
Build location    = /playpen/simonmar/nightly/STABLE
Build config file = /home/simonmar/nightly/site/msrc/conf-STABLE-cam-02-unx

Nightly build started on cam-02-unx at Fri May 25 18:10:01 BST 2012.
**** checking out new source tree                 ... warning: Remote branch ghc-7.4 not found in upstream origin, using HEAD instead
warning: Remote branch ghc-7.4 not found in upstream origin, using HEAD instead
ok.
**** Building stage 1 compiler                    ... ok.
GHC Version 7.4.1.20120516
**** Building stage 2 compiler                    ... ok.
**** Building stage 3 compiler                    ... ok.
**** building testsuite tools                     ... ok.
**** running tests                                ... ok (summary below).
**** building compiler binary distribution        ... ok.
**** uploading binary distribution                ... ok.
**** running nofib (-rtsopts -O2)                 ... ok.
**** running nofib (-rtsopts -O2 -fllvm)          ... ok. (6 failures)
**** running nofib (-rtsopts -O2 -prof -auto-all) ... ok. (2 failures)
**** running nofib (-rtsopts -O2 -prof -auto-all -fllvm)... ok. (1 failures)
**** publishing logs                              ... ssh: connect to host haskell.org port 22: Connection timed out
lost connection
failed.
Logs  are at http://www.haskell.org/ghc/dist/stable/logs
Dists are at http://www.haskell.org/ghc/dist/stable/dist
Docs  are at http://www.haskell.org/ghc/dist/stable/docs
-----------------------------------------------------------------------------
Respository hashes:
.|06ac4cf62828afe244c6bec946f22d2ad874c4ea
ghc-tarballs|01a8e25294fd5d501e0db115debafd4fd61970a0
libraries/Cabal|5ec3c8add63e13f508a26ebea109c60570966020
libraries/Win32|1eeb98baf338f81dc6001c7a2e9b05c95b7971a8
libraries/array|c671173d695617bc66c8ff52f5adc5847bebd358
libraries/base|41b87900b41fc6a88e75cd533344e554ad22efb6
libraries/binary|080f85c7b0ccc59a579b85d50132d62cb469b146
libraries/bytestring|b3cdac4bbdcfbe4ca384076c20ebd0def534f528
libraries/containers|fff28d7c1cd8e6e39aa5e099c6e5611ff1b95a19
libraries/deepseq|eded7da15fc03cfdd3be4bc2661c658eaa7c6d68
libraries/directory|03bcfde61e6c95043ff312e9544e6ad0d9dd96c9
libraries/extensible-exceptions|92d6c24745c2baa5f1a7aa34cbfd59457638f346
libraries/filepath|efa44de9abfab7fe3053c3d2ca6be965703dd04d
libraries/ghc-prim|60a85ba01303e1a28024e9983f5e9733fbd4888c
libraries/haskeline|647894c3bf28da59515a59abfd5dd2efff48936e
libraries/haskell2010|d1e29ce3a56d6a34bd82e9e7ccd396b6bec963ed
libraries/haskell98|4c71385d929b11dca8d2f41a96ca8a4b5aad9c3e
libraries/hoopl|4b2fa9c4b6af00ef6759ff62a2b3efa7d9a8e59c
libraries/hpc|ffd12b9a17dfdffef8ca4dd215e5c081d9b082fa
libraries/integer-gmp|d95eb887c0e8ed012065e2fd60c234a8db0eebf7
libraries/integer-simple|bc04c4f51a3edcd7145a66ffac796adb2eed4a11
libraries/mtl|a41470c1890073e678f0dca2a9ef4c02d55bf7c6
libraries/old-locale|b512c2988a36df94486ab55d7c7c10be9439b09c
libraries/old-time|bf84632130de935f63a52bfcf934dda7014fd960
libraries/pretty|f615a6aeb4abcdbfbfab67b0a82cef9a9a65ec49
libraries/process|d26eba94031fb129c40e6441f9960f315b1010f9
libraries/template-haskell|73e2749647f8ac21dbb0eea3d6df7c6834494a04
libraries/terminfo|baec6aff59d13ba294b370f9563e8068706392ce
libraries/unix|4152c1b17d8633dac8f830f334688393e527b061
libraries/utf8-string|ec2b85940a256dbc8771e5e2065ca8f76cc802d0
libraries/xhtml|aca0f6eeaea0fbacb492e9a5c1bb4ec35a1b70f7
nofib|40c01620651d93166e2b8da156f113a4e7b827de
testsuite|f13979449a837fa25526d3b23702a6e8aabed963
utils/haddock|d92d5a98adab5a94d34b763b9f4fd07557977ccb
utils/hsc2hs|385fc7dbeaf957976017a6159128bb697bbafa75
-----------------------------------------------------------------------------
All done!
Nightly build finished successfully at Sat May 26 06:03:23 BST 2012

------------- GHC Test summary ---------------------

OVERALL SUMMARY for test run started at Fri May 25 23:23:53 BST 2012
    3160 total tests, which gave rise to
   15591 test cases, of which
       0 caused framework failures
    3311 were skipped

   11838 expected passes
     440 expected failures
       0 unexpected passes
       2 unexpected failures

Unexpected failures:
   ../../libraries/base/tests  CPUTime001 [bad stdout] (threaded2)
   rts                         5250 [bad exit code] (optllvm)

----------------------------------------------------
Nightly run ended at Sat May 26 06:03:23 BST 2012
&lt;/pre&gt;</description>
    <dc:creator>GHC Build Reports</dc:creator>
    <dc:date>2012-05-26T05:03:24</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58392">
    <title>pgj (x86 FreeBSD HEAD), build 690, Success</title>
    <link>http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58392</link>
    <description>&lt;pre&gt;pgj (x86 FreeBSD HEAD), build 690

Build succeeded
Details: http://darcs.haskell.org/ghcBuilder/builders/pgj/690.html

git clone                    | Success
create mk/build.mk           | Success
get subrepos                 | Success
repo versions                | Success
touching clean-check files   | Success
setting version date         | Success
booting                      | Success
configuring                  | Success
creating check-remove-before | Success
compiling                    | Success
creating check-remove-after  | Success
compiling testremove         | Success
simulating clean             | Success
checking clean               | Success
making bindist               | Success
publishing bindist           | Success
testing bindist              | Success
testing                      | Success
testsuite summary            | Success

Build succeeded
Details: http://darcs.haskell.org/ghcBuilder/builders/pgj/690.html

File not deleted:    "compiler/ghc.cabal.old"
File not deleted:    "inplace"
File not deleted:    "libraries/base/include/EventConfig.h"
Deleted before file: "libraries/time/include/HsTimeConfig.h"
File not deleted:    "mk/config.mk.old"
File not deleted:    "mk/project.mk.old"
File not deleted:    "rts/libs.depend"
File not deleted:    "rts/package.conf.inplace"
File not deleted:    "rts/package.conf.inplace.raw"

OVERALL SUMMARY for test run started at Sat May 26 03:38:42 UTC 2012
    3320 total tests, which gave rise to
   14089 test cases, of which
       0 caused framework failures
   11089 were skipped

    2894 expected passes
      48 had missing libraries
      34 expected failures
       5 unexpected passes
      19 unexpected failures

Unexpected passes:
   ../../libraries/unix/tests  getEnvironment01 (normal)
   ../../libraries/unix/tests  getEnvironment02 (normal)
   ../../libraries/unix/tests  getGroupEntryForName (normal)
   ../../libraries/unix/tests  getUserEntryForName (normal)
   ../../libraries/unix/tests  queryfdoption01 (normal)

Unexpected failures:
   ../../libraries/directory/tests      T4113 [bad stdout] (normal)
   ../../libraries/directory/tests      getPermissions001 [bad exit code] (normal)
   ../../libraries/process/tests        process007 [bad stdout] (normal)
   ../../libraries/unix/tests/libposix  posix005 [bad stdout] (normal)
   driver                               dynHelloWorld [bad exit code] (dyn)
   driver/recomp011                     recomp011 [bad stdout] (normal)
   dynlibs                              T3807 [bad exit code] (normal)
   dynlibs                              T5373 [bad stdout] (normal)
   ghci/scripts                         T5979 [bad stderr] (ghci)
   ghci/scripts                         T6106 [bad stderr] (ghci)
   numeric/should_run                   numrun012 [bad stdout] (normal)
   perf/compiler                        T1969 [stat not good enough] (normal)
   perf/compiler                        T3064 [stat not good enough] (normal)
   plugins                              plugins01 [bad exit code] (normal)
   plugins                              plugins02 [stderr mismatch] (normal)
   plugins                              plugins03 [stderr mismatch] (normal)
   rts                                  T2615 [bad stdout] (normal)
   typecheck/should_fail                T5300 [stderr mismatch] (normal)
   typecheck/should_fail                T5691 [stderr mismatch] (normal)

_______________________________________________
Cvs-ghc mailing list
Cvs-ghc&amp;lt; at &amp;gt;haskell.org
http://www.haskell.org/mailman/listinfo/cvs-ghc
&lt;/pre&gt;</description>
    <dc:creator>Builder</dc:creator>
    <dc:date>2012-05-26T04:25:28</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58391">
    <title>[nightly] 25-May-2012 build of HEAD on x86_64-unknown-linux(cam-04-unx)</title>
    <link>http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58391</link>
    <description>&lt;pre&gt;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 Fri May 25 18:00:01 BST 2012.
**** checking out new source tree                 ... ok.
**** Building stage 1 compiler                    ... ok.
GHC Version 7.5.20120525
**** Building stage 2 compiler                    ... ok.
**** Building stage 3 compiler                    ... ok.
**** building source distribution                 ... ok.
**** uploading source distribution                ... ok.
**** building testsuite tools                     ... ok.
**** running tests                                ... ok (summary below).
**** building compiler binary distribution        ... ok.
**** uploading binary distribution                ... ok.
**** running nofib (-rtsopts -O2)                 ... ok.
**** running nofib (-rtsopts -O2 -fllvm)          ... ok.
**** running nofib (-rtsopts -O2 -prof -auto-all) ... ok.
**** running nofib (-rtsopts -O2 -prof -auto-all -fllvm)... ok.
**** publishing logs                              ... ok.
Logs  are at http://www.haskell.org/ghc/dist/current/logs
Dists are at http://www.haskell.org/ghc/dist/current/dist
Docs  are at http://www.haskell.org/ghc/dist/current/docs
-----------------------------------------------------------------------------
Respository hashes:
.|05289c2ac1203a5d5bbe8236d0239946b5093116
ghc-tarballs|5e1f5d19ef2f836d180947aadc0dd9a9851edf28
libraries/Cabal|cc2c5a78f8fd5b2ab2c0dd3629a8184e7e0c95c4
libraries/Win32|bda29f7fe0b61b70f558549407e598c9256ad293
libraries/array|2a3d41bcae1d0a5d192e614370459dfdd31f3bcf
libraries/base|dc521b8b23847b07072a1aea0f56614ae2370e02
libraries/binary|527be910f16a4bc047069281fc58bc6748e5fecc
libraries/bytestring|fc8e1ee849b10fe2b63eb1024aff3d6624ddd069
libraries/containers|d4e8b5bd70f87af4463410df3aade72d42d675e0
libraries/deepseq|61d95ab64b1610817288e6f6b880ca2770fcc68f
libraries/directory|854bd9e4ec8c502327300c939ad197cbc39bde2c
libraries/dph|01416ec30eb73ac512cdf894a7bb44e5cebd8457
libraries/filepath|f451c8b4330fb69573533ed19a2645afa936ccaf
libraries/ghc-prim|529167773a9a036d7d3262707be4c5a2f6a04bcf
libraries/haskeline|bd39c0ce02ad07515450bfe5d667ce1635221b04
libraries/haskell2010|07f24cea759fae7994c89d77fae199862d9e2acf
libraries/haskell98|857ba8b14bba4b597d104e3d7264aee4bb4e74ae
libraries/hoopl|1ef68d6f2a8a7e89a5ed4cc78e3fefc89dc8ccab
libraries/hpc|4d661848575009bbcf3fe8e1f7c69da12f1d3a8e
libraries/integer-gmp|121cd52f9ae00ff0d6d072cc51939fb887db3fba
libraries/integer-simple|87ce6a97d7a07badc73d599a7b2ee629b2967866
libraries/old-locale|201f149646b5c2be6145436449d66bc69563c635
libraries/old-time|b2c2c9d01c3c71a9a37c11b455aba63b7a3199c2
libraries/parallel|e8ee35f4bb43cfde410d27e056d4083ced0a24c9
libraries/pretty|ab7e8d91470bb94c9e184dffbec89d0aae116f9b
libraries/primitive|75c3379b6d76e914cc3c7ffd290b6b1cad7ea3e6
libraries/process|76fb4b7e8861dec8054723a3c794c73511d07bb2
libraries/random|69bfde219bab869729fdbe9c1496371f912bf41e
libraries/stm|f3a4ab56195f943e149ccc14fbfe18c00d2fea70
libraries/template-haskell|e6323fef1a67cf9d8e91ca35d71a9c89d2494413
libraries/terminfo|64d1e6201b490942636f5f3883cf5e81c2338fc8
libraries/transformers|a59fb93860f84ccd44178dcbbb82cfea7e02cd07
libraries/unix|389820b2bcdc32be728e05fd98b69382f9c55721
libraries/utf8-string|d7386bea7fe286483ea559fb9b3898be080af700
libraries/vector|c4c5a740ec977a4300449bc85f4707ec641be923
libraries/xhtml|e6dc0c800f5a1c3ac8f0fcb477b2d76394c30d38
nofib|40c01620651d93166e2b8da156f113a4e7b827de
testsuite|4e07a12029dc856f79e0057ad955c3dcd657543a
utils/haddock|4fbd2b4b0088d373f0d026dc1cd7117269c7a9db
utils/hsc2hs|b46ae9e455a4e6766a4dba688c9bc2186056218a
-----------------------------------------------------------------------------
All done!
Nightly build finished successfully at Sat May 26 02:39:53 BST 2012

------------- GHC Test summary ---------------------

OVERALL SUMMARY for test run started at Fri May 25 22:08:39 BST 2012
    3343 total tests, which gave rise to
   16440 test cases, of which
       0 caused framework failures
    3543 were skipped

   12564 expected passes
     194 had missing libraries
     131 expected failures
       4 unexpected passes
       4 unexpected failures

Unexpected passes:
   typecheck/should_compile  tc078 (hpc,optasm,profasm)
   typecheck/should_compile  tc126 (optasm)

Unexpected failures:
   ../../libraries/template-haskell/tests  dataToExpQUnit [exit code non-0] (profasm)
   ffi/should_run                          capi_value [bad stdout or stderr] (ghci)
   ffi/should_run                          ffi_parsing_001 [bad stdout or stderr] (ghci)
   perf/compiler                           T4801 [stat not good enough] (normal)

----------------------------------------------------
Nightly run ended at Sat May 26 02:39:53 BST 2012
&lt;/pre&gt;</description>
    <dc:creator>GHC Build Reports</dc:creator>
    <dc:date>2012-05-26T01:39:54</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58390">
    <title>[commit: ghc] imp-param-class: Change `let ?x = ...` to use the `IP`class. (13748fc)</title>
    <link>http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58390</link>
    <description>&lt;pre&gt;Repository : ssh://darcs.haskell.org//srv/darcs/ghc

On branch  : imp-param-class

http://hackage.haskell.org/trac/ghc/changeset/13748fcead3376f4cf2bd0198de7aa2fc4c033be


commit 13748fcead3376f4cf2bd0198de7aa2fc4c033be
Author: Iavor S. Diatchki &amp;lt;diatchki&amp;lt; at &amp;gt;galois.com&amp;gt;
Date:   Fri May 25 17:31:40 2012 -0700

    Change `let ?x = ...` to use the `IP` class.
    
    XXX: Technically, the IP bindings that define the values of the implicit
    parameters should be cast to a dictionary for the class (see `mkIPBox` in
    module `MkCore`).  At the moment we don't do this, which is not quite
    right (although things still work because the value and the dictionary
    are represented in the same way).


 compiler/coreSyn/MkCore.lhs    |    8 +++++++-
 compiler/typecheck/TcBinds.lhs |   12 +++++++++---
 2 files changed, 16 insertions(+), 4 deletions(-)

diff --git a/compiler/coreSyn/MkCore.lhs b/compiler/coreSyn/MkCore.lhs
index 53386fe..a2849a8 100644
--- a/compiler/coreSyn/MkCore.lhs
+++ b/compiler/coreSyn/MkCore.lhs
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -303,11 +303,17 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; mkStringExprFS str
 
 \begin{code}
 
+-- XXX:  Here we should be casting the defintions of the implicit
+-- parameter to a dictionary for the IP class.  The class has only
+-- one method so the two use the same representaion, but it'd be
+-- nice to do this correctly.
+-- What is the appropriate coerciosn to use though?
 mkIPBox :: IPName IpId -&amp;gt; CoreExpr -&amp;gt; CoreExpr
-mkIPBox ipx e = e `Cast` mkSymCo (mkAxInstCo (ipCoAxiom ip) [ty])
+mkIPBox ipx e = e {-`Cast` mkSymCo (mkAxInstCo (ipCoAxiom ip) [ty])
   where x = ipNameName ipx
         Just (ip, ty) = getIPPredTy_maybe (evVarPred x)
         -- NB: don't use the DataCon work id because we don't generate code for it
+-}
 
 mkIPUnbox :: IPName IpId -&amp;gt; CoreExpr
 mkIPUnbox ipx = Var x `Cast` mkAxInstCo (ipCoAxiom ip) [ty]
diff --git a/compiler/typecheck/TcBinds.lhs b/compiler/typecheck/TcBinds.lhs
index e6e0757..6148fe3 100644
--- a/compiler/typecheck/TcBinds.lhs
+++ b/compiler/typecheck/TcBinds.lhs
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -45,6 +45,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; import Util
 import BasicTypes
 import Outputable
 import FastString
+import Type(mkStrLitTy)
+import PrelNames(ipClassName)
 
 import Control.Monad
 
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -207,7 +209,9 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; tcLocalBinds (HsValBinds (ValBindsOut binds sigs)) thing_inside
 tcLocalBinds (HsValBinds (ValBindsIn {})) _ = panic "tcLocalBinds"
 
 tcLocalBinds (HsIPBinds (IPBinds ip_binds _)) thing_inside
-  = do  { (given_ips, ip_binds') &amp;lt;- mapAndUnzipM (wrapLocSndM tc_ip_bind) ip_binds
+  = do  { ipClass &amp;lt;- tcLookupClass ipClassName
+        ; (given_ips, ip_binds') &amp;lt;- mapAndUnzipM
+                                    (wrapLocSndM (tc_ip_bind ipClass)) ip_binds
 
         -- If the binding binds ?x = E, we  must now 
         -- discharge any ?x constraints in expr_lie
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -222,9 +226,11 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; tcLocalBinds (HsIPBinds (IPBinds ip_binds _)) thing_inside
         -- I wonder if we should do these one at at time
         -- Consider     ?x = 4
         --              ?y = ?x + 1
-    tc_ip_bind (IPBind ip expr) 
+    tc_ip_bind ipClass (IPBind ip expr) 
        = do { ty &amp;lt;- newFlexiTyVarTy argTypeKind
-            ; ip_id &amp;lt;- newIP ip ty
+              -- XXX: Just switch to string in the bind
+            ; let param = mkStrLitTy $ occNameFS $ nameOccName $ ipNameName ip
+            ; ip_id &amp;lt;- newDict ipClass [ param, ty ]
             ; expr' &amp;lt;- tcMonoExpr expr ty
             ; return (ip_id, (IPBind (IPName ip_id) expr')) }
 \end{code}
&lt;/pre&gt;</description>
    <dc:creator>Iavor Diatchki</dc:creator>
    <dc:date>2012-05-26T00:31:48</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58389">
    <title>[commit: ghc] imp-param-class: Change `isIPPred` to test for the new`IP` class. (2bc826b)</title>
    <link>http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58389</link>
    <description>&lt;pre&gt;Repository : ssh://darcs.haskell.org//srv/darcs/ghc

On branch  : imp-param-class

http://hackage.haskell.org/trac/ghc/changeset/2bc826b0f86103c5163cdc5bf99c533cf06bdcb6


commit 2bc826b0f86103c5163cdc5bf99c533cf06bdcb6
Author: Iavor S. Diatchki &amp;lt;diatchki&amp;lt; at &amp;gt;galois.com&amp;gt;
Date:   Fri May 25 17:26:58 2012 -0700

    Change `isIPPred` to test for the new `IP` class.


 compiler/types/Type.lhs |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/compiler/types/Type.lhs b/compiler/types/Type.lhs
index 62cc7bb..97e869b 100644
--- a/compiler/types/Type.lhs
+++ b/compiler/types/Type.lhs
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -157,7 +157,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; import Class
 import TyCon
 import TysPrim
 import {-# SOURCE #-} TysWiredIn ( eqTyCon, mkBoxedTupleTy )
-import PrelNames         ( eqTyConKey )
+import PrelNames         ( eqTyConKey, ipClassName )
 
 -- others
 import {-# SOURCE #-} IParam ( ipTyCon )
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -851,9 +851,10 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; isClassPred ty = case tyConAppTyCon_maybe ty of
 isEqPred ty = case tyConAppTyCon_maybe ty of
     Just tyCon -&amp;gt; tyCon `hasKey` eqTyConKey
     _          -&amp;gt; False
+
 isIPPred ty = case tyConAppTyCon_maybe ty of
-    Just tyCon | Just _ &amp;lt;- tyConIP_maybe tyCon -&amp;gt; True
-    _                                          -&amp;gt; False
+    Just tyCon -&amp;gt; tyConName tyCon == ipClassName
+    _          -&amp;gt; False
 \end{code}
 
 Make PredTypes
&lt;/pre&gt;</description>
    <dc:creator>Iavor Diatchki</dc:creator>
    <dc:date>2012-05-26T00:31:46</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58388">
    <title>am-deb7-64 (HEAD), build 106, Success</title>
    <link>http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58388</link>
    <description>&lt;pre&gt;am-deb7-64 (HEAD), build 106

Build succeeded
Details: http://darcs.haskell.org/ghcBuilder/builders/am-deb7-64/106.html

git clone                    | Success
create mk/build.mk           | Success
get subrepos                 | Success
repo versions                | Success
touching clean-check files   | Success
setting version date         | Success
booting                      | Success
configuring                  | Success
creating check-remove-before | Success
compiling                    | Success
creating check-remove-after  | Success
compiling testremove         | Success
simulating clean             | Success
checking clean               | Success
making bindist               | Success
testing bindist              | Success
testing                      | Success
testsuite summary            | Success

Build succeeded
Details: http://darcs.haskell.org/ghcBuilder/builders/am-deb7-64/106.html

File not deleted:    "compiler/ghc.cabal.old"
File not deleted:    "inplace"
File not deleted:    "libraries/base/include/EventConfig.h"
Deleted before file: "libraries/time/include/HsTimeConfig.h"
File not deleted:    "mk/config.mk.old"
File not deleted:    "mk/project.mk.old"
File not deleted:    "rts/libs.depend"
File not deleted:    "rts/package.conf.inplace"
File not deleted:    "rts/package.conf.inplace.raw"

OVERALL SUMMARY for test run started at Sat May 26 03:11:05 MSK 2012
    3320 total tests, which gave rise to
   14089 test cases, of which
       0 caused framework failures
   11088 were skipped

    2912 expected passes
      48 had missing libraries
      35 expected failures
       0 unexpected passes
       6 unexpected failures

Unexpected failures:
   ghci/scripts           T5979 [bad stderr] (ghci)
   perf/compiler          T4801 [stat not good enough] (normal)
   perf/compiler          parsing001 [stat too good] (normal)
   rts                    testblockalloc [bad exit code] (normal)
   typecheck/should_fail  T5300 [stderr mismatch] (normal)
   typecheck/should_fail  T5691 [stderr mismatch] (normal)

_______________________________________________
Cvs-ghc mailing list
Cvs-ghc&amp;lt; at &amp;gt;haskell.org
http://www.haskell.org/mailman/listinfo/cvs-ghc
&lt;/pre&gt;</description>
    <dc:creator>Builder</dc:creator>
    <dc:date>2012-05-26T00:17:22</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58387">
    <title>[nightly] 25-May-2012 build of STABLE on x86_64-unknown-linux(cam-04-unx)</title>
    <link>http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58387</link>
    <description>&lt;pre&gt;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 Fri May 25 18:10:01 BST 2012.
**** checking out new source tree                 ... warning: Remote branch ghc-7.4 not found in upstream origin, using HEAD instead
warning: Remote branch ghc-7.4 not found in upstream origin, using HEAD instead
ok.
**** Building stage 1 compiler                    ... ok.
GHC Version 7.4.1.20120516
**** Building stage 2 compiler                    ... ok.
**** Building stage 3 compiler                    ... ok.
**** building source distribution                 ... ok.
**** uploading source distribution                ... ok.
**** building testsuite tools                     ... ok.
**** running tests                                ... ok (summary below).
**** building compiler binary distribution        ... ok.
**** uploading binary distribution                ... ok.
**** running nofib (-rtsopts -O2)                 ... ok.
**** running nofib (-rtsopts -O2 -fllvm)          ... ok.
**** running nofib (-rtsopts -O2 -prof -auto-all) ... ok.
**** running nofib (-rtsopts -O2 -prof -auto-all -fllvm)... ok.
**** publishing logs                              ... ok.
Logs  are at http://www.haskell.org/ghc/dist/stable/logs
Dists are at http://www.haskell.org/ghc/dist/stable/dist
Docs  are at http://www.haskell.org/ghc/dist/stable/docs
-----------------------------------------------------------------------------
Respository hashes:
.|06ac4cf62828afe244c6bec946f22d2ad874c4ea
ghc-tarballs|01a8e25294fd5d501e0db115debafd4fd61970a0
libraries/Cabal|5ec3c8add63e13f508a26ebea109c60570966020
libraries/Win32|1eeb98baf338f81dc6001c7a2e9b05c95b7971a8
libraries/array|c671173d695617bc66c8ff52f5adc5847bebd358
libraries/base|41b87900b41fc6a88e75cd533344e554ad22efb6
libraries/binary|080f85c7b0ccc59a579b85d50132d62cb469b146
libraries/bytestring|b3cdac4bbdcfbe4ca384076c20ebd0def534f528
libraries/containers|fff28d7c1cd8e6e39aa5e099c6e5611ff1b95a19
libraries/deepseq|eded7da15fc03cfdd3be4bc2661c658eaa7c6d68
libraries/directory|03bcfde61e6c95043ff312e9544e6ad0d9dd96c9
libraries/extensible-exceptions|92d6c24745c2baa5f1a7aa34cbfd59457638f346
libraries/filepath|efa44de9abfab7fe3053c3d2ca6be965703dd04d
libraries/ghc-prim|60a85ba01303e1a28024e9983f5e9733fbd4888c
libraries/haskeline|647894c3bf28da59515a59abfd5dd2efff48936e
libraries/haskell2010|d1e29ce3a56d6a34bd82e9e7ccd396b6bec963ed
libraries/haskell98|4c71385d929b11dca8d2f41a96ca8a4b5aad9c3e
libraries/hoopl|4b2fa9c4b6af00ef6759ff62a2b3efa7d9a8e59c
libraries/hpc|ffd12b9a17dfdffef8ca4dd215e5c081d9b082fa
libraries/integer-gmp|d95eb887c0e8ed012065e2fd60c234a8db0eebf7
libraries/integer-simple|bc04c4f51a3edcd7145a66ffac796adb2eed4a11
libraries/mtl|a41470c1890073e678f0dca2a9ef4c02d55bf7c6
libraries/old-locale|b512c2988a36df94486ab55d7c7c10be9439b09c
libraries/old-time|bf84632130de935f63a52bfcf934dda7014fd960
libraries/pretty|f615a6aeb4abcdbfbfab67b0a82cef9a9a65ec49
libraries/process|d26eba94031fb129c40e6441f9960f315b1010f9
libraries/template-haskell|73e2749647f8ac21dbb0eea3d6df7c6834494a04
libraries/terminfo|baec6aff59d13ba294b370f9563e8068706392ce
libraries/unix|4152c1b17d8633dac8f830f334688393e527b061
libraries/utf8-string|ec2b85940a256dbc8771e5e2065ca8f76cc802d0
libraries/xhtml|aca0f6eeaea0fbacb492e9a5c1bb4ec35a1b70f7
nofib|40c01620651d93166e2b8da156f113a4e7b827de
testsuite|f13979449a837fa25526d3b23702a6e8aabed963
utils/haddock|d92d5a98adab5a94d34b763b9f4fd07557977ccb
utils/hsc2hs|385fc7dbeaf957976017a6159128bb697bbafa75
-----------------------------------------------------------------------------
All done!
Nightly build finished successfully at Sat May 26 01:08:13 BST 2012

------------- GHC Test summary ---------------------

OVERALL SUMMARY for test run started at Fri May 25 21:25:42 BST 2012
    3160 total tests, which gave rise to
   15591 test cases, of which
       0 caused framework failures
    3301 were skipped

   11843 expected passes
     445 expected failures
       0 unexpected passes
       2 unexpected failures

Unexpected failures:
   ../../libraries/directory/tests  createDirectoryIfMissing001 [bad heap profile] (profasm)
   programs/barton-mangler-bug      barton-mangler-bug [bad heap profile] (profasm)

----------------------------------------------------
Nightly run ended at Sat May 26 01:08:13 BST 2012
&lt;/pre&gt;</description>
    <dc:creator>GHC Build Reports</dc:creator>
    <dc:date>2012-05-26T00:08:14</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58386">
    <title>[commit: testsuite] master: Test Trac #6123,and improve an error message in T2627b (4e07a12)</title>
    <link>http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58386</link>
    <description>&lt;pre&gt;Repository : ssh://darcs.haskell.org//srv/darcs/testsuite

On branch  : master

http://hackage.haskell.org/trac/ghc/changeset/4e07a12029dc856f79e0057ad955c3dcd657543a


commit 4e07a12029dc856f79e0057ad955c3dcd657543a
Author: Simon Peyton Jones &amp;lt;simonpj&amp;lt; at &amp;gt;microsoft.com&amp;gt;
Date:   Fri May 25 11:47:17 2012 +0100

    Test Trac #6123, and improve an error message in T2627b


 tests/indexed-types/should_fail/T2627b.stderr |   12 ++++++++----
 tests/indexed-types/should_fail/T6123.hs      |   10 ++++++++++
 tests/indexed-types/should_fail/T6123.stderr  |   10 ++++++++++
 tests/indexed-types/should_fail/all.T         |    2 +-
 4 files changed, 29 insertions(+), 5 deletions(-)

diff --git a/tests/indexed-types/should_fail/T2627b.stderr b/tests/indexed-types/should_fail/T2627b.stderr
index c0e03ce..9d5504f 100644
--- a/tests/indexed-types/should_fail/T2627b.stderr
+++ b/tests/indexed-types/should_fail/T2627b.stderr
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1,7 +1,11 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 
-T2627b.hs:20:24:
-    Occurs check: cannot construct the infinite type:
-      b0 = Dual (Dual b0)
-    In the expression: conn undefined undefined
+T2627b.hs:20:14:
+    Couldn't match expected type `b0' with actual type `Dual (Dual b0)'
+      `b0' is untouchable
+           inside the constraints (b ~ W a2 b2)
+           bound at a pattern with constructor
+                      Wr :: forall a b. a -&amp;gt; Comm b -&amp;gt; Comm (W a b),
+                    in an equation for `conn'
+    In the pattern: Wr a r
     In an equation for `conn':
         conn (Rd k) (Wr a r) = conn undefined undefined
diff --git a/tests/indexed-types/should_fail/T6123.hs b/tests/indexed-types/should_fail/T6123.hs
new file mode 100644
index 0000000..78e1d78
--- /dev/null
+++ b/tests/indexed-types/should_fail/T6123.hs
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -0,0 +1,10 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
+{-# LANGUAGE TypeFamilies #-}
+
+module T6123 where
+
+type family Id a
+
+cid :: a ~ Id a =&amp;gt; a -&amp;gt; a
+cid x = x
+
+cundefined = cid undefined
diff --git a/tests/indexed-types/should_fail/T6123.stderr b/tests/indexed-types/should_fail/T6123.stderr
new file mode 100644
index 0000000..c389866
--- /dev/null
+++ b/tests/indexed-types/should_fail/T6123.stderr
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -0,0 +1,10 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
+
+T6123.hs:10:14:
+    Couldn't match expected type `a0' with actual type `Id a0'
+    The type variable `a0' is ambiguous
+    Possible cause: the monomorphism restriction applied to the following:
+      cundefined :: a0 (bound at T6123.hs:10:1)
+    Probable fix: give these definition(s) an explicit type signature
+                  or use -XNoMonomorphismRestriction
+    In the expression: cid undefined
+    In an equation for `cundefined': cundefined = cid undefined
diff --git a/tests/indexed-types/should_fail/all.T b/tests/indexed-types/should_fail/all.T
index d3e691f..8117a72 100644
--- a/tests/indexed-types/should_fail/all.T
+++ b/tests/indexed-types/should_fail/all.T
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -73,6 +73,6 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; test('T1897b', normal, compile_fail, [''])
 test('T5439', normal, compile_fail, [''])
 test('T5515', normal, compile_fail, [''])
 test('T5763', expect_broken(5673), compile_fail, [''])
-
 test('T5934', normal, compile_fail, [''])
+test('T6123', normal, compile_fail, [''])
&lt;/pre&gt;</description>
    <dc:creator>Simon Peyton Jones</dc:creator>
    <dc:date>2012-05-25T10:48:07</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58385">
    <title>[commit: ghc] master: Improve occurs-check error reporting (fix Trac#6123) (05289c2)</title>
    <link>http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58385</link>
    <description>&lt;pre&gt;Repository : ssh://darcs.haskell.org//srv/darcs/ghc

On branch  : master

http://hackage.haskell.org/trac/ghc/changeset/05289c2ac1203a5d5bbe8236d0239946b5093116


commit 05289c2ac1203a5d5bbe8236d0239946b5093116
Author: Simon Peyton Jones &amp;lt;simonpj&amp;lt; at &amp;gt;microsoft.com&amp;gt;
Date:   Fri May 25 11:45:53 2012 +0100

    Improve occurs-check error reporting (fix Trac #6123)
    
    We were wrongly reporting (a ~ F a) as an occurs-check error
    when F is a type function.

 compiler/typecheck/TcCanonical.lhs |  112 ++++++++++++++++++-----------------
 compiler/typecheck/TcErrors.lhs    |   41 ++++++--------
 compiler/typecheck/TcInteract.lhs  |    5 ++
 3 files changed, 80 insertions(+), 78 deletions(-)


Diff suppressed because of size. To see it, use:

    git show 05289c2ac1203a5d5bbe8236d0239946b5093116
&lt;/pre&gt;</description>
    <dc:creator>Simon Peyton Jones</dc:creator>
    <dc:date>2012-05-25T10:47:37</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58384">
    <title>[commit: haddock] master: Follow changes in LHsTyVarBndrs (4fbd2b4)</title>
    <link>http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58384</link>
    <description>&lt;pre&gt;Repository : ssh://darcs.haskell.org//srv/darcs/haddock

On branch  : master

http://hackage.haskell.org/trac/ghc/changeset/4fbd2b4b0088d373f0d026dc1cd7117269c7a9db


commit 4fbd2b4b0088d373f0d026dc1cd7117269c7a9db
Author: Simon Peyton Jones &amp;lt;simonpj&amp;lt; at &amp;gt;microsoft.com&amp;gt;
Date:   Fri May 25 08:30:11 2012 +0100

    Follow changes in LHsTyVarBndrs


 src/Haddock/Backends/Hoogle.hs  |    2 +-
 src/Haddock/Convert.hs          |   32 ++++++++++++++++++--------------
 src/Haddock/Interface/Create.hs |    2 +-
 src/Haddock/Interface/Rename.hs |    7 ++++---
 src/Haddock/Utils.hs            |    8 +++++++-
 5 files changed, 31 insertions(+), 20 deletions(-)

diff --git a/src/Haddock/Backends/Hoogle.hs b/src/Haddock/Backends/Hoogle.hs
index d176c9f..78e81d1 100644
--- a/src/Haddock/Backends/Hoogle.hs
+++ b/src/Haddock/Backends/Hoogle.hs
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -141,7 +141,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; ppClass x = out x{tcdSigs=[]} :
         addContext _ = error "expected TypeSig"
 
         f (HsForAllTy a b con d) = HsForAllTy a b (reL (context : unLoc con)) d
-        f t = HsForAllTy Implicit (mkHsQTvs []) (reL [context]) (reL t)
+        f t = HsForAllTy Implicit emptyHsQTvs (reL [context]) (reL t)
 
         context = nlHsTyConApp (unL $ tcdLName x)
             (map (reL . HsTyVar . hsTyVarName . unL) (hsQTvBndrs (tcdTyVars x)))
diff --git a/src/Haddock/Convert.hs b/src/Haddock/Convert.hs
index e2eb990..b5b905e 100644
--- a/src/Haddock/Convert.hs
+++ b/src/Haddock/Convert.hs
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -31,6 +31,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; import TysPrim ( alphaTyVars )
 import TysWiredIn ( listTyConName, eqTyCon )
 import Bag ( emptyBag )
 import SrcLoc ( Located, noLoc, unLoc )
+import Data.List( partition )
 
 
 -- the main function here! yay!
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -97,12 +98,14 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; synifyTyCon tc
   | isFunTyCon tc || isPrimTyCon tc 
   = TyDecl { tcdLName = synifyName tc
            , tcdTyVars =       -- tyConTyVars doesn't work on fun/prim, but we can make them up:
-                         mkHsQTvs $ zipWith
-                            (\fakeTyVar realKind -&amp;gt; noLoc $
-                                KindedTyVar (getName fakeTyVar) 
-                                            (synifyKindSig realKind))
-                            alphaTyVars --a, b, c... which are unfortunately all kind *
-                            (fst . splitKindFunTys $ tyConKind tc)
+                         let mk_hs_tv realKind fakeTyVar 
+                                = noLoc $ KindedTyVar (getName fakeTyVar) 
+                                                      (synifyKindSig realKind)
+                         in HsQTvs { hsq_kvs = []   -- No kind polymorhism
+                                   , hsq_tvs = zipWith mk_hs_tv (fst (splitKindFunTys (tyConKind tc)))
+                                                                alphaTyVars --a, b, c... which are unfortunately all kind *
+                                   }
+                            
            , tcdTyDefn = TyData { td_ND = DataType  -- arbitrary lie, they are neither 
                                                     -- algebraic data nor newtype:
                                 , td_ctxt = noLoc []
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -231,15 +234,16 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; synifyCtx = noLoc . map (synifyType WithinType)
 
 
 synifyTyVars :: [TyVar] -&amp;gt; LHsTyVarBndrs Name
-synifyTyVars tvs = mkHsQTvs (map synifyTyVar tvs)
+synifyTyVars ktvs = HsQTvs { hsq_kvs = map tyVarName kvs
+                           , hsq_tvs = map synifyTyVar tvs }
   where
-    synifyTyVar tv = noLoc $ let
-      kind = tyVarKind tv
-      name = getName tv
-     in if isLiftedTypeKind kind
-        then UserTyVar name
-        else KindedTyVar name (synifyKindSig kind)
-
+    (kvs, tvs) = partition isKindVar ktvs
+    synifyTyVar tv 
+      | isLiftedTypeKind kind = noLoc (UserTyVar name)
+      | otherwise             = noLoc (KindedTyVar name (synifyKindSig kind))
+      where
+        kind = tyVarKind tv
+        name = getName tv
 
 --states of what to do with foralls:
 data SynifyTypeState
diff --git a/src/Haddock/Interface/Create.hs b/src/Haddock/Interface/Create.hs
index f5b1e8d..9db2dc6 100644
--- a/src/Haddock/Interface/Create.hs
+++ b/src/Haddock/Interface/Create.hs
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -660,7 +660,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; extractClassDecl :: Name -&amp;gt; [Located Name] -&amp;gt; LSig Name -&amp;gt; LSig Name
 extractClassDecl c tvs0 (L pos (TypeSig lname ltype)) = case ltype of
   L _ (HsForAllTy expl tvs (L _ preds) ty) -&amp;gt;
     L pos (TypeSig lname (noLoc (HsForAllTy expl tvs (lctxt preds) ty)))
-  _ -&amp;gt; L pos (TypeSig lname (noLoc (mkImplicitHsForAllTy (lctxt []) ltype)))
+  _ -&amp;gt; L pos (TypeSig lname (noLoc (HsForAllTy Implicit emptyHsQTvs (lctxt []) ltype)))
   where
     lctxt = noLoc . ctxt
     ctxt preds = nlHsTyConApp c (map toTypeNoLoc tvs0) : preds
diff --git a/src/Haddock/Interface/Rename.hs b/src/Haddock/Interface/Rename.hs
index 5e819e5..0912d95 100644
--- a/src/Haddock/Interface/Rename.hs
+++ b/src/Haddock/Interface/Rename.hs
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -265,9 +265,10 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; renameType t = case t of
 
 
 renameLTyVarBndrs :: LHsTyVarBndrs Name -&amp;gt; RnM (LHsTyVarBndrs DocName)
-renameLTyVarBndrs qtvs
-  = do { tvs' &amp;lt;- mapM renameLTyVarBndr (hsQTvBndrs qtvs) 
-       ; return (mkHsQTvs tvs') }
+renameLTyVarBndrs (HsQTvs { hsq_kvs = _, hsq_tvs = tvs })
+  = do { tvs' &amp;lt;- mapM renameLTyVarBndr tvs
+       ; return (HsQTvs { hsq_kvs = error "haddock:renameLTyVarBndrs", hsq_tvs = tvs' }) }
+                -- This is rather bogus, but I'm not sure what else to do
 
 renameLTyVarBndr :: LHsTyVarBndr Name -&amp;gt; RnM (LHsTyVarBndr DocName)
 renameLTyVarBndr (L loc (UserTyVar n))
diff --git a/src/Haddock/Utils.hs b/src/Haddock/Utils.hs
index 3814b97..4114b1d 100644
--- a/src/Haddock/Utils.hs
+++ b/src/Haddock/Utils.hs
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -13,7 +13,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 module Haddock.Utils (
 
   -- * Misc utilities
-  restrictTo,
+  restrictTo, emptyHsQTvs,
   toDescription, toInstalledDescription,
 
   -- * Filename utilities
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -172,6 +172,12 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; restrictDecls names decls = mapMaybe (filterLSigNames (`elem` names)) decls
 restrictATs :: [Name] -&amp;gt; [LTyClDecl Name] -&amp;gt; [LTyClDecl Name]
 restrictATs names ats = [ at | at &amp;lt;- ats , tcdName (unL at) `elem` names ]
 
+emptyHsQTvs :: LHsTyVarBndrs Name
+-- This function is here, rather than in HsTypes, because it *renamed*, but
+-- does not necessarily have all the rigt kind variables.  It is used
+-- in Haddock just for printing, so it doesn't matter
+emptyHsQTvs = HsQTvs { hsq_kvs = error "haddock:emptyHsQTvs", hsq_tvs = [] }
+
 
 --------------------------------------------------------------------------------
 -- * Filename mangling functions stolen from s main/DriverUtil.lhs.
&lt;/pre&gt;</description>
    <dc:creator>Simon Peyton Jones</dc:creator>
    <dc:date>2012-05-25T07:30:26</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58383">
    <title>pgj-freebsd-amd64-stable (amd64 FreeBSD STABLE), build 569, Success</title>
    <link>http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58383</link>
    <description>&lt;pre&gt;pgj-freebsd-amd64-stable (amd64 FreeBSD STABLE), build 569

Build succeeded
Details: http://darcs.haskell.org/ghcBuilder/builders/pgj-freebsd-amd64-stable/569.html

git clone                    | Success
create mk/build.mk           | Success
get subrepos                 | Success
repo versions                | Success
touching clean-check files   | Success
setting version date         | Success
booting                      | Success
configuring                  | Success
creating check-remove-before | Success
compiling                    | Success
creating check-remove-after  | Success
compiling testremove         | Success
simulating clean             | Success
checking clean               | Success
making bindist               | Success
publishing bindist           | Success
testing bindist              | Success
testing                      | Success
testsuite summary            | Success

Build succeeded
Details: http://darcs.haskell.org/ghcBuilder/builders/pgj-freebsd-amd64-stable/569.html

File not deleted:    "compiler/ghc.cabal.old"
File not deleted:    "inplace"
File not deleted:    "libraries/base/base.buildinfo"
File not deleted:    "libraries/base/config.log"
File not deleted:    "libraries/base/config.status"
File not deleted:    "libraries/base/include/EventConfig.h"
File not deleted:    "libraries/base/include/HsBaseConfig.h"
File not deleted:    "libraries/directory/config.log"
File not deleted:    "libraries/directory/config.status"
File not deleted:    "libraries/directory/include/HsDirectoryConfig.h"
File not deleted:    "libraries/doc-index-124.html"
File not deleted:    "libraries/doc-index-126.html"
File not deleted:    "libraries/doc-index-33.html"
File not deleted:    "libraries/doc-index-36.html"
File not deleted:    "libraries/doc-index-37.html"
File not deleted:    "libraries/doc-index-38.html"
File not deleted:    "libraries/doc-index-42.html"
File not deleted:    "libraries/doc-index-43.html"
File not deleted:    "libraries/doc-index-45.html"
File not deleted:    "libraries/doc-index-46.html"
File not deleted:    "libraries/doc-index-47.html"
File not deleted:    "libraries/doc-index-58.html"
File not deleted:    "libraries/doc-index-60.html"
File not deleted:    "libraries/doc-index-61.html"
File not deleted:    "libraries/doc-index-62.html"
File not deleted:    "libraries/doc-index-92.html"
File not deleted:    "libraries/doc-index-94.html"
File not deleted:    "libraries/doc-index-A.html"
File not deleted:    "libraries/doc-index-All.html"
File not deleted:    "libraries/doc-index-B.html"
File not deleted:    "libraries/doc-index-C.html"
File not deleted:    "libraries/doc-index-D.html"
File not deleted:    "libraries/doc-index-E.html"
File not deleted:    "libraries/doc-index-F.html"
File not deleted:    "libraries/doc-index-G.html"
File not deleted:    "libraries/doc-index-H.html"
File not deleted:    "libraries/doc-index-I.html"
File not deleted:    "libraries/doc-index-J.html"
File not deleted:    "libraries/doc-index-K.html"
File not deleted:    "libraries/doc-index-L.html"
File not deleted:    "libraries/doc-index-M.html"
File not deleted:    "libraries/doc-index-N.html"
File not deleted:    "libraries/doc-index-O.html"
File not deleted:    "libraries/doc-index-P.html"
File not deleted:    "libraries/doc-index-Q.html"
File not deleted:    "libraries/doc-index-R.html"
File not deleted:    "libraries/doc-index-S.html"
File not deleted:    "libraries/doc-index-T.html"
File not deleted:    "libraries/doc-index-U.html"
File not deleted:    "libraries/doc-index-V.html"
File not deleted:    "libraries/doc-index-W.html"
File not deleted:    "libraries/doc-index-X.html"
File not deleted:    "libraries/doc-index-Y.html"
File not deleted:    "libraries/doc-index-Z.html"
File not deleted:    "libraries/doc-index.html"
File not deleted:    "libraries/frames.html"
File not deleted:    "libraries/haddock-util.js"
File not deleted:    "libraries/hslogo-16.png"
File not deleted:    "libraries/index-frames.html"
File not deleted:    "libraries/index.html"
File not deleted:    "libraries/integer-gmp/config.log"
File not deleted:    "libraries/integer-gmp/config.status"
File not deleted:    "libraries/integer-gmp/integer-gmp.buildinfo"
File not deleted:    "libraries/minus.gif"
File not deleted:    "libraries/ocean.css"
File not deleted:    "libraries/old-time/config.log"
File not deleted:    "libraries/old-time/config.status"
File not deleted:    "libraries/old-time/include/HsTimeConfig.h"
File not deleted:    "libraries/plus.gif"
File not deleted:    "libraries/process/config.log"
File not deleted:    "libraries/process/config.status"
File not deleted:    "libraries/process/include/HsProcessConfig.h"
File not deleted:    "libraries/synopsis.png"
File not deleted:    "libraries/terminfo/config.log"
File not deleted:    "libraries/terminfo/config.status"
File not deleted:    "libraries/terminfo/terminfo.buildinfo"
File not deleted:    "libraries/time/config.log"
File not deleted:    "libraries/time/config.status"
File not deleted:    "libraries/unix/config.log"
File not deleted:    "libraries/unix/config.status"
File not deleted:    "libraries/unix/include/HsUnixConfig.h"
File not deleted:    "libraries/unix/unix.buildinfo"
File not deleted:    "mk/config.mk.old"
File not deleted:    "mk/project.mk.old"
File not deleted:    "rts/libs.depend"
File not deleted:    "rts/package.conf.inplace"
File not deleted:    "rts/package.conf.inplace.raw"

OVERALL SUMMARY for test run started at Fri May 25 06:16:15 UTC 2012
    3160 total tests, which gave rise to
   13545 test cases, of which
       1 caused framework failures
   10701 were skipped

    2751 expected passes
      80 expected failures
       0 unexpected passes
      12 unexpected failures

Unexpected failures:
   ../../libraries/directory/tests  getPermissions001 [bad exit code] (normal)
   ../../libraries/process/tests    process007 [bad stdout] (normal)
   driver                           dynHelloWorld [bad exit code] (dyn)
   driver/recomp011                 recomp011 [bad stdout] (normal)
   dynlibs                          T3807 [bad exit code] (normal)
   dynlibs                          T5373 [bad stdout] (normal)
   lib/IO                           T4113 [bad stdout] (normal)
   plugins                          plugins01 [bad exit code] (normal)
   plugins                          plugins02 [stderr mismatch] (normal)
   plugins                          plugins03 [stderr mismatch] (normal)
   rts                              T2615 [bad stdout] (normal)
   typecheck/should_fail            T5300 [stderr mismatch] (normal)

_______________________________________________
Cvs-ghc mailing list
Cvs-ghc&amp;lt; at &amp;gt;haskell.org
http://www.haskell.org/mailman/listinfo/cvs-ghc
&lt;/pre&gt;</description>
    <dc:creator>Builder</dc:creator>
    <dc:date>2012-05-25T06:41:10</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58382">
    <title>pgj-freebsd-i386-stable (x86 FreeBSD STABLE), build 552, Success</title>
    <link>http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58382</link>
    <description>&lt;pre&gt;pgj-freebsd-i386-stable (x86 FreeBSD STABLE), build 552

Build succeeded
Details: http://darcs.haskell.org/ghcBuilder/builders/pgj-freebsd-i386-stable/552.html

git clone                    | Success
create mk/build.mk           | Success
get subrepos                 | Success
repo versions                | Success
touching clean-check files   | Success
setting version date         | Success
booting                      | Success
configuring                  | Success
creating check-remove-before | Success
compiling                    | Success
creating check-remove-after  | Success
compiling testremove         | Success
simulating clean             | Success
checking clean               | Success
making bindist               | Success
publishing bindist           | Success
testing bindist              | Success
testing                      | Success
testsuite summary            | Success

Build succeeded
Details: http://darcs.haskell.org/ghcBuilder/builders/pgj-freebsd-i386-stable/552.html

File not deleted:    "compiler/ghc.cabal.old"
File not deleted:    "inplace"
File not deleted:    "libraries/base/base.buildinfo"
File not deleted:    "libraries/base/config.log"
File not deleted:    "libraries/base/config.status"
File not deleted:    "libraries/base/include/EventConfig.h"
File not deleted:    "libraries/base/include/HsBaseConfig.h"
File not deleted:    "libraries/directory/config.log"
File not deleted:    "libraries/directory/config.status"
File not deleted:    "libraries/directory/include/HsDirectoryConfig.h"
File not deleted:    "libraries/doc-index-124.html"
File not deleted:    "libraries/doc-index-126.html"
File not deleted:    "libraries/doc-index-33.html"
File not deleted:    "libraries/doc-index-36.html"
File not deleted:    "libraries/doc-index-37.html"
File not deleted:    "libraries/doc-index-38.html"
File not deleted:    "libraries/doc-index-42.html"
File not deleted:    "libraries/doc-index-43.html"
File not deleted:    "libraries/doc-index-45.html"
File not deleted:    "libraries/doc-index-46.html"
File not deleted:    "libraries/doc-index-47.html"
File not deleted:    "libraries/doc-index-58.html"
File not deleted:    "libraries/doc-index-60.html"
File not deleted:    "libraries/doc-index-61.html"
File not deleted:    "libraries/doc-index-62.html"
File not deleted:    "libraries/doc-index-92.html"
File not deleted:    "libraries/doc-index-94.html"
File not deleted:    "libraries/doc-index-A.html"
File not deleted:    "libraries/doc-index-All.html"
File not deleted:    "libraries/doc-index-B.html"
File not deleted:    "libraries/doc-index-C.html"
File not deleted:    "libraries/doc-index-D.html"
File not deleted:    "libraries/doc-index-E.html"
File not deleted:    "libraries/doc-index-F.html"
File not deleted:    "libraries/doc-index-G.html"
File not deleted:    "libraries/doc-index-H.html"
File not deleted:    "libraries/doc-index-I.html"
File not deleted:    "libraries/doc-index-J.html"
File not deleted:    "libraries/doc-index-K.html"
File not deleted:    "libraries/doc-index-L.html"
File not deleted:    "libraries/doc-index-M.html"
File not deleted:    "libraries/doc-index-N.html"
File not deleted:    "libraries/doc-index-O.html"
File not deleted:    "libraries/doc-index-P.html"
File not deleted:    "libraries/doc-index-Q.html"
File not deleted:    "libraries/doc-index-R.html"
File not deleted:    "libraries/doc-index-S.html"
File not deleted:    "libraries/doc-index-T.html"
File not deleted:    "libraries/doc-index-U.html"
File not deleted:    "libraries/doc-index-V.html"
File not deleted:    "libraries/doc-index-W.html"
File not deleted:    "libraries/doc-index-X.html"
File not deleted:    "libraries/doc-index-Y.html"
File not deleted:    "libraries/doc-index-Z.html"
File not deleted:    "libraries/doc-index.html"
File not deleted:    "libraries/frames.html"
File not deleted:    "libraries/haddock-util.js"
File not deleted:    "libraries/hslogo-16.png"
File not deleted:    "libraries/index-frames.html"
File not deleted:    "libraries/index.html"
File not deleted:    "libraries/integer-gmp/config.log"
File not deleted:    "libraries/integer-gmp/config.status"
File not deleted:    "libraries/integer-gmp/integer-gmp.buildinfo"
File not deleted:    "libraries/minus.gif"
File not deleted:    "libraries/ocean.css"
File not deleted:    "libraries/old-time/config.log"
File not deleted:    "libraries/old-time/config.status"
File not deleted:    "libraries/old-time/include/HsTimeConfig.h"
File not deleted:    "libraries/plus.gif"
File not deleted:    "libraries/process/config.log"
File not deleted:    "libraries/process/config.status"
File not deleted:    "libraries/process/include/HsProcessConfig.h"
File not deleted:    "libraries/synopsis.png"
File not deleted:    "libraries/terminfo/config.log"
File not deleted:    "libraries/terminfo/config.status"
File not deleted:    "libraries/terminfo/terminfo.buildinfo"
File not deleted:    "libraries/time/config.log"
File not deleted:    "libraries/time/config.status"
File not deleted:    "libraries/unix/config.log"
File not deleted:    "libraries/unix/config.status"
File not deleted:    "libraries/unix/include/HsUnixConfig.h"
File not deleted:    "libraries/unix/unix.buildinfo"
File not deleted:    "mk/config.mk.old"
File not deleted:    "mk/project.mk.old"
File not deleted:    "rts/libs.depend"
File not deleted:    "rts/package.conf.inplace"
File not deleted:    "rts/package.conf.inplace.raw"

OVERALL SUMMARY for test run started at Fri May 25 04:50:01 UTC 2012
    3160 total tests, which gave rise to
   13545 test cases, of which
       1 caused framework failures
   10702 were skipped

    2744 expected passes
      79 expected failures
       5 unexpected passes
      14 unexpected failures

Unexpected passes:
   ../../libraries/unix/tests  getEnvironment01 (normal)
   ../../libraries/unix/tests  getEnvironment02 (normal)
   ../../libraries/unix/tests  getGroupEntryForName (normal)
   ../../libraries/unix/tests  getUserEntryForName (normal)
   ../../libraries/unix/tests  queryfdoption01 (normal)

Unexpected failures:
   ../../libraries/directory/tests  getPermissions001 [bad exit code] (normal)
   ../../libraries/process/tests    process007 [bad stdout] (normal)
   driver                           driver062d [bad stderr] (normal)
   driver                           dynHelloWorld [bad exit code] (dyn)
   driver/recomp011                 recomp011 [bad stdout] (normal)
   dynlibs                          T3807 [bad exit code] (normal)
   dynlibs                          T5373 [bad stdout] (normal)
   lib/IO                           T4113 [bad stdout] (normal)
   numeric/should_run               numrun012 [bad stdout] (normal)
   plugins                          plugins01 [bad exit code] (normal)
   plugins                          plugins02 [stderr mismatch] (normal)
   plugins                          plugins03 [stderr mismatch] (normal)
   rts                              T2615 [bad stdout] (normal)
   typecheck/should_fail            T5300 [stderr mismatch] (normal)

_______________________________________________
Cvs-ghc mailing list
Cvs-ghc&amp;lt; at &amp;gt;haskell.org
http://www.haskell.org/mailman/listinfo/cvs-ghc
&lt;/pre&gt;</description>
    <dc:creator>Builder</dc:creator>
    <dc:date>2012-05-25T05:22:48</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58381">
    <title>[nightly] 24-May-2012 build of STABLE on i386-unknown-linux(cam-02-unx)</title>
    <link>http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58381</link>
    <description>&lt;pre&gt;Build description = STABLE on i386-unknown-linux (cam-02-unx)
Build location    = /playpen/simonmar/nightly/STABLE
Build config file = /home/simonmar/nightly/site/msrc/conf-STABLE-cam-02-unx

Nightly build started on cam-02-unx at Thu May 24 18:10:01 BST 2012.
**** checking out new source tree                 ... warning: Remote branch ghc-7.4 not found in upstream origin, using HEAD instead
warning: Remote branch ghc-7.4 not found in upstream origin, using HEAD instead
ok.
**** Building stage 1 compiler                    ... ok.
GHC Version 7.4.1.20120516
**** Building stage 2 compiler                    ... ok.
**** Building stage 3 compiler                    ... ok.
**** building testsuite tools                     ... ok.
**** running tests                                ... ok (summary below).
**** building compiler binary distribution        ... ok.
**** uploading binary distribution                ... ok.
**** running nofib (-rtsopts -O2)                 ... ok.
**** running nofib (-rtsopts -O2 -fllvm)          ... ok. (6 failures)
**** running nofib (-rtsopts -O2 -prof -auto-all) ... ok. (2 failures)
**** running nofib (-rtsopts -O2 -prof -auto-all -fllvm)... ok. (1 failures)
**** publishing logs                              ... ssh: connect to host haskell.org port 22: No route to host
lost connection
failed.
Logs  are at http://www.haskell.org/ghc/dist/stable/logs
Dists are at http://www.haskell.org/ghc/dist/stable/dist
Docs  are at http://www.haskell.org/ghc/dist/stable/docs
-----------------------------------------------------------------------------
Respository hashes:
.|06ac4cf62828afe244c6bec946f22d2ad874c4ea
ghc-tarballs|01a8e25294fd5d501e0db115debafd4fd61970a0
libraries/Cabal|5ec3c8add63e13f508a26ebea109c60570966020
libraries/Win32|1eeb98baf338f81dc6001c7a2e9b05c95b7971a8
libraries/array|c671173d695617bc66c8ff52f5adc5847bebd358
libraries/base|41b87900b41fc6a88e75cd533344e554ad22efb6
libraries/binary|080f85c7b0ccc59a579b85d50132d62cb469b146
libraries/bytestring|b3cdac4bbdcfbe4ca384076c20ebd0def534f528
libraries/containers|fff28d7c1cd8e6e39aa5e099c6e5611ff1b95a19
libraries/deepseq|eded7da15fc03cfdd3be4bc2661c658eaa7c6d68
libraries/directory|03bcfde61e6c95043ff312e9544e6ad0d9dd96c9
libraries/extensible-exceptions|92d6c24745c2baa5f1a7aa34cbfd59457638f346
libraries/filepath|efa44de9abfab7fe3053c3d2ca6be965703dd04d
libraries/ghc-prim|60a85ba01303e1a28024e9983f5e9733fbd4888c
libraries/haskeline|647894c3bf28da59515a59abfd5dd2efff48936e
libraries/haskell2010|d1e29ce3a56d6a34bd82e9e7ccd396b6bec963ed
libraries/haskell98|4c71385d929b11dca8d2f41a96ca8a4b5aad9c3e
libraries/hoopl|4b2fa9c4b6af00ef6759ff62a2b3efa7d9a8e59c
libraries/hpc|ffd12b9a17dfdffef8ca4dd215e5c081d9b082fa
libraries/integer-gmp|d95eb887c0e8ed012065e2fd60c234a8db0eebf7
libraries/integer-simple|bc04c4f51a3edcd7145a66ffac796adb2eed4a11
libraries/mtl|a41470c1890073e678f0dca2a9ef4c02d55bf7c6
libraries/old-locale|b512c2988a36df94486ab55d7c7c10be9439b09c
libraries/old-time|bf84632130de935f63a52bfcf934dda7014fd960
libraries/pretty|f615a6aeb4abcdbfbfab67b0a82cef9a9a65ec49
libraries/process|d26eba94031fb129c40e6441f9960f315b1010f9
libraries/template-haskell|73e2749647f8ac21dbb0eea3d6df7c6834494a04
libraries/terminfo|baec6aff59d13ba294b370f9563e8068706392ce
libraries/unix|4152c1b17d8633dac8f830f334688393e527b061
libraries/utf8-string|ec2b85940a256dbc8771e5e2065ca8f76cc802d0
libraries/xhtml|aca0f6eeaea0fbacb492e9a5c1bb4ec35a1b70f7
nofib|40c01620651d93166e2b8da156f113a4e7b827de
testsuite|f13979449a837fa25526d3b23702a6e8aabed963
utils/haddock|d92d5a98adab5a94d34b763b9f4fd07557977ccb
utils/hsc2hs|385fc7dbeaf957976017a6159128bb697bbafa75
-----------------------------------------------------------------------------
All done!
Nightly build finished successfully at Fri May 25 05:04:02 BST 2012

------------- GHC Test summary ---------------------

OVERALL SUMMARY for test run started at Thu May 24 23:05:29 BST 2012
    3160 total tests, which gave rise to
   15591 test cases, of which
       0 caused framework failures
    3311 were skipped

   11839 expected passes
     440 expected failures
       0 unexpected passes
       1 unexpected failures

Unexpected failures:
   rts  5250 [bad exit code] (optllvm)

----------------------------------------------------
Nightly run ended at Fri May 25 05:04:02 BST 2012
&lt;/pre&gt;</description>
    <dc:creator>GHC Build Reports</dc:creator>
    <dc:date>2012-05-25T04:04:04</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58380">
    <title>pgj2 (amd64 FreeBSD HEAD), build 687, Failure</title>
    <link>http://comments.gmane.org/gmane.comp.lang.haskell.cvs.ghc/58380</link>
    <description>&lt;pre&gt;pgj2 (amd64 FreeBSD HEAD), build 687

Build failed
Details: http://darcs.haskell.org/ghcBuilder/builders/pgj2/687.html

git clone                    | Success
create mk/build.mk           | Success
get subrepos                 | Success
repo versions                | Success
touching clean-check files   | Success
setting version date         | Success
booting                      | Success
configuring                  | Success
creating check-remove-before | Success
compiling                    | Failure: Just (ExitFailure 2)

Build failed
Details: http://darcs.haskell.org/ghcBuilder/builders/pgj2/687.html

chmod +x                               inplace/bin/ghc-stage2
"inplace/bin/ghc-stage2"   -H32m -O    -hide-all-p [...] .hs -o utils/haddock/dist/build/Haddock/GhcUtils.o
"inplace/bin/ghc-stage2"   -H32m -O    -hide-all-p [...] pes.hs -o utils/haddock/dist/build/Haddock/Types.o
"inplace/bin/ghc-stage2"   -H32m -O    -hide-all-p [...] ils.hs -o utils/haddock/dist/build/Haddock/Utils.o
"inplace/bin/ghc-stage2"   -H32m -O    -hide-all-p [...] s.hs -o utils/haddock/dist/build/Haddock/Options.o
"inplace/bin/ghc-stage2"   -H32m -O    -hide-all-p [...] o utils/haddock/dist/build/Haddock/InterfaceFile.o
"inplace/bin/ghc-stage2"   -H32m -O    -hide-all-p [...] ock.hs -o utils/haddock/dist/build/Paths_haddock.o
"inplace/bin/ghc-stage2"   -H32m -O    -hide-all-p [...] n.hs -o utils/haddock/dist/build/Haddock/Version.o
"inplace/bin/ghc-stage2"   -H32m -O    -hide-all-packages -i -iutils/haddock/src -iutils/haddock/dist/build -iutils/haddock/dist/build/autogen -Iutils/haddock/dist/build -Iutils/haddock/dist/build/autogen    -optP-DIN_GHC_TREE -optP-include -optPutils/haddock/dist/build/autogen/cabal_macros.h -package Cabal-1.15.0 -package array-0.3.0.3 -package base-4.5.0.0 -package containers-0.5.0. [...] .0 -package xhtml-3000.2.0.5  -funbox-strict-fields -O2 -Wall -fwarn-tabs -XHaskell2010 -XCPP -XDeriveDataTypeable -XScopedTypeVariables -XMagicHash  -no-user-package-db -rtsopts      -odir utils/haddock/dist/build -hidir utils/haddock/dist/build -stubdir utils/haddock/dist/build -hisuf hi -osuf  o -hcsuf hc -c utils/haddock/src/Haddock/Doc.hs -o utils/haddock/dist/build/Haddock/Doc.o
"inplace/bin/ghc-stage2"   -H32m -O    -hide-all-packages -i -iutils/haddock/src -iutils/haddock/dist/build -iutils/haddock/dist/build/autogen -Iutils/haddock/dist/build -Iutils/haddock/dist/build/autogen    -optP-DIN_GHC_TREE -optP-include -optPutils/haddock/dist/build/autogen/cabal_macros.h -package Cabal-1.15.0 -package array-0.3.0.3 -package base-4.5.0.0 -package containers-0.5.0.0 -package directory-1.1.0.1 -package filepath-1.2.0.1 -package ghc-7.5.20120525 -package pretty-1.1.1.0 -package xhtml-3000.2.0.5  -funbox-strict-fields -O2 -Wall -fwarn-tabs -XHaskell2010 -XCPP -XDeriveDataTypeable -XScopedTypeVariables -XMagicHash  -no-user-package-db -rtsopts      -odir utils/haddock/dist/build -hidir utils/haddock/dist/build -stubdir utils/haddock/dist/build -hisuf hi -osuf  o -hcsuf hc -c utils/haddock/dist/build/Haddock/Lex.hs -o utils/haddock/dist/build/Haddock/Lex.o
"inplace/bin/ghc-stage2"   -H32m -O    -hide-all-packages -i -iutils/haddock/src -iutils/haddock/dist/build -iutils/haddock/dist/build/autogen -Iutils/haddock/dist/build -Iutils/haddock/dist/build/autogen    -optP-DIN_GHC_TREE -optP-include -optPutils/haddock/dist/build/autogen/cabal_macros.h -package Cabal-1.15.0 -package array-0.3.0.3 -package base-4.5.0.0 -package containers-0.5.0.0 -package directory-1.1.0.1 -package filepath-1.2.0.1 -package ghc-7.5.20120525 -package pretty-1.1.1.0 -package xhtml-3000.2.0.5  -funbox-strict-fields -O2 -Wall -fwarn-tabs -XHaskell2010 -XCPP -XDeriveDataTypeable -XScopedTypeVariables -XMagicHash  -no-user-package-db -rtsopts      -odir utils/haddock/dist/build -hidir utils/haddock/dist/build -stubdir utils/haddock/dist/build -hisuf hi -osuf  o -hcsuf hc -c utils/haddock/dist/build/Haddock/Parse.hs -o utils/haddock/dist/build/Haddock/Parse.o
"inplace/bin/ghc-stage2"   -H32m -O    -hide-all-packages -i -iutils/haddock/src -iutils/haddock/dist/build -iutils/haddock/dist/build/autogen -Iutils/haddock/dist/build -Iutils/haddock/dist/build/autogen    -optP-DIN_GHC_TREE -optP-include -optPutils/haddock/dist/build/autogen/cabal_macros.h -package Cabal-1.15.0 -package array-0.3.0.3 -package base-4.5.0.0 -package containers-0.5.0.0 -package directory-1.1.0.1 -package filepath-1.2.0.1 -package ghc-7.5.20120525 -package pretty-1.1.1.0 -package xhtml-3000.2.0.5  -funbox-strict-fields -O2 -Wall -fwarn-tabs -XHaskell2010 -XCPP -XDeriveDataTypeable -XScopedTypeVariables -XMagicHash  -no-user-package-db -rtsopts      -odir utils/haddock/dist/build -hidir utils/haddock/dist/build -stubdir utils/haddock/dist/build -hisuf hi -osuf  o -hcsuf hc -c utils/haddock/src/Haddock/Interface/Rename.hs -o utils/haddock/dist/build/Haddock/Interface/Rename.o

utils/haddock/src/Haddock/Interface/Rename.hs:270:18:
    Couldn't match type `RdrName' with `DocName'
    Expected type: LHsTyVarBndrs DocName
      Actual type: LHsTyVarBndrs RdrName
    In the return type of a call of `mkHsQTvs'
    In the first argument of `return', namely `(mkHsQTvs tvs')'
    In a stmt of a 'do' block: return (mkHsQTvs tvs')

utils/haddock/src/Haddock/Interface/Rename.hs:270:27:
    Couldn't match type `DocName' with `RdrName'
    Expected type: [LHsTyVarBndr RdrName]
      Actual type: [LHsTyVarBndr DocName]
    In the first argument of `mkHsQTvs', namely tvs'
    In the first argument of `return', namely `(mkHsQTvs tvs')'
    In a stmt of a 'do' block: return (mkHsQTvs tvs')
gmake[1]: *** [utils/haddock/dist/build/Haddock/Interface/Rename.o] Error 1
gmake: *** [all] Error 2
_______________________________________________
Cvs-ghc mailing list
Cvs-ghc&amp;lt; at &amp;gt;haskell.org
http://www.haskell.org/mailman/listinfo/cvs-ghc
&lt;/pre&gt;</description>
    <dc:creator>Builder</dc:creator>
    <dc:date>2012-05-25T03:07:23</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.lang.haskell.cvs.ghc">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.lang.haskell.cvs.ghc</link>
  </textinput>
</rdf:RDF>

