Bläddra i källkod

Ticket 47808 - If be_txn plugin fails in ldbm_back_add, adding entry is double freed

Bug Description:
	CI test fix
		- commented the py.test fixture
		- unset installation_prefix

https://fedorahosted.org/389/ticket/47808

Platforms tested: F19 jenkins

Flag Day: no

Doc impact: no
Thierry bordaz (tbordaz) 11 år sedan
förälder
incheckning
36323c9bb9
1 ändrade filer med 3 tillägg och 3 borttagningar
  1. 3 3
      dirsrvtests/tickets/ticket47808_test.py

+ 3 - 3
dirsrvtests/tickets/ticket47808_test.py

@@ -15,7 +15,7 @@ from constants import *
 
 log = logging.getLogger(__name__)
 
-installation_prefix = '/home/nhosoi/install'
+installation_prefix = None
 
 ATTRIBUTE_UNIQUENESS_PLUGIN = 'cn=attribute uniqueness,cn=plugins,cn=config'
 ENTRY_NAME = 'test_entry'
@@ -27,7 +27,7 @@ class TopologyStandalone(object):
         self.standalone = standalone
 
 
-#@pytest.fixture(scope="module")
[email protected](scope="module")
 def topology(request):
     '''
         This fixture is used to standalone topology for the 'module'.
@@ -199,7 +199,7 @@ def run_isolated():
             - run this program
     '''
     global installation_prefix
-    installation_prefix = '/home/nhosoi/install'
+    installation_prefix = None
         
     topo = topology(True)
     test_ticket47808_run(topo)