You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ja...@apache.org on 2015/02/09 23:20:48 UTC

trafficserver git commit: Support builds which override configure XOR env (not just all or none)

Repository: trafficserver
Updated Branches:
  refs/heads/master c5a98a6d9 -> e5eedf128


Support builds which override configure XOR env (not just all or none)


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/e5eedf12
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/e5eedf12
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/e5eedf12

Branch: refs/heads/master
Commit: e5eedf1287bd9d0158eb3378915a2d256eb0a256
Parents: c5a98a6
Author: Thomas Jackson <ja...@gmail.com>
Authored: Mon Feb 9 14:16:54 2015 -0800
Committer: Thomas Jackson <ja...@gmail.com>
Committed: Mon Feb 9 14:20:33 2015 -0800

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


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/e5eedf12/ci/new_tsqa/tests/helpers.py
----------------------------------------------------------------------
diff --git a/ci/new_tsqa/tests/helpers.py b/ci/new_tsqa/tests/helpers.py
index 82ef067..bfe45ae 100644
--- a/ci/new_tsqa/tests/helpers.py
+++ b/ci/new_tsqa/tests/helpers.py
@@ -51,6 +51,6 @@ class EnvironmentCase(tsqa.test_cases.EnvironmentCase):
         # TODO: figure out a way to determine why the build didn't fail and
         # not skip all build failures?
         try:
-            return ef.get_environment(cls.environment_factory['configure'], cls.environment_factory['env'])
+            return ef.get_environment(cls.environment_factory.get('configure'), cls.environment_factory.get('env'))
         except Exception as e:
             raise unittest.SkipTest(e)