summaryrefslogtreecommitdiff
path: root/utils/runstdtest
Commit message (Collapse)AuthorAgeFilesLines
* move runstdtest into nofibSimon Marlow2009-04-282-589/+0
|
* Merging in the new codegen branchdias@eecs.harvard.edu2008-08-141-2/+2
| | | | | | | | | | | | | | | | | | This merge does not turn on the new codegen (which only compiles a select few programs at this point), but it does introduce some changes to the old code generator. The high bits: 1. The Rep Swamp patch is finally here. The highlight is that the representation of types at the machine level has changed. Consequently, this patch contains updates across several back ends. 2. The new Stg -> Cmm path is here, although it appears to have a fair number of bugs lurking. 3. Many improvements along the CmmCPSZ path, including: o stack layout o some code for infotables, half of which is right and half wrong o proc-point splitting
* generate a valid summary for older GHC versions tooSimon Marlow2008-10-231-0/+4
|
* Cope with recent versions of Perl that lack the $* featuresimonpj@microsoft.com2008-09-021-3/+4
|
* bindists are now some way towards workingIan Lynagh2008-08-101-0/+3
|
* measure GC(0/1) times and work imbalanceSimon Marlow2008-04-161-2/+21
|
* improvements to +RTS -s outputSimon Marlow2008-04-161-1/+2
| | | | | | | - count and report number of parallel collections - calculate bytes scanned in addition to bytes copied per thread - calculate "work balance factor" - tidy up the formatting a bit
* cut-and-pastoSimon Marlow2008-01-161-1/+1
|
* update to match Mb -> MB change in -s outputsimonmar@microsoft.com2007-12-201-1/+1
|
* fix getting the exit codeSimon Marlow2007-08-241-1/+1
|
* Rework the build system a bitIan Lynagh2007-05-311-7/+10
| | | | | | Key changes: * Always build as if BIN_DIST is 1. BIN_DIST is thus removed. * Libraries are configured with prefix set to $$topdir rather than $(prefix)
* Extension of testing script to parse PAPI results from GHC programs.Alexey Rodriguez2006-12-211-2/+54
|
* Add -stdout-binary and -stderr-binary flags to bypass dos2unixSimon Marlow2007-01-231-2/+15
| | | | | | Apparently some versions of dos2unix can detect a binary file and ignore it, but others can't, so provide a way to tell runstdtest that the output is in binary.
* remove the *.raw filesSimon Marlow2006-10-271-1/+1
|
* fix calculation of GC Work for 6.6+Simon Marlow2006-10-271-4/+6
|
* Run dos2unix on all the outputs, and don't let it eat stderrIan Lynagh2006-10-191-2/+6
|
* fix bugs, add boolean flag to identify coercion variablesManuel M T Chakravarty2006-09-201-3/+3
| | | | | | | | Mon Sep 18 16:41:32 EDT 2006 Manuel M T Chakravarty <chak@cse.unsw.edu.au> * fix bugs, add boolean flag to identify coercion variables Sun Aug 6 17:04:02 EDT 2006 Manuel M T Chakravarty <chak@cse.unsw.edu.au> * fix bugs, add boolean flag to identify coercion variables Tue Jul 25 06:20:05 EDT 2006 kevind@bu.edu
* Remove trailing CRs with sed rather than relying on diff in nofibIan Lynagh2006-09-071-2/+2
| | | | Some diffs don't understand --strip-trailing-cr.
* Strip trailing CRs when comparing output for nofib. Fixes #797.Ian Lynagh2006-09-051-2/+2
|
* Reorganisation of the source treeSimon Marlow2006-04-072-0/+487
Most of the other users of the fptools build system have migrated to Cabal, and with the move to darcs we can now flatten the source tree without losing history, so here goes. The main change is that the ghc/ subdir is gone, and most of what it contained is now at the top level. The build system now makes no pretense at being multi-project, it is just the GHC build system. No doubt this will break many things, and there will be a period of instability while we fix the dependencies. A straightforward build should work, but I haven't yet fixed binary/source distributions. Changes to the Building Guide will follow, too.