diff options
author | Spencer T Brody <spencer@10gen.com> | 2012-09-07 16:23:07 -0400 |
---|---|---|
committer | Spencer T Brody <spencer@10gen.com> | 2012-09-10 16:31:53 -0400 |
commit | bbc53eca04200a1c16d8e202886e4ffe0f595759 (patch) | |
tree | 0356f4cd7db7f8996fbedc873cd5151e97baaf9a /buildscripts | |
parent | a977464bfe226dd466aaef73cc63949394d3e3f8 (diff) | |
download | mongo-bbc53eca04200a1c16d8e202886e4ffe0f595759.tar.gz |
SERVER-6972 SERVER-4237 Skip sharding/read_pref_rs_client.js when running with auth
Diffstat (limited to 'buildscripts')
-rwxr-xr-x | buildscripts/smoke.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/buildscripts/smoke.py b/buildscripts/smoke.py index 1523c4cbe35..085393299a1 100755 --- a/buildscripts/smoke.py +++ b/buildscripts/smoke.py @@ -343,6 +343,9 @@ def skipTest(path): # SERVER-6388 if os.path.join(parentDir,basename) in ["sharding/sync3.js", "sharding/sync6.js", "sharding/parallel.js", "jstests/bench_test1.js", "jstests/bench_test2.js", "jstests/bench_test3.js"]: return True + # SERVER-6972 + if os.path.join(parentDir,basename) == "sharding/read_pref_rs_client.js": + return True # These tests fail due to bugs if os.path.join(parentDir,basename) in ["sharding/sync_conn_cmd.js"]: # SERVER-6327 return True |