Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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 | |
2016-11-25 | Distinguish token quoting type and completeness | Boris Kolpackov | 10 | -33/+315 | |
2016-11-23 | Disable compiler-dependent output check in function call unit test | Karen Arutyunov | 1 | -10/+10 | |
2016-11-23 | Implement value type propagation on expansion | Boris Kolpackov | 14 | -95/+265 | |
Currently, we only propagate types of sole, unquoted expansions (variable, function call, or eval context), similar to NULL. To untypify the value, simply quote it. | |||||
2016-11-23 | Implement assert directive | Boris Kolpackov | 6 | -24/+120 | |
The grammar is as follows: assert <expression> [<description>] assert! <expression> [<description>] The expression must evaluate to 'true' or 'false', just like in if-else. | |||||
2016-11-23 | Implement few builtin functions that can operate on any value | Boris Kolpackov | 9 | -5/+117 | |
type() null() empty () identity() | |||||
2016-11-23 | Add support for config.cli=false (leave unconfigured) | Boris Kolpackov | 3 | -23/+50 | |
2016-11-23 | Print test scope directory changes in verbose (-v) mode | Karen Arutyunov | 2 | -1/+15 | |
2016-11-23 | Fix failing on Windows path functions testscript | Karen Arutyunov | 1 | -1/+1 | |
2016-11-22 | Minor fix | Boris Kolpackov | 1 | -7/+7 | |
2016-11-22 | Fix typo | Boris Kolpackov | 4 | -4/+4 | |
2016-11-22 | Add missing non-existent src_base diagnostics | Boris Kolpackov | 1 | -0/+13 | |
2016-11-22 | Use diagnostics facility from libbutl | Boris Kolpackov | 22 | -419/+194 | |
2016-11-21 | Change build.driver/path variable to build.path/process_path | Boris Kolpackov | 7 | -25/+18 | |
2016-11-21 | Add process_path.{recall,effect} build2 functions | Boris Kolpackov | 5 | -85/+124 | |
2016-11-21 | Make types array in function machinery constexpr | Boris Kolpackov | 2 | -4/+26 | |
2016-11-21 | Add support for derived-to-base function overload resolution | Boris Kolpackov | 7 | -111/+220 | |
2016-11-19 | Implement workaround for GCC bug (#62052) in function machinery | Boris Kolpackov | 1 | -0/+99 | |
2016-11-18 | Add function machinery, implement path.normalize() | Boris Kolpackov | 25 | -104/+1330 | |
Note that multi-argument functions are not yet "callable" since there is no support for value packs. |