diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2012-02-05 01:23:22 -0800 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2012-02-05 01:23:22 -0800 |
commit | 82939294d6fda490a1c634a868d05a92621cc1ac (patch) | |
tree | f2c255f7afc72ccf3ef303e862f2f018f262a0f9 /util | |
parent | cbcdcd53a78d56827c33a8c7610f8f6585ebbd82 (diff) | |
download | gem5-82939294d6fda490a1c634a868d05a92621cc1ac.tar.xz |
Regressions: Fix the regress script when "all" is used.
When the "all" test is specified, the "tests" list should have two elements in
it, "quick" and "long", not a single element "quick,long". The later would be
appropriate as the default for one of the command line options which are split
at commas, but at that point "tests" should already be a list.
Diffstat (limited to 'util')
-rwxr-xr-x | util/regress | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/regress b/util/regress index 69b11c045..c8704381b 100755 --- a/util/regress +++ b/util/regress @@ -119,7 +119,7 @@ if compile_variants: if not tests: tests = ['quick'] elif 'all' in tests: - tests = ['quick,long'] + tests = ['quick', 'long'] # set up test targets for scons, since we don't have any quick SPARC # full-system tests exclude it |