0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

don't run check_shard_index in sharding passthrough

This commit is contained in:
Eliot Horowitz 2011-01-17 01:28:16 -05:00
parent 53eb4d4441
commit c5cfbbd2a2

View File

@ -73,7 +73,7 @@ files.forEach(
return; return;
} }
// These aren't supposed to get run under sharding: // These aren't supposed to get run under sharding:
if (/[\/\\](dbadmin|error1|fsync|fsync2|geo.*|indexh|remove5|update4|notablescan)\.js$/.test(x.name)) { if (/[\/\\](dbadmin|error1|fsync|fsync2|geo.*|indexh|remove5|update4|notablescan|check_shard_index)\.js$/.test(x.name)) {
print(" >>>>>>>>>>>>>>> skipping test that would fail under sharding " + x.name) print(" >>>>>>>>>>>>>>> skipping test that would fail under sharding " + x.name)
return; return;
} }