regress (6256:5e8d93b5d71a) regress (6699:b61018e8d169)
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;

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

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',
43 default='ALPHA_SE,ALPHA_FS,MIPS_SE,' + \
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;

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

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',
43 default='ALPHA_SE,ALPHA_FS,MIPS_SE,' + \
44 'SPARC_SE,SPARC_FS,X86_SE,ARM_SE',
44 'POWER_SE,SPARC_SE,SPARC_FS,X86_SE,ARM_SE',
45 help='comma-separated list of build targets to test '
46 " (default: '%default')" )
47optparser.add_option('--variants', dest='variants',
48 default='fast',
49 help='comma-separated list of build variants to test '
50 " (default: '%default')" )
51optparser.add_option('--scons-opts', dest='scons_opts', default='',
52 help='scons options', metavar='OPTS')

--- 63 unchanged lines hidden ---
45 help='comma-separated list of build targets to test '
46 " (default: '%default')" )
47optparser.add_option('--variants', dest='variants',
48 default='fast',
49 help='comma-separated list of build variants to test '
50 " (default: '%default')" )
51optparser.add_option('--scons-opts', dest='scons_opts', default='',
52 help='scons options', metavar='OPTS')

--- 63 unchanged lines hidden ---