diff options
author | Eric Milkie <milkie@10gen.com> | 2013-03-04 11:35:53 -0500 |
---|---|---|
committer | Eric Milkie <milkie@10gen.com> | 2013-03-04 12:43:17 -0500 |
commit | cafb1081b84aa443aa0b5c2c12d4d14eaa628a82 (patch) | |
tree | 8efe2f4e95945ad4c109824df417bc3c963e5da5 /buildscripts | |
parent | 04e96203721d49eb03777f63a3b085057656e313 (diff) | |
download | mongo-cafb1081b84aa443aa0b5c2c12d4d14eaa628a82.tar.gz |
SERVER-8782 disable smalloplog geo_update_btree.js on Solaris
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 08120910b9e..c57b578c523 100755 --- a/buildscripts/smoke.py +++ b/buildscripts/smoke.py @@ -359,6 +359,9 @@ def skipTest(path): if small_oplog: # For tests running in parallel if basename in ["cursor8.js", "indexh.js", "dropdb.js", "connections_opened.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: |