rubytest-ruby.py (11670:6ce719503eae) rubytest-ruby.py (11682:612f75cf36a0)
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;

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

29# Brad Beckmann
30
31import m5
32from m5.objects import *
33from m5.defines import buildEnv
34from m5.util import addToPath
35import os, optparse, sys
36
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;

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

29# Brad Beckmann
30
31import m5
32from m5.objects import *
33from m5.defines import buildEnv
34from m5.util import addToPath
35import os, optparse, sys
36
37m5.util.addToPath('../configs/common')
38m5.util.addToPath('../configs/')
39
40from ruby import Ruby
37m5.util.addToPath('../configs/')
38
39from ruby import Ruby
41import Options
40from common import Options
42
43parser = optparse.OptionParser()
44Options.addCommonOptions(parser)
45
46# Add the ruby specific and protocol specific options
47Ruby.define_options(parser)
48
49(options, args) = parser.parse_args()

--- 82 unchanged lines hidden ---
41
42parser = optparse.OptionParser()
43Options.addCommonOptions(parser)
44
45# Add the ruby specific and protocol specific options
46Ruby.define_options(parser)
47
48(options, args) = parser.parse_args()

--- 82 unchanged lines hidden ---