summaryrefslogtreecommitdiff
path: root/src/mongo/util/text.cpp
diff options
context:
space:
mode:
authorAndy Schwerin <schwerin@10gen.com>2012-06-04 19:27:28 -0400
committerAndy Schwerin <schwerin@10gen.com>2012-06-04 19:27:28 -0400
commit924c3ffadf41e973d778a7cfd3e294e832e63a34 (patch)
tree6120e56c74035118f82c43627b436cd0f6817fae /src/mongo/util/text.cpp
parentb4fcede6c839ea0afcc217063a2309281ae99fc2 (diff)
downloadmongo-924c3ffadf41e973d778a7cfd3e294e832e63a34.tar.gz
checkpoint
Diffstat (limited to 'src/mongo/util/text.cpp')
-rw-r--r--src/mongo/util/text.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mongo/util/text.cpp b/src/mongo/util/text.cpp
index de967d37195..927b0e997a0 100644
--- a/src/mongo/util/text.cpp
+++ b/src/mongo/util/text.cpp
@@ -18,7 +18,6 @@
#include "pch.h"
#include "mongo/util/text.h"
-#include "mongo/util/startup_test.h"
#include "mongo/util/mongoutils/str.h"
#include <boost/smart_ptr/scoped_array.hpp>
@@ -230,12 +229,5 @@ namespace mongo {
#endif // #if defined(_WIN32)
- struct TextUnitTest : public StartupTest {
- void run() {
- verify( parseLL("123") == 123 );
- verify( parseLL("-123000000000") == -123000000000LL );
- }
- } textUnitTest;
-
}