summaryrefslogtreecommitdiff
path: root/dbtests
diff options
context:
space:
mode:
authorDwight <dwight@10gen.com>2011-07-11 14:51:44 -0400
committerDwight <dwight@10gen.com>2011-07-11 14:51:44 -0400
commit830a73f1acc7c8025792839e1857b49609ec4d70 (patch)
tree8fce545e8b0a79388eae0dd1c38ef4c89c58b89d /dbtests
parent2982ab07d0dc70ff73f21f13d0c44e1456f57fa4 (diff)
downloadmongo-830a73f1acc7c8025792839e1857b49609ec4d70.tar.gz
run a little less the test
Diffstat (limited to 'dbtests')
-rw-r--r--dbtests/perftests.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbtests/perftests.cpp b/dbtests/perftests.cpp
index eb9c454c6dc..00db16705ec 100644
--- a/dbtests/perftests.cpp
+++ b/dbtests/perftests.cpp
@@ -541,7 +541,7 @@ namespace PerfTests {
class Dummy : public B {
public:
Dummy() { }
- virtual int howLongMillis() { return 4000; }
+ virtual int howLongMillis() { return 3000; }
string name() { return "dummy"; }
void timed() {
dontOptimizeOutHopefully++;
@@ -554,7 +554,7 @@ namespace PerfTests {
class TLS : public B {
public:
TLS() { }
- virtual int howLongMillis() { return 4000; }
+ virtual int howLongMillis() { return 3000; }
string name() { return "thread-local-storage"; }
void timed() {
if( &cc() )