Options.py (10789:e94c22bd9ef1) Options.py (10803:a91eb7b4a442)
1# Copyright (c) 2013 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

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

229
230def addSEOptions(parser):
231 # Benchmark options
232 parser.add_option("-c", "--cmd", default="",
233 help="The binary to run in syscall emulation mode.")
234 parser.add_option("-o", "--options", default="",
235 help="""The options to pass to the binary, use " "
236 around the entire string""")
1# Copyright (c) 2013 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

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

229
230def addSEOptions(parser):
231 # Benchmark options
232 parser.add_option("-c", "--cmd", default="",
233 help="The binary to run in syscall emulation mode.")
234 parser.add_option("-o", "--options", default="",
235 help="""The options to pass to the binary, use " "
236 around the entire string""")
237 parser.add_option("-e", "--env", default="",
238 help="Initialize workload environment from text file.")
237 parser.add_option("-i", "--input", default="",
238 help="Read stdin from a file.")
239 parser.add_option("--output", default="",
240 help="Redirect stdout to a file.")
241 parser.add_option("--errout", default="",
242 help="Redirect stderr to a file.")
243
244def addFSOptions(parser):

--- 52 unchanged lines hidden ---
239 parser.add_option("-i", "--input", default="",
240 help="Read stdin from a file.")
241 parser.add_option("--output", default="",
242 help="Redirect stdout to a file.")
243 parser.add_option("--errout", default="",
244 help="Redirect stderr to a file.")
245
246def addFSOptions(parser):

--- 52 unchanged lines hidden ---