summaryrefslogtreecommitdiff
path: root/configs/test/SysPaths.py
diff options
context:
space:
mode:
Diffstat (limited to 'configs/test/SysPaths.py')
-rw-r--r--configs/test/SysPaths.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/configs/test/SysPaths.py b/configs/test/SysPaths.py
index 7f231916c..c7c7db4e7 100644
--- a/configs/test/SysPaths.py
+++ b/configs/test/SysPaths.py
@@ -22,11 +22,11 @@ BINDIR = SYSTEMDIR + '/binaries'
DISKDIR = SYSTEMDIR + '/disks'
def disk(file):
- return '%s/%s' % (DISKDIR, file)
+ return os.path.join(DISKDIR, file)
def binary(file):
- return '%s/%s' % (BINDIR, file)
+ return os.path.join(BINDIR, file)
def script(file):
- return '%s/%s' % ('/z/saidi/work/m5.newmem/configs/boot', file)
+ return os.path.join(SYSTEMDIR, 'boot', file)