regress (3734:5eb062f81950) | regress (4130:a611c874376e) |
---|---|
1#! /usr/bin/env python | 1#! /usr/bin/env python |
2# Copyright (c) 2005-2006 The Regents of The University of Michigan | 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; 9# redistributions in binary form must reproduce the above copyright 10# notice, this list of conditions and the following disclaimer in the --- 23 unchanged lines hidden (view full) --- 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', | 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; 9# redistributions in binary form must reproduce the above copyright 10# notice, this list of conditions and the following disclaimer in the --- 23 unchanged lines hidden (view full) --- 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', |
42 default='ALPHA_SE,ALPHA_FS,MIPS_SE,SPARC_SE', | 42 default='ALPHA_SE,ALPHA_FS,MIPS_SE,SPARC_SE,SPARC_FS', |
43 help='comma-separated list of build targets to test ' 44 " (default: '%default')" ) 45optparser.add_option('--variants', dest='variants', 46 default='fast', 47 help='comma-separated list of build variants to test ' 48 " (default: '%default')" ) 49optparser.add_option('--scons-opts', dest='scons_opts', default='', 50 help='scons options', metavar='OPTS') --- 54 unchanged lines hidden --- | 43 help='comma-separated list of build targets to test ' 44 " (default: '%default')" ) 45optparser.add_option('--variants', dest='variants', 46 default='fast', 47 help='comma-separated list of build variants to test ' 48 " (default: '%default')" ) 49optparser.add_option('--scons-opts', dest='scons_opts', default='', 50 help='scons options', metavar='OPTS') --- 54 unchanged lines hidden --- |