rubytest-ruby.py (11682:612f75cf36a0) rubytest-ruby.py (11706:7339a92fffb5)
1# Copyright (c) 2006-2007 The Regents of The University of Michigan
2# Copyright (c) 2009 Advanced Micro Devices, Inc.
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) ---

35import os, optparse, sys
36
37m5.util.addToPath('../configs/')
38
39from ruby import Ruby
40from common import Options
41
42parser = optparse.OptionParser()
1# Copyright (c) 2006-2007 The Regents of The University of Michigan
2# Copyright (c) 2009 Advanced Micro Devices, Inc.
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) ---

35import os, optparse, sys
36
37m5.util.addToPath('../configs/')
38
39from ruby import Ruby
40from common import Options
41
42parser = optparse.OptionParser()
43Options.addCommonOptions(parser)
43Options.addNoISAOptions(parser)
44
45# Add the ruby specific and protocol specific options
46Ruby.define_options(parser)
47
48(options, args) = parser.parse_args()
49
50#
51# Set the default cache size and associativity to be very small to encourage

--- 79 unchanged lines hidden ---
44
45# Add the ruby specific and protocol specific options
46Ruby.define_options(parser)
47
48(options, args) = parser.parse_args()
49
50#
51# Set the default cache size and associativity to be very small to encourage

--- 79 unchanged lines hidden ---