regress (4976:eb1067b3060c) regress (5187:a0ff86ffdefe)
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;

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

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',
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;

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

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

--- 59 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')

--- 59 unchanged lines hidden ---