summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorLaszlo Boszormenyi (GCS) <gcs@debian.org>2013-10-18 10:31:13 +0200
committerLaszlo Boszormenyi (GCS) <gcs@debian.org>2013-10-18 10:31:13 +0200
commit65585c90b12d6523bea75a2aebaae2a2fdf9e641 (patch)
treeccb3081edfe67f988844af661a2bf93aa95ae09f /buildscripts
parente3904bf97e74cbbe5dde6b3abc3e797ad7d26b5d (diff)
Imported Upstream version 2.4.6upstream/2.4.6
Diffstat (limited to 'buildscripts')
-rwxr-xr-xbuildscripts/smoke.py6
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 ]: