Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mk/boilerplate.mk defines STAGE1_GHC, not GHC_STAGE1. | Edward Z. Yang | 2017-04-02 | 1 | -1/+1 |
| | | | | Signed-off-by: Edward Z. Yang <ezyang@cs.stanford.edu> | ||||
* | Revert "GHC_STAGE1 isn't defined, use other form." | Edward Z. Yang | 2017-03-17 | 1 | -1/+1 |
| | | | | This reverts commit 138434fbef32ec86733747bdbc57f6da73cad500. | ||||
* | GHC_STAGE1 isn't defined, use other form. | Edward Z. Yang | 2017-03-17 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | Summary: I don't really know why this stopped working for me, but it did on a recent clean. I don't know if this is right but it solved the problem for me. Signed-off-by: Edward Z. Yang <ezyang@cs.stanford.edu> Test Plan: validate Reviewers: bgamari, austin Subscribers: rwbarton, thomie Differential Revision: https://phabricator.haskell.org/D3318 | ||||
* | Build system: prevent "./Setup: Command not found" | Thomas Miedema | 2015-05-30 | 1 | -1/+1 |
| | | | | [skip ci] | ||||
* | Don't read boilerplate.mk on 'make maintainer-clean' | Simon Peyton Jones | 2012-01-20 | 1 | -0/+2 |
| | |||||
* | Fix quoting in Makefile | Ian Lynagh | 2010-04-16 | 1 | -1/+1 |
| | |||||
* | Use ${PYTHON} instead of relying on #!/usr/bin/env python | Matthias Kilian | 2010-04-16 | 1 | -1/+3 |
| | |||||
* | Always use the python timeout program on non-Windows | Ian Lynagh | 2009-10-25 | 1 | -1/+6 |
| | | | | | | | | | Use a python timeout program, so that we don't have to worry about whether or not the compiler we're testing has built the timeout program correctly The python timeout program doesn't work on mingw, so we still use the Haskell program on Windows | ||||
* | Fix quoting in the testsuite timeout program's Makefile | Ian Lynagh | 2009-10-13 | 1 | -7/+7 |
| | |||||
* | make maintainer-clean work | Simon Marlow | 2009-05-14 | 1 | -1/+1 |
| | |||||
* | Tell Cabal where hsc2hs; fixes trac #3147 | Ian Lynagh | 2009-04-10 | 1 | -0/+1 |
| | | | | Patch from gwright. | ||||
* | Hack to find gcc for an in-place ghc | Ian Lynagh | 2009-01-16 | 1 | -1/+7 |
| | |||||
* | Also canonicalise the install prefix for the timeout program | Ian Lynagh | 2009-01-16 | 1 | -1/+4 |
| | |||||
* | Move the Makefile changes around so they don't cause test failures | Ian Lynagh | 2009-01-14 | 1 | -0/+12 |
| | | | | | Our "make clean" detection was causing problems for tests which had their own local clean target. | ||||
* | Fix timeout's clean target | Ian Lynagh | 2009-01-09 | 1 | -1/+2 |
| | |||||
* | Disentangle the testsuite from the compiler's build system | Ian Lynagh | 2009-01-08 | 1 | -10/+11 |
| | |||||
* | Don't fail when cleaning if cabal-bin doesn't exist | Ian Lynagh | 2008-07-29 | 1 | -1/+1 |
| | |||||
* | Build the timeout program with Cabal | Ian Lynagh | 2008-07-23 | 1 | -32/+27 |
| | |||||
* | FIX boottestsuite build failure | Simon Marlow | 2008-07-11 | 1 | -0/+3 |
| | |||||
* | FIX BUILD | Simon Marlow | 2008-07-07 | 1 | -0/+2 |
| | |||||
* | Fix #1599: Improve timeout on Windows | Ian Lynagh | 2008-01-20 | 1 | -1/+3 |
| | | | | | We now run programs in a Job, which means that we can kill a process and all of its children when a timeout happens. | ||||
* | small tidyups to thie Makefile | Simon Marlow | 2007-11-16 | 1 | -5/+8 |
| | |||||
* | Calibrate == calibrate on Windows... | Ian Lynagh | 2007-04-06 | 1 | -2/+2 |
| | |||||
* | Use $(PYTHON) to run calibrate, rather than relying on it finding python itself | Ian Lynagh | 2007-04-05 | 1 | -2/+1 |
| | |||||
* | Calibrate the testsuite timeout if a value of -1 is given | Ian Lynagh | 2007-04-05 | 1 | -0/+8 |
| | |||||
* | Use a python timeout for the testsuite when we don't have a threaded RTS | Ian Lynagh | 2006-09-07 | 1 | -0/+8 |
| | |||||
* | [project @ 2005-08-04 12:22:17 by simonmar] | simonmar | 2005-08-04 | 1 | -0/+4 |
| | | | | | | | | | | | | A better timeout. This one starts a new session for the child process, and attempts to kill the entire group when the time expires (previously we only killed the direct child, if the child itself had spawned more processes these would continue to run). The new scheme is only for Unix, presumably we have to do something different on Windows. Code partly from Ian Lynagh. | ||||
* | [project @ 2005-02-04 10:59:55 by simonmar] | simonmar | 2005-02-04 | 1 | -0/+12 |
Add a timeout to test runs, using a wrapper program (written in Haskell, using System.Process of course!). |