[Piglit] [PATCH] framework: Use os.mkdirs instead of os.mkdir for summary subfolders
Jason Ekstrand
jason at jlekstrand.net
Sat Aug 30 11:49:51 PDT 2014
This way test names can contain "/" characters. I to name tests after git
branches and I tend to have git branches named wip/whatever. This prevents
piglit from crashing.
---
framework/summary.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/framework/summary.py b/framework/summary.py
index 332aa40..1815dc7 100644
--- a/framework/summary.py
+++ b/framework/summary.py
@@ -454,7 +454,7 @@ class Summary:
# Iterate across the tests creating the various test specific files
for each in self.results:
- os.mkdir(path.join(destination, each.name))
+ os.makedirs(path.join(destination, each.name))
if each.time_elapsed is not None:
time = datetime.timedelta(0, each.time_elapsed)
--
2.1.0
More information about the Piglit
mailing list