Bug 826652 - Create the XML output path if it doesn't exist. r=jgriffin

This commit is contained in:
Dave Hunt 2013-01-06 22:24:16 -05:00
Родитель 475aa40555
Коммит 525f2b3c10
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -368,6 +368,8 @@ class MarionetteTestRunner(object):
print e
if self.xml_output:
if not os.path.exists(os.path.dirname(self.xml_output)):
os.makedirs(os.path.dirname(self.xml_output))
with open(self.xml_output, 'w') as f:
f.write(self.generate_xml(self.results))