regress (3097:6d06427d2248) regress (3099:e3f3ff36645b)
1#! /usr/bin/env python
2# Copyright (c) 2005-2006 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;

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

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',
42 default='ALPHA_SE,ALPHA_FS,MIPS_SE,SPARC_SE',
1#! /usr/bin/env python
2# Copyright (c) 2005-2006 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;

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

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',
42 default='ALPHA_SE,ALPHA_FS,MIPS_SE,SPARC_SE',
43 help='comma-separated list of builds to test')
43 help='comma-separated list of build targets to test '
44 " (default: '%default')" )
44optparser.add_option('--variants', dest='variants',
45 default='opt',
45optparser.add_option('--variants', dest='variants',
46 default='opt',
46 help='comma-separated list of build variants to test')
47 help='comma-separated list of build variants to test '
48 " (default: '%default')" )
47optparser.add_option('--scons-opts', dest='scons_opts', default='',
49optparser.add_option('--scons-opts', dest='scons_opts', default='',
48 help='scons options')
50 help='scons options', metavar='OPTS')
49
50(options, tests) = optparser.parse_args()
51
52
53# split list options on ',' to get Python lists
54builds = options.builds.split(',')
55variants = options.variants.split(',')
56

--- 39 unchanged lines hidden ---
51
52(options, tests) = optparser.parse_args()
53
54
55# split list options on ',' to get Python lists
56builds = options.builds.split(',')
57variants = options.variants.split(',')
58

--- 39 unchanged lines hidden ---