summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2010-08-03 10:06:00 -0400
committerEliot Horowitz <eliot@10gen.com>2010-08-03 10:06:00 -0400
commit285e6e9e655122906a11b0065cad370652393312 (patch)
tree6a18c603b9e140e4ea975deba7b9da9fa6d5c4aa
parent87f261a9955b36dd0334c336ac6edbf6c9d81ec9 (diff)
downloadmongo-285e6e9e655122906a11b0065cad370652393312.tar.gz
fix test regex
-rw-r--r--jstests/slowNightly/run_sharding_passthrough.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/slowNightly/run_sharding_passthrough.js b/jstests/slowNightly/run_sharding_passthrough.js
index 87fa29b366e..fda982b4d1a 100644
--- a/jstests/slowNightly/run_sharding_passthrough.js
+++ b/jstests/slowNightly/run_sharding_passthrough.js
@@ -63,7 +63,7 @@ files.forEach(
* clean (apitest_dbcollection)
* logout and getnonce
*/
- if (/[\/\\](error3|capped|splitvector|apitest_db|cursor6|copydb-auth|profile1|dbhash|median|apitest_dbcollection|evalb|auth1|auth2)\.js$/.test(x.name)) {
+ if (/[\/\\](error3|capped.*|splitvector|apitest_db|cursor6|copydb-auth|profile1|dbhash|median|apitest_dbcollection|evalb|auth1|auth2)\.js$/.test(x.name)) {
print(" !!!!!!!!!!!!!!! skipping test that has failed under sharding but might not anymore " + x.name)
return;
}