If no tests are specified for regression, just build the binaries

(instead of complaining and exiting).

--HG--
extra : convert_revision : 24ac0bab7fd92d9e74c80847a667f0affcd0473d
This commit is contained in:
Steve Reinhardt 2006-12-12 09:54:59 -08:00
parent cdc3e5bc22
commit a7ea4885ce

View file

@ -77,10 +77,11 @@ def shellquote(s):
try:
if not tests:
print "No tests specified."
sys.exit(1)
if 'all' in tests:
print "No tests specified, just building binaries."
targets = ['build/%s/m5.%s' % (build, variant)
for build in builds
for variant in variants]
elif 'all' in tests:
targets = ['build/%s/tests/%s' % (build, variant)
for build in builds
for variant in variants]