Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-01-04 | Update tests to reflect lexer mode renames (previous commit) | Boris Kolpackov | 5 | -219/+219 | |
2017-01-04 | Change lexer modes to be semantically accurate | Boris Kolpackov | 3 | -22/+24 | |
2016-12-17 | Add support for specifying individual paths of imported targets | Boris Kolpackov | 5 | -51/+105 | |
The new config.import.* variable format is: config.import.<proj>.<name>[.<type>] For example: b config.import.build2.b=/opt/build2/bin/b b config.import.build2.b.exe=b-boot | |||||
2016-12-17 | Use PATH search as fallback import mechanism for exe{} targets | Boris Kolpackov | 2 | -7/+64 | |
2016-12-17 | Don't try to test out-of-project prerequisites | Boris Kolpackov | 7 | -67/+102 | |
2016-12-16 | Add scheduler.txx to buildfile | Karen Arutyunov | 1 | -1/+1 | |
2016-12-16 | Add line_regex | Karen Arutyunov | 11 | -132/+1213 | |
2016-12-16 | Convert tests/ to subproject, initial work on cross-testing support | Boris Kolpackov | 24 | -67/+122 | |
2016-12-16 | Add support for passing target name to testscript via test variable | Boris Kolpackov | 4 | -27/+85 | |
Such a targets is automatically resolved and converted to path. | |||||
2016-12-16 | Move exe{} to build2 core, add fallback extensions (existing files) | Boris Kolpackov | 14 | -59/+74 | |
2016-12-16 | Whitespace cleanup | Boris Kolpackov | 1 | -2/+2 | |
2016-12-16 | Minor code cleanup | Boris Kolpackov | 1 | -11/+19 | |
2016-12-15 | Allow dot as special line-level special character | Boris Kolpackov | 1 | -1/+1 | |
2016-12-15 | Minor testscript cleanups | Boris Kolpackov | 8 | -47/+7 | |
2016-12-15 | Implement test.redirects, test.cleanups | Boris Kolpackov | 4 | -12/+35 | |
2016-12-15 | Testscript documentation additions | Boris Kolpackov | 1 | -264/+393 | |
2016-12-14 | Rename concurrent_runner to default_runner | Boris Kolpackov | 3 | -6/+6 | |
2016-12-14 | Add support for cxx.std=latest, use when building build2 | Boris Kolpackov | 4 | -6/+50 | |
2016-12-13 | Use config macros from libbutl | Boris Kolpackov | 4 | -14/+7 | |
2016-12-13 | Handle exceptions in parallel tests runs | Boris Kolpackov | 2 | -19/+55 | |
Currently we still stop on first error (or soon after) though the default mode should eventually be to keep going. | |||||
2016-12-13 | Various scheduler improvements and fixes | Boris Kolpackov | 4 | -182/+415 | |
2016-12-09 | Fix GCC 5 compilation error, improve scheduler unit test | Boris Kolpackov | 2 | -20/+37 | |
2016-12-09 | Initial parallel scheduler implementation, use to run testscrips | Boris Kolpackov | 26 | -189/+1220 | |
2016-12-07 | Make use of butl::path::current(), butl::path::parent() | Karen Arutyunov | 3 | -5/+5 | |
2016-12-06 | Work around wrong static initialization order in VC | Boris Kolpackov | 3 | -24/+55 | |
2016-12-06 | Work around bogus VC14u3 warning | Boris Kolpackov | 1 | -1/+1 | |
2016-12-05 | Distribution, installation fixes | Karen Arutyunov | 2 | -3/+4 | |
2016-12-05 | Make use of casts and canonicalizations in testscripts | Karen Arutyunov | 8 | -76/+83 | |
2016-12-05 | Eliminate the use of '/...' paths on Windows | Karen Arutyunov | 4 | -36/+40 | |
2016-12-05 | Use empty path for root scope | Karen Arutyunov | 3 | -16/+16 | |
2016-12-05 | Adapt to semantics change of path::normalize() | Karen Arutyunov | 3 | -3/+7 | |
2016-12-05 | Add rm builtin | Karen Arutyunov | 4 | -3/+236 | |
2016-12-05 | Use new convert() in if-else, assert parsing | Boris Kolpackov | 3 | -30/+20 | |
2016-12-05 | Add optional actualize argument to $path.normalize() | Boris Kolpackov | 2 | -19/+56 | |
2016-12-05 | Add comma, ternary, logical operators support in eval context | Boris Kolpackov | 28 | -318/+742 | |
2016-12-01 | Implement testscript variable-if | Boris Kolpackov | 8 | -80/+159 | |
Now a variable-only if is treated the same as a single variable when deciding whether it is part of a test or setup/teardown. | |||||
2016-12-01 | Port old value reversibility tests | Boris Kolpackov | 14 | -157/+94 | |
2016-12-01 | Add path.canonicalize() function | Boris Kolpackov | 2 | -1/+36 | |
2016-12-01 | Organize tests/, factor common testscript fragments | Boris Kolpackov | 22 | -85/+95 | |
2016-12-01 | Move old tests to old-tests/ | Boris Kolpackov | 176 | -5/+6 | |
2016-12-01 | Allow implicit (lexical) typed-to-typed conversion | Boris Kolpackov | 3 | -31/+38 | |
2016-11-30 | Add support for typed/untyped concatenated expansion | Boris Kolpackov | 25 | -368/+818 | |
2016-11-29 | Fix escaping issue, propagate quoting for $ and ( tokens | Boris Kolpackov | 6 | -24/+53 | |
2016-11-29 | Cosmetic change | Boris Kolpackov | 1 | -8/+10 | |
2016-11-28 | Sketch testscript line regex object model | Boris Kolpackov | 2 | -1/+77 | |
2016-11-27 | Handle C++ standard selection in VC14u3, VC15 | Boris Kolpackov | 1 | -12/+37 | |
They now provide the /std: option which defaults to c++14. | |||||
2016-11-26 | Add support for VC15 | Karen Arutyunov | 11 | -30/+36 | |
2016-11-26 | Spec testscript regex, add support in token/lexer | Boris Kolpackov | 7 | -176/+262 | |
2016-11-25 | Implement literal here-document support | Boris Kolpackov | 25 | -123/+194 | |
2016-11-25 | Allow here-document end marker to be wholly quoted | Boris Kolpackov | 7 | -16/+133 | |