summaryrefslogtreecommitdiff
path: root/util/regress
diff options
context:
space:
mode:
authorSteve Reinhardt <stever@eecs.umich.edu>2006-08-25 13:04:21 -0400
committerSteve Reinhardt <stever@eecs.umich.edu>2006-08-25 13:04:21 -0400
commita0759f0fb7ad10af8ba15bfc80ac317cd0ca9eb1 (patch)
tree65a40d3e0d195cbdc24c4b43ddb0ff024c5ced18 /util/regress
parent383b2830b8770bd5f1cc59fc2227da06d388a71d (diff)
downloadgem5-a0759f0fb7ad10af8ba15bfc80ac317cd0ca9eb1.tar.xz
Update for new regression test structure.
--HG-- extra : convert_revision : f533bc237710c2c634a20e51733f66f9f5dd0929
Diffstat (limited to 'util/regress')
-rwxr-xr-xutil/regress23
1 files changed, 15 insertions, 8 deletions
diff --git a/util/regress b/util/regress
index 067f9f092..27880d527 100755
--- a/util/regress
+++ b/util/regress
@@ -1,5 +1,5 @@
#! /usr/bin/env python
-# Copyright (c) 2005 The Regents of The University of Michigan
+# Copyright (c) 2005-2006 The Regents of The University of Michigan
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
@@ -50,7 +50,7 @@ optparser.add_option('--scratch', dest='scratch', action='store_true',
default=False,
help='rebuld from scratch')
optparser.add_option('--builds', dest='builds',
- default='ALPHA_SE,ALPHA_FS,ALPHA_FS_TL',
+ default='ALPHA_SE,ALPHA_FS,MIPS_SE,SPARC_SE',
help='comma-separated list of builds to test')
optparser.add_option('--variants', dest='variants',
default='opt',
@@ -74,7 +74,7 @@ builds = options.builds.split(',')
variants = options.variants.split(',')
# Repositories to clone/update
-repos = ['m5', 'm5-test', 'ext']
+repos = ['m5']
# Call os.system() and raise exception if return status is non-zero
def system(cmd):
@@ -140,11 +140,18 @@ try:
sys.exit(1)
if options.verbose:
- print 'cd m5/build'
- os.chdir('m5/build')
-
- targets = ['%s/test/%s/%s' % (build, variant, test)
- for build in builds for variant in variants for test in tests]
+ print 'cd m5'
+ os.chdir('m5')
+
+ if 'all' in tests:
+ targets = ['build/%s/tests/%s' % (build, variant)
+ for build in builds
+ for variant in variants]
+ else:
+ targets = ['build/%s/tests/%s/%s' % (build, variant, test)
+ for build in builds
+ for variant in variants
+ for test in tests]
system('scons %s %s' % (options.scons_opts, ' '.join(targets)))