Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-02-13 | Track variable value modifications | Boris Kolpackov | 1 | -1/+1 | |
2017-02-13 | Implement parallel error propagation, keep_going mode | Boris Kolpackov | 2 | -35/+57 | |
Keep going is the default but there is now the -s|--serial-stop that makes the driver run serially and stop at first error. Also fix some lockups, other minor improvements/features. | |||||
2017-02-13 | Implement parallel operation execution | Boris Kolpackov | 1 | -3/+3 | |
2017-02-13 | Pass const target& to recipes | Boris Kolpackov | 2 | -6/+6 | |
2017-02-13 | Add notion of phase, enforce | Boris Kolpackov | 1 | -1/+4 | |
2017-02-11 | Fix testscript parser not to strip leading blanks in here-doc | Karen Arutyunov | 1 | -7/+16 | |
2017-02-11 | Add support for &dir/*[*][/] test path cleanup syntax | Karen Arutyunov | 1 | -2/+55 | |
2017-02-10 | Fix save_regex() | Karen Arutyunov | 1 | -5/+5 | |
2017-02-03 | Fix runner output in verbose (-v, -V) modes | Karen Arutyunov | 2 | -10/+22 | |
2017-02-03 | Add sed builtin | Karen Arutyunov | 3 | -147/+402 | |
2017-01-31 | Add support for test command pipe, expression and command-if | Karen Arutyunov | 3 | -167/+336 | |
2017-01-26 | Only pass diff --strip-trailing-cr in runner if running on Windows | Karen Arutyunov | 1 | -7/+11 | |
2017-01-26 | Add test builtin | Karen Arutyunov | 2 | -0/+91 | |
2017-01-24 | Add support for shared here-documents | Karen Arutyunov | 5 | -49/+170 | |
2017-01-24 | Add support for comparison of test command output to a file | Karen Arutyunov | 8 | -368/+420 | |
2017-01-19 | Add rmdir builtin | Karen Arutyunov | 1 | -8/+127 | |
2017-01-19 | Add support for portable path modifer and dot character escaping inversion | Karen Arutyunov | 9 | -306/+824 | |
2017-01-18 | Add missing diagnostics in testscript parser | Boris Kolpackov | 1 | -0/+25 | |
2017-01-12 | Implement support for narrowing down tests (config.test) | Boris Kolpackov | 5 | -32/+58 | |
2017-01-09 | Workaround libc++'s basic_string<line_char> crash | Karen Arutyunov | 3 | -57/+117 | |
2017-01-09 | Make use of operator<<(ostream, exception) | Karen Arutyunov | 3 | -44/+47 | |
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. |