test-driver.py: Fix the shared directory reference

This commit is contained in:
Michael Raskin 2019-11-24 21:26:48 +01:00
parent 98dc6b59bf
commit ef5bc381f9
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@ class Machine:
return path return path
self.state_dir = create_dir("vm-state-{}".format(self.name)) self.state_dir = create_dir("vm-state-{}".format(self.name))
self.shared_dir = create_dir("xchg-shared") self.shared_dir = create_dir("{}/xchg".format(self.state_dir))
self.booted = False self.booted = False
self.connected = False self.connected = False