Repository : ssh://darcs.haskell.org//srv/darcs/nofib On branch : master
http://hackage.haskell.org/trac/ghc/changeset/6d3ea16e56bd99d060e778fab3583aa67a6b50d4 >--------------------------------------------------------------- commit 6d3ea16e56bd99d060e778fab3583aa67a6b50d4 Author: Simon Marlow <[email protected]> Date: Mon May 9 10:40:00 2011 +0100 update to cope with new RTS stats format for GCs >--------------------------------------------------------------- runstdtest/runstdtest.prl | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/runstdtest/runstdtest.prl b/runstdtest/runstdtest.prl index 2e67dc7..115d4c3 100644 --- a/runstdtest/runstdtest.prl +++ b/runstdtest/runstdtest.prl @@ -455,8 +455,10 @@ sub process_stats_file { $GCs += $3; if ($1 == 0) { $Gc0Count += $3; + $Gc0Time = $5; $Gc0Elapsed = $6; } elsif ($1 == 1) { $Gc1Count += $3; + $Gc1Time = $5; $Gc1Elapsed = $6; } } _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
