summaryrefslogtreecommitdiff
path: root/buildscripts/smoke.py
diff options
context:
space:
mode:
authorSpencer T Brody <spencer@mongodb.com>2015-04-17 16:09:21 -0400
committerSpencer T Brody <spencer@mongodb.com>2015-04-21 11:09:45 -0400
commitc7bcf4d52d994f4884e9dd90635f1b8fcc413bf3 (patch)
tree9f6858f4a3512eb6f38a2f5cf3b0f42d9e2d29f6 /buildscripts/smoke.py
parentf9c4a7619da5884b81c6ec74be3e1b61cb5c8d1d (diff)
downloadmongo-c7bcf4d52d994f4884e9dd90635f1b8fcc413bf3.tar.gz
SERVER-10909 Enable previously skipped tests to run in ssl mode now that MongodRunner is gone
Diffstat (limited to 'buildscripts/smoke.py')
-rwxr-xr-xbuildscripts/smoke.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/buildscripts/smoke.py b/buildscripts/smoke.py
index ed2310a9a09..fbd6696e036 100755
--- a/buildscripts/smoke.py
+++ b/buildscripts/smoke.py
@@ -447,16 +447,6 @@ def skipTest(path):
## Capped tests
"capped_max1.js", "capped_convertToCapped1.js", "rename.js"]:
return True
- if use_ssl:
- # Skip tests using mongobridge since it does not support SSL
- # TODO: Remove when SERVER-10910 has been resolved.
- if basename in ["gridfs.js", "initial_sync3.js", "majority.js", "no_chaining.js",
- "rollback4.js", "slavedelay3.js", "sync2.js", "tags.js"]:
- return True
- # TODO: For now skip tests using MongodRunner, remove when SERVER-10909 has been resolved
- if basename in ["fastsync.js", "index_retry.js", "ttl_repl_maintenance.js",
- "unix_socket1.js"]:
- return True;
if auth or keyFile: # For tests running with auth
# Skip any tests that run with auth explicitly
if parentDir.lower() == "auth" or "auth" in basename.lower():