BIND 10 master, updated. 7f026c48836d9366316469190e0f82b882b228c0 [master] Skip mapped file tests where unavailable

BIND 10 source code commits bind10-changes at lists.isc.org
Mon Jun 17 18:50:05 UTC 2013


The branch, master has been updated
       via  7f026c48836d9366316469190e0f82b882b228c0 (commit)
       via  1a8db0437ffc3367de7762447cfa1f4efa83cfd7 (commit)
      from  ff10ffe92269cc3cdf85826fd81e2c01dd909801 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 7f026c48836d9366316469190e0f82b882b228c0
Author: Mukund Sivaraman <muks at isc.org>
Date:   Tue Jun 18 00:19:45 2013 +0530

    [master] Skip mapped file tests where unavailable

commit 1a8db0437ffc3367de7762447cfa1f4efa83cfd7
Author: Mukund Sivaraman <muks at isc.org>
Date:   Mon Jun 17 21:36:50 2013 +0530

    [master] Update .gitignore file

-----------------------------------------------------------------------

Summary of changes:
 .../python/isc/datasrc/tests/clientlist_test.py    |    4 ++++
 src/lib/python/isc/server_common/tests/.gitignore  |    1 +
 2 files changed, 5 insertions(+)

-----------------------------------------------------------------------
diff --git a/src/lib/python/isc/datasrc/tests/clientlist_test.py b/src/lib/python/isc/datasrc/tests/clientlist_test.py
index 7d4eca8..e4232b3 100644
--- a/src/lib/python/isc/datasrc/tests/clientlist_test.py
+++ b/src/lib/python/isc/datasrc/tests/clientlist_test.py
@@ -329,6 +329,8 @@ class ClientListTest(unittest.TestCase):
                                isc.datasrc.ConfigurableClientList.SEGMENT_INUSE),
                               status[0])
 
+    @unittest.skipIf(os.environ['HAVE_SHARED_MEMORY'] != 'yes',
+                     'shared memory is not available')
     def test_get_status_unused(self):
         """
         Test getting status when segment type is mapped, but the cache
@@ -355,6 +357,8 @@ class ClientListTest(unittest.TestCase):
                                isc.datasrc.ConfigurableClientList.SEGMENT_UNUSED),
                               status[0])
 
+    @unittest.skipIf(os.environ['HAVE_SHARED_MEMORY'] != 'yes',
+                     'shared memory is not available')
     def test_get_status_waiting(self):
         """
         Test getting status when segment type is mapped and it has not
diff --git a/src/lib/python/isc/server_common/tests/.gitignore b/src/lib/python/isc/server_common/tests/.gitignore
index 724690c..dfeb2e5 100644
--- a/src/lib/python/isc/server_common/tests/.gitignore
+++ b/src/lib/python/isc/server_common/tests/.gitignore
@@ -1 +1,2 @@
 /datasrc.spec
+/zone.sqlite3



More information about the bind10-changes mailing list