regress (4949:302707329b7e) regress (4961:31f1d816dc26)
1#! /usr/bin/env python
2# Copyright (c) 2005-2007 The Regents of The University of Michigan
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

--- 17 unchanged lines hidden (view full) ---

26# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27#
28# Authors: Steve Reinhardt
29
30import sys
31import os
32import optparse
33import datetime
1#! /usr/bin/env python
2# Copyright (c) 2005-2007 The Regents of The University of Michigan
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

--- 17 unchanged lines hidden (view full) ---

26# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27#
28# Authors: Steve Reinhardt
29
30import sys
31import os
32import optparse
33import datetime
34from subprocess import call
34
35progname = os.path.basename(sys.argv[0])
36
37optparser = optparse.OptionParser()
38optparser.add_option('-v', '--verbose', dest='verbose', action='store_true',
39 default=False,
40 help='echo commands before executing')
41optparser.add_option('--builds', dest='builds',

--- 13 unchanged lines hidden (view full) ---

55
56
57# split list options on ',' to get Python lists
58builds = options.builds.split(',')
59variants = options.variants.split(',')
60
61# Call os.system() and raise exception if return status is non-zero
62def system(cmd):
35
36progname = os.path.basename(sys.argv[0])
37
38optparser = optparse.OptionParser()
39optparser.add_option('-v', '--verbose', dest='verbose', action='store_true',
40 default=False,
41 help='echo commands before executing')
42optparser.add_option('--builds', dest='builds',

--- 13 unchanged lines hidden (view full) ---

56
57
58# split list options on ',' to get Python lists
59builds = options.builds.split(',')
60variants = options.variants.split(',')
61
62# Call os.system() and raise exception if return status is non-zero
63def system(cmd):
63 if options.verbose:
64 print cmd
65 status = os.system(cmd)
66 if status != 0:
67 upper = (status & 0xff00) >> 8
68 lower = (status & 0xff)
69 raise OSError, "shell command '%s' failed, status %d:%d" \
70 % (cmd, upper, lower)
64 try:
65 retcode = call(cmd, shell=True)
66 if retcode < 0:
67 print >>sys.stderr, "Child was terminated by signal", -retcode
68 print >>sys.stderr, "When attemping to execute: %s" % cmd
69 sys.exit(1)
70 elif retcode > 0:
71 print >>sys.stderr, "Child returned", retcode
72 print >>sys.stderr, "When attemping to execute: %s" % cmd
73 sys.exit(1)
74 except OSError, e:
75 print >>sys.stderr, "Execution failed:", e
76 print >>sys.stderr, "When attemping to execute: %s" % cmd
77 sys.exit(1)
71
72# Quote string s so it can be passed as a shell arg
73def shellquote(s):
74 if ' ' in s:
75 s = "'%s'" % s
76 return s
77
78
79# Quote string s so it can be passed as a shell arg
80def shellquote(s):
81 if ' ' in s:
82 s = "'%s'" % s
83 return s
84
78try:
79 if not tests:
80 print "No tests specified, just building binaries."
81 targets = ['build/%s/m5.%s' % (build, variant)
82 for build in builds
83 for variant in variants]
84 elif 'all' in tests:
85 targets = ['build/%s/tests/%s' % (build, variant)
86 for build in builds
87 for variant in variants]
88 else:
89 # Ugly! Since we don't have any quick SPARC_FS tests remove the SPARC_FS target
90 # If we ever get a quick SPARC_FS test, this code should be removed
91 if 'quick' in tests and 'SPARC_FS' in builds:
92 builds.remove('SPARC_FS')
93 targets = ['build/%s/tests/%s/%s' % (build, variant, test)
94 for build in builds
95 for variant in variants
96 for test in tests]
85if not tests:
86 print "No tests specified, just building binaries."
87 targets = ['build/%s/m5.%s' % (build, variant)
88 for build in builds
89 for variant in variants]
90elif 'all' in tests:
91 targets = ['build/%s/tests/%s' % (build, variant)
92 for build in builds
93 for variant in variants]
94else:
95 # Ugly! Since we don't have any quick SPARC_FS tests remove the SPARC_FS target
96 # If we ever get a quick SPARC_FS test, this code should be removed
97 if 'quick' in tests and 'SPARC_FS' in builds:
98 builds.remove('SPARC_FS')
99 targets = ['build/%s/tests/%s/%s' % (build, variant, test)
100 for build in builds
101 for variant in variants
102 for test in tests]
97
103
98 scons_opts = options.scons_opts
99 if options.jobs != 1:
100 scons_opts += ' -j %d' % options.jobs
104scons_opts = options.scons_opts
105if options.jobs != 1:
106 scons_opts += ' -j %d' % options.jobs
101
107
102 system('scons IGNORE_STYLE=True %s %s' % (scons_opts, ' '.join(targets)))
108system('scons %s %s' % (scons_opts, ' '.join(targets)))
103
109
104 sys.exit(0)
110sys.exit(0)
105
111
106except OSError, exc:
107 print "%s: " % progname, exc
108 sys.exit(1)