- 05 Mar, 2007 1 commit
-
-
Ian Lynagh authored
-
- 09 Feb, 2007 1 commit
-
-
Simon Marlow authored
-
- 23 Jan, 2007 1 commit
-
-
Simon Marlow authored
-
- 18 Sep, 2006 1 commit
-
-
ravi@bluespec.com authored
-
- 25 Oct, 2006 1 commit
-
-
andy@galois.com authored
-
- 25 Aug, 2006 1 commit
-
-
Ian Lynagh authored
-
- 10 Feb, 2006 1 commit
-
-
Simon Marlow authored
threaded1 = -threaded -debug threaded2 = -O -threaded, and +RTS -N2 -RTS at runtime
-
- 09 Jan, 2006 1 commit
-
-
simonmar authored
Add -dcmm-lint when compiling
-
- 24 Oct, 2005 1 commit
-
-
simonmar authored
- add SMP way for tests - add RTS way flags: -N2 for SMP (test multi-processor), and -p for profiling (actually test the profiler!)
-
- 14 Mar, 2005 1 commit
-
-
simonmar authored
profasm way only if ghc_with_native_codegen.
-
- 09 Dec, 2004 1 commit
-
-
simonmar authored
add unreg & profasm ways
-
- 01 Mar, 2004 1 commit
-
-
simonmar authored
Add 'threaded' way to run tests with the threaded RTS.
-
- 19 Aug, 2003 1 commit
-
-
krc authored
Added support for testing generation and compilation of External Core code. There are two new ways, which are not automatically enabled but can be invoked from the command line: extcore and optextcore. Invoking either way will test that ghc is able to generate External Core code for a given test, read the code back in, and compile it to an executable that produces the expected output for the test. The External Core facility has a few limitations which result in certain tests failing for the "extcore" way. - External Core can't represent foreign calls other than static C calls - External Core can't correctly represent literals resulting from a "foreign label" declaration - External Core can't represent declarations of datatypes with no constructors The first of these was already known, and GHC panics if you tried to generate External Core for a program containing such a call. The second two cases were not handled properly before now; in another commit, I've changed the code that emits External Core to panic if either of them arises. Previously, GHC would happily generate External Core in either case, but would not be able to compile the resulting code. There are several tests that exhibit these limitations of External Core, so they've had to be made "expected failures" when compiling in the extcore or optextcore ways.
-
- 05 Dec, 2002 1 commit
-
-
simonmar authored
re-enable ghci tests
-
- 04 Dec, 2002 1 commit
-
-
simonmar authored
Disable GHCi tests for now, one of them is causing GHCi to go into a loop
-
- 02 Dec, 2002 2 commits
- 11 Sep, 2002 1 commit
-
-
simonmar authored
- Move some of the way-selection logic into the configuration file; the build system now just passes in variables saying whether the compiler supports profiling and native code generation, and the configuration file adds the appropriate ways. - Add a new option to the test driver, --way=<way> to select just a single way.
-
- 26 Aug, 2002 1 commit
-
-
simonmar authored
Don't enable the optasm way by default
-
- 31 Jul, 2002 1 commit
-
-
simonmar authored
Revamp the testsuite framework. The previous framework was an experiment that got a little out of control - a whole new language with an interpreter written in Haskell was rather heavyweight and left us with a maintenance problem. So the new test driver is written in Python. The downside is that you need Python to run the testsuite, but we don't think that's too big a problem since it only affects developers and Python installs pretty easily onto everything these days. Highlights: - 790 lines of Python, vs. 5300 lines of Haskell + 720 lines of <strange made-up language>. - the framework supports running tests in various "ways", which should catch more bugs. By default, each test is run in three ways: normal, -O, and -O -fasm. Additionally, if profiling libraries have been built, another way (-O -prof -auto-all) is added. I plan to also add a 'GHCi' way. Running tests multiple ways has already shown up some new bugs! - documentation is in the README file and is somewhat improved. - the framework is rather less GHC-specific, and could without much difficulty be coaxed into using other compilers. Most of the GHC-specificness is in a separate configuration file (config/ghc). Things may need a while to settle down. Expect some unexpected failures.
-