fs.py (4167:ce5d0f62f13b) fs.py (4455:18ff8ee46de8)
1# Copyright (c) 2006-2007 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

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

46
47parser = optparse.OptionParser()
48
49# System options
50parser.add_option("--kernel", action="store", type="string")
51parser.add_option("--script", action="store", type="string")
52
53# Benchmark options
1# Copyright (c) 2006-2007 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

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

46
47parser = optparse.OptionParser()
48
49# System options
50parser.add_option("--kernel", action="store", type="string")
51parser.add_option("--script", action="store", type="string")
52
53# Benchmark options
54parser.add_option("--l2cache", action="store_true")
55parser.add_option("--dual", action="store_true",
56 help="Simulate two systems attached with an ethernet link")
57parser.add_option("-b", "--benchmark", action="store", type="string",
58 dest="benchmark",
59 help="Specify the benchmark to run. Available benchmarks: %s"\
60 % DefinedBenchmarks)
61
62# Metafile options

--- 83 unchanged lines hidden ---
54parser.add_option("--dual", action="store_true",
55 help="Simulate two systems attached with an ethernet link")
56parser.add_option("-b", "--benchmark", action="store", type="string",
57 dest="benchmark",
58 help="Specify the benchmark to run. Available benchmarks: %s"\
59 % DefinedBenchmarks)
60
61# Metafile options

--- 83 unchanged lines hidden ---