fs.py (13803:32c104f40e57) fs.py (13864:815193aa6617)
1# Copyright (c) 2010-2013, 2016, 2019 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

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

84 if buildEnv['TARGET_ISA'] == "alpha":
85 test_sys = makeLinuxAlphaSystem(test_mem_mode, bm[0], options.ruby,
86 cmdline=cmdline)
87 elif buildEnv['TARGET_ISA'] == "mips":
88 test_sys = makeLinuxMipsSystem(test_mem_mode, bm[0], cmdline=cmdline)
89 elif buildEnv['TARGET_ISA'] == "sparc":
90 test_sys = makeSparcSystem(test_mem_mode, bm[0], cmdline=cmdline)
91 elif buildEnv['TARGET_ISA'] == "x86":
1# Copyright (c) 2010-2013, 2016, 2019 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

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

84 if buildEnv['TARGET_ISA'] == "alpha":
85 test_sys = makeLinuxAlphaSystem(test_mem_mode, bm[0], options.ruby,
86 cmdline=cmdline)
87 elif buildEnv['TARGET_ISA'] == "mips":
88 test_sys = makeLinuxMipsSystem(test_mem_mode, bm[0], cmdline=cmdline)
89 elif buildEnv['TARGET_ISA'] == "sparc":
90 test_sys = makeSparcSystem(test_mem_mode, bm[0], cmdline=cmdline)
91 elif buildEnv['TARGET_ISA'] == "x86":
92 test_sys = makeLinuxX86System(test_mem_mode, options.num_cpus, bm[0],
93 options.ruby, cmdline=cmdline)
92 test_sys = makeLinuxX86System(test_mem_mode, np, bm[0], options.ruby,
93 cmdline=cmdline)
94 elif buildEnv['TARGET_ISA'] == "arm":
94 elif buildEnv['TARGET_ISA'] == "arm":
95 test_sys = makeArmSystem(test_mem_mode, options.machine_type,
96 options.num_cpus, bm[0], options.dtb_filename,
95 test_sys = makeArmSystem(test_mem_mode, options.machine_type, np,
96 bm[0], options.dtb_filename,
97 bare_metal=options.bare_metal,
98 cmdline=cmdline,
99 external_memory=
100 options.external_memory_system,
101 ruby=options.ruby,
102 security=options.enable_security_extensions)
103 if options.enable_context_switch_stats_dump:
104 test_sys.enable_context_switch_stats_dump = True

--- 273 unchanged lines hidden ---
97 bare_metal=options.bare_metal,
98 cmdline=cmdline,
99 external_memory=
100 options.external_memory_system,
101 ruby=options.ruby,
102 security=options.enable_security_extensions)
103 if options.enable_context_switch_stats_dump:
104 test_sys.enable_context_switch_stats_dump = True

--- 273 unchanged lines hidden ---