Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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. | |||||
2016-11-18 | Implement noop meta-operation | Boris Kolpackov | 5 | -12/+33 | |
The effect is loading all the buildfiles but not searching/matching/executing any targets/operations. Useful for testing. | |||||
2016-11-18 | Make names and vector<name> different types, add typed value constructor | Boris Kolpackov | 9 | -27/+49 | |
2016-11-15 | Add cat, false and true builtins | Karen Arutyunov | 18 | -60/+421 | |
2016-11-11 | Clean up testscript grammar and parser | Boris Kolpackov | 5 | -604/+655 | |
2016-11-11 | Get rid of lexer modes overriding pair separators | Boris Kolpackov | 5 | -28/+30 | |
2016-11-10 | Implement scope-if in testscript | Boris Kolpackov | 8 | -160/+968 | |
2016-11-09 | Various minor semantics changes in testscript language | Boris Kolpackov | 5 | -121/+133 | |
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-09 | Fix testscript grammar error | Boris Kolpackov | 1 | -1/+2 | |
2016-11-08 | Implement testscript command-if | Boris Kolpackov | 11 | -152/+1001 | |
2016-11-08 | Add mkdir and touch builtins | Karen Arutyunov | 14 | -386/+989 | |
2016-11-08 | Get rid of faulty test script move-ctor | Karen Arutyunov | 5 | -18/+16 | |
2016-11-07 | Make build.driver path absolute | Boris Kolpackov | 3 | -5/+19 | |
2016-11-07 | Rework pre-parsed line type in testscript | Boris Kolpackov | 2 | -53/+68 | |
2016-11-07 | Only do effective escaping when re-parsing expansions in testscript | Boris Kolpackov | 2 | -4/+19 | |
Doing unconditional escaping messes up expansions that are Windows paths. | |||||
2016-11-04 | Use include-aware location in testscript | Boris Kolpackov | 2 | -4/+6 | |
2016-11-04 | Rework testscript parser into more modular/reusable functions | Boris Kolpackov | 2 | -220/+254 | |
2016-11-04 | Update testscript grammar with command-if | Boris Kolpackov | 1 | -3/+21 | |
2016-11-04 | Implement testscript inclusion support | Boris Kolpackov | 8 | -63/+406 | |
2016-11-04 | Make newline token always separated from previous one | Boris Kolpackov | 1 | -1/+2 | |
2016-11-04 | Adjust diag_record::os_ member name to os | Boris Kolpackov | 2 | -9/+9 | |
2016-11-04 | Print empty name as '' rather than {} in quoted mode | Boris Kolpackov | 2 | -6/+13 | |
2016-11-04 | Fix Clang and VC warnings | Karen Arutyunov | 4 | -5/+16 | |
2016-11-04 | Adopt to auto_fd introduced to libbutl fdstreams and process | Karen Arutyunov | 9 | -23/+17 | |
2016-11-04 | Update testscript spec with include directive grammar | Boris Kolpackov | 1 | -3/+22 | |
2016-11-04 | Rely on path from replay data in testscript re-parse phase | Boris Kolpackov | 2 | -5/+8 | |
2016-11-04 | Add file path to replay_token | Boris Kolpackov | 2 | -5/+21 | |
2016-11-04 | Restructure testscript parser slightly | Boris Kolpackov | 5 | -30/+54 | |
2016-11-04 | Implement missing testscript integration tests | Boris Kolpackov | 2 | -39/+49 | |
2016-11-04 | Add test for here-doc in pipe/expr command | Boris Kolpackov | 1 | -0/+38 | |
2016-11-04 | Fix VC compilation errors | Karen Arutyunov | 1 | -25/+25 | |
2016-11-04 | Make rmdir_r() to call entry_exists(path) rather than exists(dir_path) | Karen Arutyunov | 4 | -14/+31 | |