diff options
author | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2014-12-17 16:53:09 -0500 |
---|---|---|
committer | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2014-12-17 17:50:33 -0500 |
commit | 8168ce3112bb3f6e4ad80d67c7a0771eb9859a32 (patch) | |
tree | d5cf5eb84e5d0bc62b9d8449427f3872fed423ab /test | |
parent | 2baf19b28b5b7a7468f376da90da328ad0ac0117 (diff) | |
download | mongo-8168ce3112bb3f6e4ad80d67c7a0771eb9859a32.tar.gz |
Skip test_priv01.py on Windows since it is Unix specific
Diffstat (limited to 'test')
-rw-r--r-- | test/suite/test_priv01.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/suite/test_priv01.py b/test/suite/test_priv01.py index 99e584aab6c..e4f7fc17ad9 100644 --- a/test/suite/test_priv01.py +++ b/test/suite/test_priv01.py @@ -45,6 +45,10 @@ class test_priv01(wttest.WiredTigerTestCase): table_name1 = 'test_priv01' nentries = 100 + def setUp(self): + if os.name == 'nt': + self.skipTest('Unix specific test skipped on Windows') + # Each test needs to set up its connection in its own way, # so override these methods to do nothing def setUpConnectionOpen(self, dir): |