regress (11308:7d8836fd043d) regress (11706:7339a92fffb5)
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()
39add_option = optparser.add_option
40add_option('-v', '--verbose', action='store_true', default=False,
41 help='echo commands before executing')
42add_option('--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()
39add_option = optparser.add_option
40add_option('-v', '--verbose', action='store_true', default=False,
41 help='echo commands before executing')
42add_option('--builds',
43 default='ALPHA,ALPHA_MOESI_hammer,' \
44 'ALPHA_MESI_Two_Level,' \
45 'ALPHA_MOESI_CMP_directory,' \
46 'ALPHA_MOESI_CMP_token,' \
43 default='ALPHA,' \
47 'MIPS,' \
48 'NULL,' \
44 'MIPS,' \
45 'NULL,' \
46 'NULL_MOESI_hammer,' \
47 'NULL_MESI_Two_Level,' \
48 'NULL_MOESI_CMP_directory,' \
49 'NULL_MOESI_CMP_token,' \
49 'POWER,' \
50 'SPARC,' \
51 'X86,X86_MESI_Two_Level,' \
52 'ARM,' \
53 'HSAIL_X86',
54 help="comma-separated build targets to test (default: '%default')")
55add_option('--modes',
56 default='se,fs',

--- 115 unchanged lines hidden ---
50 'POWER,' \
51 'SPARC,' \
52 'X86,X86_MESI_Two_Level,' \
53 'ARM,' \
54 'HSAIL_X86',
55 help="comma-separated build targets to test (default: '%default')")
56add_option('--modes',
57 default='se,fs',

--- 115 unchanged lines hidden ---