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.
This commit is contained in:
Gabe Black 2012-02-05 01:23:22 -08:00
parent cbcdcd53a7
commit 82939294d6

View file

@ -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