Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | SERVER-13795 rename test binary to dbtest | Randolph Tan | 2014-05-02 | 1 | -2/+2 |
| | |||||
* | SERVER-13527 Eliminate unused module tests facility | Andrew Morrow | 2014-04-16 | 1 | -1/+0 |
| | |||||
* | SERVER-13391 Move slowest tests from noPassthrough* (formerly ↵ | Mathias Stearn | 2014-03-27 | 1 | -0/+2 |
| | | | | | | | slow{Weekly,Nightly}) to slow* slow1 and slow2 are new suites to hold very slow tests. The idea is that we can create slow3, slow4, etc to keep the time to run the longest suite down. | ||||
* | SERVER-13391 Rename slowNightly -> noPassthroughWithMongod and slowWeekly -> ↵ | Mathias Stearn | 2014-03-27 | 1 | -2/+2 |
| | | | | | | noPassthrough This better represents their purpose and the difference between them. | ||||
* | SERVER-13297: enable core suite for commands and add scons smokeJsCore test | Scott Hernandez | 2014-03-26 | 1 | -0/+1 |
| | |||||
* | SERVER-12572 Informatively fail attempts to build C++ client driver targets | Andrew Morrow | 2014-03-04 | 1 | -17/+2 |
| | | | | | | | The MongoDB C++ client driver now resides in a separate repo and is maintained independently of the server. The targets in this repo that used to build or test the driver will now print an error message explaining the change and referring users to the relevant documentation. | ||||
* | SERVER-8682 Add ssl client support to tools | Shaun Verch | 2013-10-11 | 1 | -1/+1 |
| | |||||
* | SERVER-7455 x.509 cluster auth tests and expanded use-ssl passthrough | Andreas Nilsson | 2013-09-30 | 1 | -1/+2 |
| | |||||
* | SERVER-6514 Re-add support for building the C++ driver shared library | Andrew Morrow | 2013-06-03 | 1 | -10/+16 |
| | |||||
* | add SSL smoke testing suite | Eric Milkie | 2012-12-05 | 1 | -0/+1 |
| | |||||
* | SERVER-7503 Fail point test causing nightly to fail | Randolph Tan | 2012-10-30 | 1 | -0/+1 |
| | | | | Make the test run with its own independent configuration | ||||
* | Don't start a mongod when running CppUnittests. | Andy Schwerin | 2012-09-13 | 1 | -3/+5 |
| | |||||
* | Add multiVersion tests to SConscript.smoke | Greg Studer | 2012-07-16 | 1 | -1/+2 |
| | |||||
* | aggregation tests now depend on mongos | Mathias Stearn | 2012-07-10 | 1 | -1/+1 |
| | |||||
* | allow db modules to declare scripts that are run as a test suite | Dan Crosta | 2012-07-10 | 1 | -1/+13 |
| | |||||
* | SERVER-5998: add smokeCppUnittests target to SCons & smoke.py | Dan Crosta | 2012-06-05 | 1 | -0/+1 |
| | |||||
* | Support GridFS with fs.chunks sharded on {files_id:1, n:1} SERVER-3746 | Mathias Stearn | 2012-05-22 | 1 | -1/+1 |
| | | | | | A try block in dbcommands.cpp will need to be modified when SERVER-5752 is fixed. This comment should serve as a reminder. | ||||
* | slowNightly/slowWeekly uses mongos | Eric Milkie | 2012-05-02 | 1 | -2/+2 |
| | |||||
* | add buildlogger (separate test output) | Dan Crosta | 2012-03-23 | 1 | -0/+7 |
| | |||||
* | BUILDBOT-104 remove startMongod, add mongod dep for most tests | Dan Crosta | 2012-03-20 | 1 | -13/+5 |
| | |||||
* | BUILDBOT-95: need AlwaysBuild and SideEffect for recent failures | Dan Crosta | 2012-02-24 | 1 | -4/+4 |
| | |||||
* | BUILDBOT-95 run_smoke_command takes separate args, not one big string | Dan Crosta | 2012-02-23 | 1 | -1/+1 |
| | |||||
* | scons can run smoke.py --only-old-fails and --reset-old-fails | Dan Crosta | 2012-02-23 | 1 | -0/+3 |
| | |||||
* | SERVER-5057 safely invoke smoke.py from SConscript.smoke | Dan Crosta | 2012-02-23 | 1 | -1/+1 |
| | | | | this correctly handles arguments with spaces, quotes, etc | ||||
* | ALL smoke.py invocations are done through smoke_command() | Dan Crosta | 2012-02-16 | 1 | -1/+3 |
| | | | | | This function returns a string command with fully qualified paths to a valid (>= 2.5) Python interpreter and to the smoke.py file. | ||||
* | add --smokeauth pass-through to smoke.py --auth | Dan Crosta | 2012-02-10 | 1 | -0/+3 |
| | |||||
* | BUILDBOT-84: add aggregation test suite | Dan Crosta | 2012-01-23 | 1 | -0/+1 |
| | |||||
* | SCons updates to support variant directories. | Andy Schwerin | 2012-01-17 | 1 | -0/+117 |
This patch is a reorganization of our build files, which brings them slightly closer in line with standard SCons organization. In particular, the SConstruct file sets up the various "build environment" objects, by examining the local system and command line parameters. Then, it delegates to some SConscript files, which describe build rules, like how to compile "mongod" from source. Typically, you would create several SConscript files for a project this large, after breaking the project into logical sub projects, such as "platform abstraction", "data manager", "query optimizer", etc. That will be future work. For now, we only separate out the special rules for executing smoke tests into SConscript.smoke. Pretty much all other build rules are in src/mongo/SConscript. "tools" are placed in site_scons/site_tools. This patch also includes better support for building and tracking dependencies among static libraries ("libdeps" and "MergeLibrary"), and some incumbent, minor restructuring. This patch introduces a "warning" message from SCons about framework.o having two rules that generate it. It is harmless, for now, and will be removed in future work. Future work also includes eliminating use of the SCons "Glob" utility, and restructuring the source code into sensible components. |