Skip to content

Commit

Permalink
SERVER-4237 Skip tests that use benchRun when running with auth
Browse files Browse the repository at this point in the history
  • Loading branch information
stbrody committed Aug 1, 2012
1 parent b54a71f commit 440ea57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildscripts/smoke.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ def skipTest(path):
return True return True
# These tests don't pass with authentication due to limitations of the test infrastructure, # These tests don't pass with authentication due to limitations of the test infrastructure,
# not due to actual bugs. # not due to actual bugs.
if os.path.join(parentDir,basename) in ["sharding/sync3.js", "sharding/sync6.js", "sharding/parallel.js"]: if os.path.join(parentDir,basename) in ["sharding/sync3.js", "sharding/sync6.js", "sharding/parallel.js", "jstests/bench_test1.js", "jstests/bench_test2.js", "jstests/bench_test3.js"]:
return True return True
# These tests fail due to bugs # These tests fail due to bugs
if os.path.join(parentDir,basename) in ["sharding/sync_conn_cmd.js"]: if os.path.join(parentDir,basename) in ["sharding/sync_conn_cmd.js"]:
Expand Down

0 comments on commit 440ea57

Please sign in to comment.