Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-02-13 | Add notion of load phase generation | Boris Kolpackov | 8 | -55/+86 | |
2017-02-13 | Implement pattern-based variable typing, tighten variable type update | Boris Kolpackov | 11 | -85/+246 | |
2017-02-13 | Add notion of phase, enforce | Boris Kolpackov | 23 | -97/+292 | |
2017-02-13 | Add comment | Boris Kolpackov | 1 | -3/+5 | |
2017-02-13 | Add scheduling calls to operation's match() | Boris Kolpackov | 14 | -187/+278 | |
2017-02-13 | Add model mutex, make var_pool const by default | Boris Kolpackov | 63 | -595/+851 | |
2017-02-11 | Fix testscript parser not to strip leading blanks in here-doc | Karen Arutyunov | 2 | -7/+18 | |
2017-02-11 | Add support for &dir/*[*][/] test path cleanup syntax | Karen Arutyunov | 3 | -45/+160 | |
2017-02-10 | Fix save_regex() | Karen Arutyunov | 3 | -35/+54 | |
2017-02-03 | Fix runner output in verbose (-v, -V) modes | Karen Arutyunov | 5 | -28/+46 | |
2017-02-03 | Add sed builtin | Karen Arutyunov | 10 | -149/+1045 | |
2017-01-31 | Use HTTP for external submodules to help those behind firewalls | Boris Kolpackov | 1 | -1/+1 | |
2017-01-31 | Move builtin and runner tests to '$c ... && $b' pattern | Karen Arutyunov | 11 | -366/+180 | |
2017-01-31 | Add support for test command pipe, expression and command-if | Karen Arutyunov | 9 | -210/+973 | |
2017-01-26 | Only pass diff --strip-trailing-cr in runner if running on Windows | Karen Arutyunov | 1 | -7/+11 | |
2017-01-26 | Add test builtin | Karen Arutyunov | 4 | -1/+171 | |
2017-01-24 | Add default constructors to *_rule classes to make older clang happy | Karen Arutyunov | 5 | -0/+20 | |
2017-01-24 | Add support for shared here-documents | Karen Arutyunov | 7 | -49/+269 | |
2017-01-24 | Add support for comparison of test command output to a file | Karen Arutyunov | 23 | -451/+545 | |
2017-01-24 | Update doc/.gitignore | Karen Arutyunov | 1 | -1/+1 | |
2017-01-24 | Redo config as feature test macros | Boris Kolpackov | 3 | -3/+4 | |
2017-01-23 | Make rules const throughout | Boris Kolpackov | 9 | -23/+30 | |
2017-01-23 | Add bunch of missing const's | Boris Kolpackov | 13 | -27/+27 | |
2017-01-23 | Go back to storing scope instead of target in prerequisite | Boris Kolpackov | 7 | -62/+56 | |
Turns out this was semantically the right way to do it. | |||||
2017-01-23 | Implement automatic loading of directory buildfiles | Boris Kolpackov | 20 | -105/+290 | |
Now instead of explicitly writing: d = foo/ bar/ ./: $d include $d We can (usually) just write: ./: foo/ bar/ | |||||
2017-01-20 | Remove prerequisite caching in scope | Boris Kolpackov | 12 | -284/+166 | |
We don't share them often and those that are shared (e.g., cxx{} in obja/objs{}) are lightweight (SOO). | |||||
2017-01-20 | Cosmetic change | Boris Kolpackov | 1 | -21/+20 | |
2017-01-20 | Add more comments to meta/operation loop | Boris Kolpackov | 1 | -6/+6 | |
2017-01-19 | Add rmdir builtin | Karen Arutyunov | 4 | -41/+292 | |
2017-01-19 | Add support for portable path modifer and dot character escaping inversion | Karen Arutyunov | 26 | -717/+1813 | |
2017-01-19 | Get rid of unnecessary mutable | Boris Kolpackov | 1 | -2/+2 | |
2017-01-19 | Get rid of extension_pool | Boris Kolpackov | 33 | -198/+187 | |
2017-01-19 | Get rid of project_name_pool | Boris Kolpackov | 22 | -94/+96 | |
With small string optimizations this is most likely a hindrance rather that an optimization. | |||||
2017-01-18 | Add missing diagnostics in testscript parser | Boris Kolpackov | 2 | -0/+93 | |
2017-01-18 | Only pass diff --strip-trailing-cr if running on Windows | Boris Kolpackov | 1 | -1/+6 | |
Since we cannot assume diff on other platforms has this option. Also need to do likewise in the testscript runner. | |||||
2017-01-18 | Ignore prerequisite mtimes that are not linker inputs | Boris Kolpackov | 9 | -151/+155 | |
This makes sure, for example, that we don't unnecessarily re-link an executable when its testscript prerequisite is changes. | |||||
2017-01-17 | Update doc generation script | Boris Kolpackov | 3 | -25/+25 | |
2017-01-17 | Testscript doc proofreading changes | Boris Kolpackov | 1 | -49/+51 | |
2017-01-17 | Specify testscript sed builtin | Boris Kolpackov | 1 | -11/+91 | |
2017-01-16 | Specify the test builtin in testscript doc | Boris Kolpackov | 1 | -0/+22 | |
2017-01-16 | Specify diff pseudo-builtin in testscript doc | Boris Kolpackov | 1 | -0/+14 | |
2017-01-16 | Specify compare to file testscript feature | Boris Kolpackov | 1 | -21/+25 | |
2017-01-16 | Specify shared here-document testscript feature | Boris Kolpackov | 1 | -1/+15 | |
2017-01-16 | Testscript doc cleanup | Boris Kolpackov | 1 | -285/+310 | |
2017-01-12 | Rename script/integration to script-integration | Boris Kolpackov | 4 | -5/+8 | |
2017-01-12 | Implement support for narrowing down tests (config.test) | Boris Kolpackov | 28 | -237/+960 | |
2017-01-12 | Don't by default treat exe{} in tests/ as tests | Boris Kolpackov | 1 | -2/+1 | |
2017-01-12 | Inject fsdir{} even for project roots | Boris Kolpackov | 2 | -9/+11 | |
This takes care of subprojects, such as tests/. | |||||
2017-01-11 | Testscript doc fixes | Boris Kolpackov | 1 | -107/+111 | |
2017-01-10 | Testscript doc fixes | Boris Kolpackov | 1 | -26/+44 | |