[Piglit] [PATCH 08/10] oglconform.py: Use grouptools instead of os.path

Dylan Baker baker.dylan.c at gmail.com
Thu Dec 4 15:10:05 PST 2014


Signed-off-by: Dylan Baker <dylanx.c.baker at intel.com>
---
 tests/oglconform.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/oglconform.py b/tests/oglconform.py
index 79a4f25..436247c 100644
--- a/tests/oglconform.py
+++ b/tests/oglconform.py
@@ -25,8 +25,8 @@ import os
 import re
 import sys
 import subprocess
-from os import path
 
+import framework.grouptools as grouptools
 import framework.core
 from framework.profile import TestProfile, Test
 
@@ -72,6 +72,6 @@ with open(testlist_file) as f:
     for l in testlist:
         try:
             category, test = l.split()
-            profile.test_list[path.join('oglconform', category, test)] = OGLCTest(category, test)
+            profile.test_list[grouptools.join('oglconform', category, test)] = OGLCTest(category, test)
         except:
             continue
-- 
2.2.0



More information about the Piglit mailing list