summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbuildscripts/smoke.py8
-rw-r--r--jstests/sharding/parallel.js1
-rw-r--r--jstests/sharding/sync_conn_cmd.js1
3 files changed, 8 insertions, 2 deletions
diff --git a/buildscripts/smoke.py b/buildscripts/smoke.py
index 3042da505e1..9fda306bc42 100755
--- a/buildscripts/smoke.py
+++ b/buildscripts/smoke.py
@@ -328,12 +328,16 @@ def skipTest(path):
return True
if auth or keyFile: # For tests running with auth
# Skip any tests that run with auth explicitly
- if parentDir == "auth" or "auth" in basename:
+ if parentDir == "auth" or "auth" in basename or parentDir == "tool": # SERVER-6368
return True
# These tests don't pass with authentication due to limitations of the test infrastructure,
# not due to actual bugs.
- if os.path.join(parentDir,basename) in ["sharding/sync3.js", "sharding/sync6.js"]:
+ if os.path.join(parentDir,basename) in ["sharding/sync3.js", "sharding/sync6.js", "sharding/parallel.js"]:
return True
+ # These tests fail due to bugs
+ if os.path.join(parentDir,basename) in ["sharding/sync_conn_cmd.js"]:
+ return True
+
return False
def runTest(test):
diff --git a/jstests/sharding/parallel.js b/jstests/sharding/parallel.js
index 07a2c009450..fd86f9627a3 100644
--- a/jstests/sharding/parallel.js
+++ b/jstests/sharding/parallel.js
@@ -1,3 +1,4 @@
+// This test fails when run with authentication because benchRun with auth is broken: SERVER-6388
numShards = 3
s = new ShardingTest( "parallel" , numShards , 2 , 2 , { sync : true } );
s.setBalancer( false )
diff --git a/jstests/sharding/sync_conn_cmd.js b/jstests/sharding/sync_conn_cmd.js
index 193448e04a7..7ea5a4352e8 100644
--- a/jstests/sharding/sync_conn_cmd.js
+++ b/jstests/sharding/sync_conn_cmd.js
@@ -1,3 +1,4 @@
+// This test fails when run with authentication due to SERVER-6327
/**
* Test SyncClusterConnection commands using call instead of findOne
*/