[Piglit] [PATCH 1/4] crucible: fix getting values from piglit.conf

Dylan Baker dylan at pnwbakers.com
Wed May 2 20:57:52 UTC 2018


---
 tests/crucible.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/crucible.py b/tests/crucible.py
index 279cadde8..796d0951a 100644
--- a/tests/crucible.py
+++ b/tests/crucible.py
@@ -39,7 +39,7 @@ __all__ = ['profile']
 
 crucible_bin = os.environ.get('PIGLIT_CRUCIBLE_BIN', None)
 if crucible_bin is None:
-    crucible_bin = PIGLIT_CONFIG.safe_get(('crucible', 'bin'), True)
+    crucible_bin = PIGLIT_CONFIG.safe_get('crucible', 'bin')
 
 if crucible_bin is None:
     raise exceptions.PiglitFatalError(
-- 
2.17.0



More information about the Piglit mailing list