From: JINMEI Tatuya Date: Wed, 5 Oct 2011 03:51:50 +0000 (-0700) Subject: [1261] missing EXTRA_DIST, and corrected data dir for the writable DB. X-Git-Tag: perftcpdns_before_epoll~37^2~21^2~13^2~18 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3f2d29d0dc92606fac3ba306c34a32a0bec8159e;p=thirdparty%2Fkea.git [1261] missing EXTRA_DIST, and corrected data dir for the writable DB. --- diff --git a/src/bin/xfrin/tests/Makefile.am b/src/bin/xfrin/tests/Makefile.am index 70d23ac8e8..ad40d2eb62 100644 --- a/src/bin/xfrin/tests/Makefile.am +++ b/src/bin/xfrin/tests/Makefile.am @@ -1,6 +1,8 @@ PYCOVERAGE_RUN=@PYCOVERAGE_RUN@ PYTESTS = xfrin_test.py EXTRA_DIST = $(PYTESTS) +EXTRA_DIST += testdata/example.com # not necessarily needed, but for reference +EXTRA_DIST += testdata/example.com.sqlite3 # If necessary (rare cases), explicitly specify paths to dynamic libraries # required by loadable python modules. diff --git a/src/bin/xfrin/tests/xfrin_test.py b/src/bin/xfrin/tests/xfrin_test.py index 7496affa4d..82795dfd41 100644 --- a/src/bin/xfrin/tests/xfrin_test.py +++ b/src/bin/xfrin/tests/xfrin_test.py @@ -1210,7 +1210,7 @@ class TestIXFRSessionWithSQLite3(TestXfrinConnection): ''' def setUp(self): self.sqlite3db_src = TESTDATA_SRCDIR + '/example.com.sqlite3' - self.sqlite3db_obj = TESTDATA_SRCDIR + '/example.com.sqlite3.copy' + self.sqlite3db_obj = TESTDATA_OBJDIR + '/example.com.sqlite3.copy' super().setUp() if os.path.exists(self.sqlite3db_obj): os.unlink(self.sqlite3db_obj)