regress (9850:87d6b41749e9) | regress (10007:94d286db85c1) |
---|---|
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() 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,' \ | 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() 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_CMP_directory,' \ | 44 'ALPHA_MESI_Two_Level,' \ |
45 'ALPHA_MOESI_CMP_directory,' \ 46 'ALPHA_MOESI_CMP_token,' \ 47 'MIPS,' \ 48 'NULL,' \ 49 'POWER,' \ 50 'SPARC,' \ | 45 'ALPHA_MOESI_CMP_directory,' \ 46 'ALPHA_MOESI_CMP_token,' \ 47 'MIPS,' \ 48 'NULL,' \ 49 'POWER,' \ 50 'SPARC,' \ |
51 'X86,X86_MESI_CMP_directory,' \ | 51 'X86,X86_MESI_Two_Level,' \ |
52 'ARM', 53 help="comma-separated build targets to test (default: '%default')") 54add_option('--modes', 55 default='se,fs', 56 help="comma-separated modes to test (default: '%default')") 57add_option('--test-variants', default='opt', 58 help="comma-separated build variants to test (default: '%default')"\ 59 ", set to '' for none") --- 111 unchanged lines hidden --- | 52 'ARM', 53 help="comma-separated build targets to test (default: '%default')") 54add_option('--modes', 55 default='se,fs', 56 help="comma-separated modes to test (default: '%default')") 57add_option('--test-variants', default='opt', 58 help="comma-separated build variants to test (default: '%default')"\ 59 ", set to '' for none") --- 111 unchanged lines hidden --- |