diff options
Diffstat (limited to 'buildscripts')
| -rwxr-xr-x | buildscripts/smoke.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/buildscripts/smoke.py b/buildscripts/smoke.py index b70d5e109a9..ebc0641e538 100755 --- a/buildscripts/smoke.py +++ b/buildscripts/smoke.py @@ -359,9 +359,6 @@ def skipTest(path): if small_oplog: # For tests running in parallel if basename in ["cursor8.js", "indexh.js", "dropdb.js", "connections_opened.js", "opcounters.js"]: return True - if os.sys.platform == "sunos5": - if basename == "geo_update_btree.js": - 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: @@ -386,7 +383,8 @@ def skipTest(path): ("jstests", "bench_test1.js"), ("jstests", "bench_test2.js"), ("jstests", "bench_test3.js"), - ("jstests", "drop2.js") # SERVER-8589 + ("jstests", "drop2.js"), # SERVER-8589 + ("jstests", "killop.js") # SERVER-10128 ] if os.path.join(parentDir,basename) in [ os.path.join(*test) for test in authTestsToSkip ]: |
