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/05/01 02:13:56 UTC

trafficserver git commit: Skip atscppapi builds until it supports out-of-tree builds

Repository: trafficserver
Updated Branches:
  refs/heads/master c52ad16c0 -> 7e75f960f


Skip atscppapi builds until it supports out-of-tree builds


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

Branch: refs/heads/master
Commit: 7e75f960ffc75fbbf2cab597ba0daf3c140c15af
Parents: c52ad16
Author: Thomas Jackson <ja...@apache.org>
Authored: Thu Apr 30 17:13:31 2015 -0700
Committer: Thomas Jackson <ja...@apache.org>
Committed: Thu Apr 30 17:13:31 2015 -0700

----------------------------------------------------------------------
 ci/tsqa/tests/test_buildoptions.py | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/7e75f960/ci/tsqa/tests/test_buildoptions.py
----------------------------------------------------------------------
diff --git a/ci/tsqa/tests/test_buildoptions.py b/ci/tsqa/tests/test_buildoptions.py
index 2279062..35e97b7 100644
--- a/ci/tsqa/tests/test_buildoptions.py
+++ b/ci/tsqa/tests/test_buildoptions.py
@@ -31,31 +31,39 @@ import tsqa.utils
 
 log = logging.getLogger(__name__)
 
+
 class TestBuildOption(helpers.EnvironmentCase):
     '''
     Run the built-in traffic_server regression test suite.
     '''
-
     def test_buildoption(self):
         pass
 
+
 class TestBuildOptionFastSDK(TestBuildOption):
     '''Build with --enable-fast-sdk'''
     environment_factory = { 'configure': { 'enable-fast-sdk': None }, }
 
+
 class TestBuildOptionDisableDiags(TestBuildOption):
     '''Build with --disable-diags'''
     environment_factory = { 'configure': { 'disable-diags': None }, }
 
+
 class TestBuildOptionDisableTests(TestBuildOption):
     '''Build with --disable-tests'''
     environment_factory = { 'configure': { 'disable-tests': None }, }
 
+
 class TestBuildOptionEnableStaticProxy(TestBuildOption):
     '''Build with --enable-static-proxy'''
     environment_factory = { 'configure': { 'enable-static-proxy': None }, }
 
+
 class TestBuildOptionEnableCxxApi(TestBuildOption):
     '''Build with --enable-cppapi'''
     environment_factory = { 'configure': { 'enable-cppapi': None }, }
 
+    @classmethod
+    def setUpClass(cls):
+        raise helpers.unittest.SkipTest('Skip until atscppapi supports out of tree builds')