Unverified Commit d260790e authored by Jakob Görgen's avatar Jakob Görgen
Browse files

fixed .as_posix error in join_paths method

parent 22d37fcb
...@@ -11,9 +11,8 @@ HOST0 -- NIC0 ------ SWITCH ------ NIC1 -- HOST1 ...@@ -11,9 +11,8 @@ HOST0 -- NIC0 ------ SWITCH ------ NIC1 -- HOST1
This scripts generates the experiments with all the combinations of different execution modes This scripts generates the experiments with all the combinations of different execution modes
""" """
# host_types = ['qemu', 'gem5', 'qt']
host_types = ['gem5'] host_types = ['gem5']
nic_types = ['i40e', 'vr'] nic_types = ['i40e']
net_types = ['switch'] net_types = ['switch']
experiments = [] experiments = []
......
...@@ -410,7 +410,7 @@ class Instantiation(util_base.IdObj): ...@@ -410,7 +410,7 @@ class Instantiation(util_base.IdObj):
print(f"joined={joined}") print(f"joined={joined}")
if enforce_existence and not joined.exists(): if enforce_existence and not joined.exists():
raise Exception(f"couldn't join {base} and {relative_path}") raise Exception(f"couldn't join {base} and {relative_path}")
return joined.absolute() return joined.absolute().as_posix()
def join_repo_base(self, relative_path: str) -> str: def join_repo_base(self, relative_path: str) -> str:
return self._join_paths( return self._join_paths(
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment