Difference between revisions of "NewRegressionFramework"
From gem5
(Created page with "We'd like to revamp the regression tests bu moving to a new framework. This page is intended to host a discussion of features and design for the new framework. == Desirable fea…") |
(→Desirable features) |
||
Line 11: | Line 11: | ||
** by ISA | ** by ISA | ||
** by Ruby protocol | ** by Ruby protocol | ||
+ | ** by length | ||
+ | * More directed tests that cover specific functionality and complete faster. Running spec benchmarks is important but spends a lot of time doing the same thing over and over. Those should only be a component of our testing, not almost all of it like it is now. This is a desirable feature of our testing strategy, not necessarily something that impacts the regression framework. | ||
* Better checkpoint testing | * Better checkpoint testing | ||
** some of this doesn't really depend on the regression framework, just needs new tests | ** some of this doesn't really depend on the regression framework, just needs new tests |
Revision as of 17:28, 21 March 2011
We'd like to revamp the regression tests bu moving to a new framework. This page is intended to host a discussion of features and design for the new framework.
Desirable features
- Ability to add regressions via EXTRAS
- For example, move eio tests into eio module so we don't try to run them when it's not compiled in
- Ability to not run regressions for which binaries or other inputs aren't available
- With maybe some nice semi-automated way of downloading binaries when they're publicly available
- Better categorization of tests, and ability to run tests by category, e.g.:
- by CPU model
- by ISA
- by Ruby protocol
- by length
- More directed tests that cover specific functionality and complete faster. Running spec benchmarks is important but spends a lot of time doing the same thing over and over. Those should only be a component of our testing, not almost all of it like it is now. This is a desirable feature of our testing strategy, not necessarily something that impacts the regression framework.
- Better checkpoint testing
- some of this doesn't really depend on the regression framework, just needs new tests
- e.g., integrating util/checkpoint-tester.py
- Support for random testing (e.g., for background testing processes)
- Random latencies?
- Random testing a la memory testers but with different seeds, longer intervals
- Decouple from SCons somewhat
- Avoid having scons dependency bugs force unnecessary re-running of tests, particularly for update-refs
Implementation ideas
Just ideas... no definitive decisions have been made yet.
- Use Python's unittest module, or something that extends it such as nose
- Use SCons to manage dependencies between binaries/test inputs and test results, but in a different SCons invocation (i.e., in its own SConstruct/SConscript)