From c60142efda817f030a7495cd6fe4a19953e55afa Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Tue, 21 May 2013 13:40:27 +0200 Subject: Make an ipa-tests package Rename the 'tests' directory to 'ipa-tests', and create an ipa-tests RPM containing the test suite Part of the work for: https://fedorahosted.org/freeipa/ticket/3654 --- make-testcert | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'make-testcert') diff --git a/make-testcert b/make-testcert index a5814e1d..19c188a7 100755 --- a/make-testcert +++ b/make-testcert @@ -21,7 +21,7 @@ """ Generate a custom certificate used in the service unit tests. The certificate -will be created in tests/test_xmlrpc/service.crt +will be created in ipatests/test_xmlrpc/service.crt """ import sys import os @@ -33,7 +33,7 @@ from ipaserver.plugins import rabase from ipapython import ipautil from ipapython.dn import DN -CERTPATH = 'tests/test_xmlrpc/service.crt' +CERTPATH = 'ipatests/test_xmlrpc/service.crt' def run_certutil(reqdir, args, stdin=None): """ @@ -86,7 +86,7 @@ def makecert(reqdir): ra = rabase.rabase() if not os.path.exists(ra.sec_dir) and api.env.xmlrpc_uri == 'http://localhost:8888/ipa/xml': - sys.exit('The in-tree self-signed CA is not configured, see tests/test_xmlrpc/test_cert.py') + sys.exit('The in-tree self-signed CA is not configured, see ipatests/test_xmlrpc/test_cert.py') pwname = reqdir + "/pwd" -- cgit