Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-12-13 | Various scheduler improvements and fixes | Boris Kolpackov | 1 | -23/+102 | |
2016-12-09 | Fix GCC 5 compilation error, improve scheduler unit test | Boris Kolpackov | 1 | -17/+31 | |
2016-12-09 | Initial parallel scheduler implementation, use to run testscrips | Boris Kolpackov | 6 | -12/+119 | |
2016-12-05 | Make use of casts and canonicalizations in testscripts | Karen Arutyunov | 1 | -2/+9 | |
2016-12-05 | Add comma, ternary, logical operators support in eval context | Boris Kolpackov | 5 | -3/+81 | |
2016-12-01 | Implement testscript variable-if | Boris Kolpackov | 1 | -0/+17 | |
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-11-30 | Add support for typed/untyped concatenated expansion | Boris Kolpackov | 4 | -8/+8 | |
2016-11-29 | Fix escaping issue, propagate quoting for $ and ( tokens | Boris Kolpackov | 1 | -2/+2 | |
2016-11-25 | Implement literal here-document support | Boris Kolpackov | 12 | -57/+58 | |
2016-11-25 | Allow here-document end marker to be wholly quoted | Boris Kolpackov | 5 | -10/+87 | |
2016-11-25 | Distinguish token quoting type and completeness | Boris Kolpackov | 5 | -5/+206 | |
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 | 2 | -3/+3 | |
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 few builtin functions that can operate on any value | Boris Kolpackov | 2 | -3/+3 | |
type() null() empty () identity() | |||||
2016-11-22 | Use diagnostics facility from libbutl | Boris Kolpackov | 1 | -1/+1 | |
2016-11-21 | Change build.driver/path variable to build.path/process_path | Boris Kolpackov | 2 | -5/+5 | |
2016-11-21 | Add process_path.{recall,effect} build2 functions | Boris Kolpackov | 2 | -3/+5 | |
2016-11-21 | Add support for derived-to-base function overload resolution | Boris Kolpackov | 2 | -7/+16 | |
2016-11-18 | Add function machinery, implement path.normalize() | Boris Kolpackov | 6 | -3/+287 | |
Note that multi-argument functions are not yet "callable" since there is no support for value packs. | |||||
2016-11-11 | Clean up testscript grammar and parser | Boris Kolpackov | 1 | -1/+1 | |
2016-11-10 | Implement scope-if in testscript | Boris Kolpackov | 4 | -12/+536 | |
2016-11-09 | Various minor semantics changes in testscript language | Boris Kolpackov | 2 | -30/+31 | |
The .include directive and if-else no longer have to be separated from the following token. This allows to make the decision by looking at just one token. The test scope can no longer have a description inside the scope. It should always be leading the scope itself. | |||||
2016-11-08 | Implement testscript command-if | Boris Kolpackov | 5 | -9/+557 | |
2016-11-08 | Get rid of faulty test script move-ctor | Karen Arutyunov | 1 | -2/+2 | |
2016-11-04 | Implement testscript inclusion support | Boris Kolpackov | 2 | -1/+141 | |
2016-11-04 | Restructure testscript parser slightly | Boris Kolpackov | 1 | -5/+5 | |
2016-11-04 | Add test for here-doc in pipe/expr command | Boris Kolpackov | 1 | -0/+38 | |
2016-11-04 | Implement command-pipe, command-expr in testscript parser | Boris Kolpackov | 4 | -4/+74 | |
2016-11-04 | Add support for cleanup types to testscript parser | Karen Arutyunov | 3 | -24/+55 | |
2016-11-04 | Implement support for here-document indentation | Boris Kolpackov | 1 | -0/+88 | |
2016-11-04 | Update testscripts | Boris Kolpackov | 1 | -1/+2 | |
2016-11-04 | Add tests and fixes for trailing description support | Boris Kolpackov | 3 | -2/+58 | |
2016-11-04 | Initial support for trailing description in testscript | Boris Kolpackov | 2 | -5/+5 | |
2016-11-04 | Implement description support in testscript | Boris Kolpackov | 11 | -26/+447 | |
2016-11-04 | Add more test command file redirect tests | Karen Arutyunov | 1 | -0/+46 | |
2016-11-04 | Add support of cleanups to testscript parser | Karen Arutyunov | 4 | -2/+56 | |
2016-11-04 | Fix test command merge redirect parsing and testing | Karen Arutyunov | 1 | -10/+5 | |
2016-11-04 | Add support of merge redirect to testscript parser | Karen Arutyunov | 3 | -0/+91 | |
2016-11-04 | Add support of file redirects to testscript runner | Karen Arutyunov | 5 | -2/+184 | |
2016-11-04 | Handle explicit test scopes | Boris Kolpackov | 2 | -6/+90 | |
2016-11-04 | Implement support for testscript scopes | Boris Kolpackov | 3 | -7/+78 | |
2016-11-04 | Add few setup/teardown tests | Boris Kolpackov | 1 | -0/+28 | |
2016-11-04 | Add tests for first_token, second_token testscript lexer modes | Boris Kolpackov | 3 | -3/+79 | |
2016-11-04 | Diagnose semicolon after testscript setup/teardown commands | Boris Kolpackov | 2 | -1/+8 | |
2016-11-04 | Add support for setup/teardown commands | Boris Kolpackov | 6 | -5/+31 | |
2016-11-04 | Change <! and >! syntaxt to <- and >- | Karen Arutyunov | 1 | -2/+2 | |
2016-11-04 | Implement creation/cleanup of testscript root working directory | Boris Kolpackov | 2 | -3/+3 | |
2016-11-04 | Add couple of testscript tests | Boris Kolpackov | 2 | -1/+114 | |
2016-11-04 | Add support for no-newline redirects in testscript | Boris Kolpackov | 1 | -12/+8 | |
The no-newline operators are '<:', '>:', '<<:', and '>>:'. | |||||
2016-11-04 | Implement support for compound tests | Boris Kolpackov | 7 | -20/+195 | |