Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-02-11 | Add support for &dir/*[*][/] test path cleanup syntax | Karen Arutyunov | 2 | -43/+105 | |
2017-02-10 | Fix save_regex() | Karen Arutyunov | 2 | -30/+49 | |
2017-02-03 | Fix runner output in verbose (-v, -V) modes | Karen Arutyunov | 3 | -18/+24 | |
2017-02-03 | Add sed builtin | Karen Arutyunov | 2 | -1/+313 | |
2017-01-31 | Move builtin and runner tests to '$c ... && $b' pattern | Karen Arutyunov | 11 | -366/+180 | |
2017-01-31 | Add support for test command pipe, expression and command-if | Karen Arutyunov | 5 | -43/+593 | |
2017-01-26 | Add test builtin | Karen Arutyunov | 2 | -1/+80 | |
2017-01-24 | Add support for shared here-documents | Karen Arutyunov | 1 | -0/+19 | |
2017-01-24 | Add support for comparison of test command output to a file | Karen Arutyunov | 10 | -45/+67 | |
2017-01-23 | Implement automatic loading of directory buildfiles | Boris Kolpackov | 9 | -14/+75 | |
Now instead of explicitly writing: d = foo/ bar/ ./: $d include $d We can (usually) just write: ./: foo/ bar/ | |||||
2017-01-19 | Add rmdir builtin | Karen Arutyunov | 3 | -33/+165 | |
2017-01-19 | Add support for portable path modifer and dot character escaping inversion | Karen Arutyunov | 12 | -347/+790 | |
2017-01-12 | Rename script/integration to script-integration | Boris Kolpackov | 4 | -5/+8 | |
2017-01-12 | Implement support for narrowing down tests (config.test) | Boris Kolpackov | 5 | -3/+238 | |
2017-01-09 | Tests cleanup (take 2) | Karen Arutyunov | 2 | -137/+161 | |
2017-01-09 | Make use of operator<<(ostream, exception) | Karen Arutyunov | 4 | -28/+3 | |
2017-01-09 | Implement test.target variable | Boris Kolpackov | 1 | -1/+4 | |
The plan is to use it for the portable path conversions. | |||||
2017-01-05 | Update copyright year | Boris Kolpackov | 39 | -39/+39 | |
2017-01-05 | Tests cleanup | Karen Arutyunov | 8 | -573/+684 | |
2017-01-05 | Print signal/core dump like shell/make | Karen Arutyunov | 2 | -12/+99 | |
2017-01-05 | Save diff output for {stdout,stderr}.diff | Karen Arutyunov | 2 | -17/+47 | |
2017-01-05 | Add support for regex in runner | Karen Arutyunov | 9 | -123/+364 | |
2016-12-16 | Convert tests/ to subproject, initial work on cross-testing support | Boris Kolpackov | 23 | -67/+112 | |
2016-12-09 | Initial parallel scheduler implementation, use to run testscrips | Boris Kolpackov | 5 | -9/+9 | |
2016-12-05 | Make use of casts and canonicalizations in testscripts | Karen Arutyunov | 5 | -63/+62 | |
2016-12-05 | Add rm builtin | Karen Arutyunov | 3 | -3/+95 | |
2016-12-05 | Use new convert() in if-else, assert parsing | Boris Kolpackov | 1 | -1/+1 | |
2016-12-05 | Add optional actualize argument to $path.normalize() | Boris Kolpackov | 1 | -10/+10 | |
2016-12-05 | Add comma, ternary, logical operators support in eval context | Boris Kolpackov | 8 | -1/+175 | |
2016-12-01 | Implement testscript variable-if | Boris Kolpackov | 4 | -4/+4 | |
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 | 3 | -1/+82 | |
2016-12-01 | Add path.canonicalize() function | Boris Kolpackov | 1 | -1/+12 | |
2016-12-01 | Organize tests/, factor common testscript fragments | Boris Kolpackov | 21 | -84/+94 | |
2016-12-01 | Move old tests to old-tests/ | Boris Kolpackov | 175 | -2733/+0 | |
2016-12-01 | Allow implicit (lexical) typed-to-typed conversion | Boris Kolpackov | 2 | -9/+6 | |
2016-11-30 | Add support for typed/untyped concatenated expansion | Boris Kolpackov | 3 | -4/+4 | |
2016-11-25 | Implement literal here-document support | Boris Kolpackov | 6 | -16/+15 | |
2016-11-23 | Implement value type propagation on expansion | Boris Kolpackov | 6 | -5/+76 | |
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 | 4 | -1/+47 | |
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 | 3 | -1/+76 | |
type() null() empty () identity() | |||||
2016-11-23 | Print test scope directory changes in verbose (-v) mode | Karen Arutyunov | 1 | -1/+1 | |
2016-11-23 | Fix failing on Windows path functions testscript | Karen Arutyunov | 1 | -1/+1 | |
2016-11-22 | Fix typo | Boris Kolpackov | 4 | -4/+4 | |
2016-11-21 | Change build.driver/path variable to build.path/process_path | Boris Kolpackov | 4 | -4/+4 | |
2016-11-18 | Add function machinery, implement path.normalize() | Boris Kolpackov | 8 | -31/+54 | |
Note that multi-argument functions are not yet "callable" since there is no support for value packs. | |||||
2016-11-15 | Add cat, false and true builtins | Karen Arutyunov | 9 | -11/+86 | |
2016-11-08 | Add mkdir and touch builtins | Karen Arutyunov | 7 | -77/+316 | |
2016-11-04 | Fix Clang and VC warnings | Karen Arutyunov | 1 | -2/+5 | |
2016-11-04 | Implement missing testscript integration tests | Boris Kolpackov | 2 | -39/+49 | |
2016-11-04 | Make rmdir_r() to call entry_exists(path) rather than exists(dir_path) | Karen Arutyunov | 1 | -0/+8 | |