]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[1261] missing EXTRA_DIST, and corrected data dir for the writable DB.
authorJINMEI Tatuya <jinmei@isc.org>
Wed, 5 Oct 2011 03:51:50 +0000 (20:51 -0700)
committerJINMEI Tatuya <jinmei@isc.org>
Wed, 5 Oct 2011 03:51:50 +0000 (20:51 -0700)
src/bin/xfrin/tests/Makefile.am
src/bin/xfrin/tests/xfrin_test.py

index 70d23ac8e885bfd5db16e0b9b11db48c19ef4b27..ad40d2eb6200edb2395173845ad794de75cf0c80 100644 (file)
@@ -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.
index 7496affa4d20c1a24970514d9cd27e7040318c75..82795dfd417e5f5aeb764003ab7891f2b9edf733 100644 (file)
@@ -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)