Searched refs:path (Results 1 - 25 of 270) sorted by relevance

1234567891011

/gem5/tests/long/fs/10.linux-boot/
H A Dtest.py29 root.system.readfile = os.path.join(tests_root, 'halt.sh')
/gem5/tests/long/fs/80.solaris-boot/
H A Dtest.py29 root.system.readfile = os.path.join(tests_root, 'halt.sh')
/gem5/ext/ply/test/
H A Dlex_empty.py6 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dyacc_rr_unused.py9 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dlex_doc1.py6 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dlex_error1.py6 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dlex_error2.py6 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dlex_error3.py6 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dlex_literal1.py6 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dlex_literal2.py6 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dlex_re1.py6 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dlex_re2.py6 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dlex_rule1.py6 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dlex_token1.py6 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dlex_token2.py6 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dlex_token3.py6 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dlex_token4.py6 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dlex_module.py5 if ".." not in sys.path: sys.path.insert(0,"..")
/gem5/tests/quick/fs/10.linux-boot/
H A Dtest.py29 root.system.readfile = os.path.join(tests_root, 'halt.sh')
/gem5/src/kern/
H A Doperatingsystem.cc37 OperatingSystem::openSpecialFile(std::string path, Process *process, argument
41 " take un-expected code path or be non-deterministic until proper"
42 " handling is implemented.\n", path.c_str());
/gem5/src/sim/
H A Dredirect_path.cc36 normalizePath(std::string path) argument
41 if (!startswith(path, "/")) {
42 path = realpath((gem5_cwd + "/" + path).c_str(), buf);
44 if (path[path.length()-1] != '/') path.push_back('/');
46 return path;
/gem5/util/
H A Dslicc30 from os.path import dirname, join
33 sys.path.insert(1, join(base, "../src/mem"))
34 sys.path.insert(1, join(base, "../src/python"))
35 sys.path.insert(1, join(base, "../ext/ply"))
/gem5/tests/gem5/m5_util/
H A Dtest_exit.py40 path = joinpath(absdirpath(__file__), '..', variable
44 test_program = DownloadedProgram(url, path, filename)
51 config=os.path.join(config.base_dir, 'configs', 'example','se.py'),
52 config_args=['--cmd', joinpath(test_program.path, filename)],
/gem5/tests/
H A Dmain.py13 base_dir = os.path.dirname(os.path.abspath(__file__))
14 ext_path = os.path.join(base_dir, os.pardir, 'ext')
16 sys.path.insert(0, base_dir)
17 sys.path.insert(0, ext_path)
/gem5/tests/gem5/fs/linux/arm/
H A Drun.py46 import os.path
47 from os.path import join as joinpath
62 os.environ['M5_PATH'] = os.path.dirname(__file__)
64 # path setup
65 gem5_root = joinpath(os.path.dirname(__file__), '..', '..', '..', '..', '..')
66 sys.path.append(joinpath(gem5_root, 'configs'))
68 sys.path.append(joinpath(tests_root, 'configs'))
73 system.readfile = os.path.join(tests_root, 'halt.sh')

Completed in 11 milliseconds

1234567891011