Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-01-06 | Add testscript lexer support for portable path modifier (/) | Boris Kolpackov | 1 | -12/+16 | |
2017-01-05 | Sketch bit stealing interface for regex line_char | Boris Kolpackov | 1 | -0/+20 | |
2017-01-05 | Cosmetic change | Boris Kolpackov | 1 | -2/+2 | |
2017-01-05 | Update copyright year | Boris Kolpackov | 15 | -15/+15 | |
2017-01-05 | Print signal/core dump like shell/make | Karen Arutyunov | 1 | -21/+43 | |
2017-01-05 | Save diff output for {stdout,stderr}.diff | Karen Arutyunov | 1 | -44/+89 | |
2017-01-05 | Add support for regex in runner | Karen Arutyunov | 6 | -141/+659 | |
2017-01-04 | Treat any testscript line that starts with dot as directive | Boris Kolpackov | 4 | -27/+40 | |
Even though we currently only recognize the include directive, we reserve any line that begins with a dot for future. | |||||
2017-01-04 | Change lexer modes to be semantically accurate | Boris Kolpackov | 3 | -22/+24 | |
2016-12-16 | Add line_regex | Karen Arutyunov | 6 | -130/+946 | |
2016-12-16 | Add support for passing target name to testscript via test variable | Boris Kolpackov | 2 | -19/+74 | |
Such a targets is automatically resolved and converted to path. | |||||
2016-12-15 | Implement test.redirects, test.cleanups | Boris Kolpackov | 3 | -12/+30 | |
2016-12-14 | Rename concurrent_runner to default_runner | Boris Kolpackov | 2 | -5/+5 | |
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-09 | Initial parallel scheduler implementation, use to run testscrips | Boris Kolpackov | 5 | -151/+142 | |
2016-12-05 | Make use of casts and canonicalizations in testscripts | Karen Arutyunov | 2 | -11/+12 | |
2016-12-05 | Eliminate the use of '/...' paths on Windows | Karen Arutyunov | 1 | -3/+1 | |
2016-12-05 | Adapt to semantics change of path::normalize() | Karen Arutyunov | 1 | -1/+3 | |
2016-12-05 | Add rm builtin | Karen Arutyunov | 1 | -0/+141 | |
2016-12-05 | Add comma, ternary, logical operators support in eval context | Boris Kolpackov | 2 | -5/+0 | |
2016-12-01 | Implement testscript variable-if | Boris Kolpackov | 2 | -74/+118 | |
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 | 1 | -1/+1 | |
2016-11-29 | Fix escaping issue, propagate quoting for $ and ( tokens | Boris Kolpackov | 2 | -16/+26 | |
2016-11-28 | Sketch testscript line regex object model | Boris Kolpackov | 1 | -0/+76 | |
2016-11-26 | Spec testscript regex, add support in token/lexer | Boris Kolpackov | 5 | -165/+149 | |
2016-11-25 | Implement literal here-document support | Boris Kolpackov | 4 | -38/+93 | |
2016-11-25 | Allow here-document end marker to be wholly quoted | Boris Kolpackov | 2 | -6/+46 | |
2016-11-25 | Distinguish token quoting type and completeness | Boris Kolpackov | 2 | -12/+21 | |
2016-11-23 | Implement value type propagation on expansion | Boris Kolpackov | 1 | -1/+1 | |
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 | Print test scope directory changes in verbose (-v) mode | Karen Arutyunov | 1 | -0/+14 | |
2016-11-22 | Use diagnostics facility from libbutl | Boris Kolpackov | 2 | -15/+9 | |
2016-11-15 | Add cat, false and true builtins | Karen Arutyunov | 5 | -42/+318 | |
2016-11-11 | Clean up testscript grammar and parser | Boris Kolpackov | 2 | -577/+623 | |
2016-11-11 | Get rid of lexer modes overriding pair separators | Boris Kolpackov | 1 | -3/+11 | |
2016-11-10 | Implement scope-if in testscript | Boris Kolpackov | 3 | -148/+415 | |
2016-11-09 | Various minor semantics changes in testscript language | Boris Kolpackov | 2 | -85/+82 | |
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 | 6 | -143/+444 | |
2016-11-08 | Add mkdir and touch builtins | Karen Arutyunov | 6 | -308/+672 | |
2016-11-08 | Get rid of faulty test script move-ctor | Karen Arutyunov | 3 | -15/+12 | |
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 | 1 | -4/+1 | |
2016-11-04 | Rework testscript parser into more modular/reusable functions | Boris Kolpackov | 2 | -220/+254 | |
2016-11-04 | Implement testscript inclusion support | Boris Kolpackov | 5 | -55/+254 | |
2016-11-04 | Fix Clang and VC warnings | Karen Arutyunov | 2 | -2/+6 | |
2016-11-04 | Adopt to auto_fd introduced to libbutl fdstreams and process | Karen Arutyunov | 2 | -15/+4 | |
2016-11-04 | Rely on path from replay data in testscript re-parse phase | Boris Kolpackov | 2 | -5/+8 | |
2016-11-04 | Restructure testscript parser slightly | Boris Kolpackov | 3 | -9/+45 | |
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 | 1 | -11/+0 | |