regress (6699:b61018e8d169) regress (6928:5bd33f7c26ea)
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,' + \
43 default='ALPHA_SE,ALPHA_SE_MOESI_hammer,' \
44 'ALPHA_SE_MESI_CMP_directory,' \
45 'ALPHA_SE_MOESI_CMP_directory,' \
46 'ALPHA_SE_MOESI_CMP_token,' \
47 'ALPHA_FS,MIPS_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='',

--- 64 unchanged lines hidden ---
48 'POWER_SE,SPARC_SE,SPARC_FS,X86_SE,ARM_SE',
49 help='comma-separated list of build targets to test '
50 " (default: '%default')" )
51optparser.add_option('--variants', dest='variants',
52 default='fast',
53 help='comma-separated list of build variants to test '
54 " (default: '%default')" )
55optparser.add_option('--scons-opts', dest='scons_opts', default='',

--- 64 unchanged lines hidden ---