Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | structs not classes. | Thiago Farina | 2013-05-19 | 1 | -2/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | For some reason that I do not, ninja prefers: struct Foo { Foo(); private: void Blah(); }; Rather than class Foo { public: Foo(); private: void Blah(); }; This catches the last two usages of "class" in the code base. Signed-off-by: Thiago Farina <tfarina@chromium.org> | ||||
* | drop std:: qualifiers on more stl datatypes | Evan Martin | 2013-04-18 | 1 | -1/+1 |
| | | | | We "using namespace std" anywhere we need a std::string or a std::vector. | ||||
* | also print iteration for gtest_repeat=-1 | Scott Graham | 2013-04-18 | 1 | -4/+12 |
| | |||||
* | reset count in LaconicPrinter for when using --gtest_repeat | Scott Graham | 2013-04-17 | 1 | -0/+5 |
| | |||||
* | fix test | Scott Graham | 2013-04-09 | 1 | -1/+1 |
| | |||||
* | Try to fix build on Linux more. | Nico Weber | 2013-04-09 | 1 | -1/+3 |
| | |||||
* | Make ninja_test output nicer. | Nico Weber | 2013-04-09 | 1 | -8/+12 |
| | |||||
* | Use LinePrinter in test runner. | Nico Weber | 2013-04-09 | 1 | -21/+23 |
| | |||||
* | move single-line printing to new class | Nico Weber | 2013-04-09 | 1 | -0/+14 |
| | |||||
* | Make gtest output more silent, ninja issue #528. | Nico Weber | 2013-04-09 | 1 | -0/+54 |
| | | | | | This is just a proof-of-concept. The terminal printing logic should be extracted from src/build.cc and then reused here. | ||||
* | Split ninja_test.cc into state_test.cc and disk_interface_test.cc | Thiago Farina | 2011-09-11 | 1 | -141/+0 |
| | | | | Signed-off-by: Thiago Farina <tfarina@chromium.org> | ||||
* | Move EvalString tests to eval_env_test.cc | Thiago Farina | 2011-09-09 | 1 | -73/+0 |
| | | | | Signed-off-by: Thiago Farina <tfarina@chromium.org> | ||||
* | Fix windows build by moving mkdtemp() implementation from ninja_test.cc to ↵ | Thiago Farina | 2011-09-08 | 1 | -28/+0 |
| | | | | | | disk_interface_test.cc Signed-off-by: Thiago Farina <tfarina@chromium.org> | ||||
* | Move DiskInterfaceTest into its own source file. | Thiago Farina | 2011-09-07 | 1 | -102/+0 |
| | | | | | | TEST=ninja_test --gtest_filter=DiskInterface* Signed-off-by: Thiago Farina <tfarina@chromium.org> | ||||
* | Factor out State struct from ninja_jumble.cc into its header/source files. | Thiago Farina | 2011-09-03 | 1 | -2/+0 |
| | | | | | | This was a TODO in src/ninja_jumble.cc. Now this task is completed. Signed-off-by: Thiago Farina <tfarina@chromium.org> | ||||
* | remove +x bit from source | Evan Martin | 2011-06-03 | 1 | -0/+0 |
| | |||||
* | Tests now build on a native Windows build (tested with VS2010) | Philip Craig | 2011-05-28 | 1 | -1/+1 |
| | | | | | All tests except SubProcess pass on a native Windows build Tests continue not to build on a platform=mingw build | ||||
* | expand $$ as $ | Evan Martin | 2011-05-27 | 1 | -0/+9 |
| | |||||
* | windows: pass the DiskInterface tests | Evan Martin | 2011-05-08 | 1 | -21/+58 |
| | |||||
* | windows: successfully link tests | Evan Martin | 2011-05-06 | 1 | -19/+51 |
| | | | | | It links, with some hacks. Tests still fail. | ||||
* | fix unit test | Evan Martin | 2011-05-02 | 1 | -1/+1 |
| | |||||
* | Return non-zero status when errors occur. | Nicolas Despres | 2011-05-02 | 1 | -4/+5 |
| | | | | | | Clean all was not returning non-zero when an error occur (like when failing to remove a directory). This patch fix the problem and add a test for it. | ||||
* | Add a test for the clean tool. | Nicolas Despres | 2011-05-02 | 1 | -0/+13 |
| | | | | It also fix a bug about the count of removed file reported. | ||||
* | include location of error in parse error messages in EvalEnv strings | Alexei Svitkine | 2011-04-26 | 1 | -1/+11 |
| | | | | | E.g. when parsing "foo = ${bar", point at the correct location of the missing curly brace. | ||||
* | handle variable expansion with upper-case characters | Orestis Agathokleous | 2011-03-07 | 1 | -0/+11 |
| | |||||
* | move test support into test.* | Evan Martin | 2011-03-06 | 1 | -17/+1 |
| | |||||
* | chdir into a temp dir before disk tests | Evan Martin | 2011-03-05 | 1 | -0/+5 |
| | |||||
* | add copyrights | Evan Martin | 2011-02-06 | 1 | -0/+14 |
| | |||||
* | remove ResetDirty | Evan Martin | 2011-01-08 | 1 | -9/+0 |
| | |||||
* | remove bottom-up dirtying | Evan Martin | 2011-01-08 | 1 | -5/+9 |
| | |||||
* | split out graph into its own header | Evan Martin | 2011-01-08 | 1 | -3/+3 |
| | |||||
* | move src into subdir | Evan Martin | 2010-12-05 | 1 | -0/+235 |