Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-11-08 | Add $regex.replace_lines() function | Karen Arutyunov | 1 | -0/+82 | |
2019-11-05 | Fix tests | Boris Kolpackov | 5 | -4/+24 | |
2019-11-05 | Disable C++ modules tests for Clang 9 | Boris Kolpackov | 1 | -0/+8 | |
See the following post for details: http://lists.llvm.org/pipermail/cfe-dev/2019-October/063637.html | |||||
2019-10-22 | Rename global_mutex_shards to global_mutexes | Boris Kolpackov | 1 | -2/+2 | |
2019-10-22 | Move global mutex shards to context | Boris Kolpackov | 1 | -2/+5 | |
2019-10-18 | Use $quote() for quoting config.cxx option value in testscripts | Karen Arutyunov | 3 | -3/+3 | |
2019-10-16 | Quote config.{c,cxx} paths when passing to tests | Boris Kolpackov | 3 | -3/+3 | |
Without this Windows directory separators are treated as escapes. | |||||
2019-10-14 | Implement MSVC installation discovery for version 15 (2017) and later | Karen Arutyunov | 1 | -1/+1 | |
In particular, this removes the requirement to build from the Visual Studio command prompt. Note that since MSVC compiler binaries are target-specific (i.e., there are no -m32/-m64 options nor something like /MACHINE), in this case we default to a 64-bit build (a 32-bit build can still be achieved by running from a suitable command prompt). Finally, this mechanism is also used to find Clang bundled with MSVC. | |||||
2019-10-07 | Adapt tests for building with Clang on Windows | Karen Arutyunov | 1 | -3/+3 | |
2019-10-01 | Disable for GCC 4.9 failing testscript | Karen Arutyunov | 1 | -10/+18 | |
2019-10-01 | Add extractor, path.match, and string.icasecmp pattern matching tests | Boris Kolpackov | 1 | -3/+39 | |
2019-10-01 | Add support for $string.icasecmp() | Karen Arutyunov | 2 | -0/+32 | |
2019-10-01 | Make $regex.{match,search}() to return NULL for no match if return_match or ↵ | Karen Arutyunov | 1 | -4/+4 | |
return_match flag is specified | |||||
2019-10-01 | Rename $filesystem.path_match() to $path.match() | Karen Arutyunov | 2 | -79/+79 | |
2019-10-01 | Adapt to swapping of entry and pattern parameters in butl::path_match() | Karen Arutyunov | 1 | -19/+19 | |
2019-09-30 | Allow attributes in if-else, assert directive's conditions | Boris Kolpackov | 3 | -0/+29 | |
2019-09-30 | Cleanup inappropriate use of parse_variable_value() | Boris Kolpackov | 1 | -0/+7 | |
2019-09-30 | Handle attributes in switch value and pattern expressions | Boris Kolpackov | 1 | -4/+34 | |
2019-09-30 | Tweak tests/.gitignore to ignore symlinks to test/ | Boris Kolpackov | 1 | -3/+4 | |
2019-09-30 | Diagnose `case` and `default` outside `switch` | Boris Kolpackov | 1 | -0/+8 | |
2019-09-30 | Reserve `:` in `case` pattern expression for future match extraction support | Boris Kolpackov | 1 | -0/+12 | |
2019-09-30 | Add support for custom match/extract functions in switch expression | Boris Kolpackov | 1 | -0/+113 | |
2019-09-30 | Add support for `case` pattern alternatives | Boris Kolpackov | 1 | -9/+14 | |
case <pattern>[ | <pattern>...] | |||||
2019-09-30 | Allow multiple `case` for single line/block | Boris Kolpackov | 1 | -8/+33 | |
2019-09-30 | Pattern matching support (switch): multiple values implementation | Boris Kolpackov | 1 | -0/+37 | |
2019-09-30 | Pattern matching support (switch): single value implementation | Boris Kolpackov | 2 | -0/+139 | |
2019-09-27 | Adapt to bracket expressions in wildcard patterns | Karen Arutyunov | 1 | -1/+1 | |
2019-09-27 | Add support for testscript builtin escaping | Karen Arutyunov | 1 | -0/+20 | |
2019-09-27 | Move testscript builtins to libbutl | Karen Arutyunov | 14 | -1531/+201 | |
2019-09-18 | Rename importable_headers variable to translatable_headers | Boris Kolpackov | 1 | -4/+4 | |
This name aligns better with the post-Cologne importable/translatable semantics. | |||||
2019-08-28 | Move cxx build system module to separate library | Karen Arutyunov | 2 | -1/+3 | |
2019-08-28 | Move c build system module to separate library | Karen Arutyunov | 2 | -1/+3 | |
2019-08-28 | Move cc build system module to separate library | Karen Arutyunov | 2 | -3/+5 | |
2019-08-28 | Move bin build system module to separate library | Karen Arutyunov | 2 | -1/+3 | |
2019-08-26 | Implement auto-import of development build2 build | Boris Kolpackov | 1 | -1/+4 | |
2019-08-23 | Introduce notion of build context | Boris Kolpackov | 1 | -3/+3 | |
All non-const global state is now in class context and we can now have multiple independent builds going on at the same time. | |||||
2019-08-21 | Make testscripts to ignore user's default options files | Karen Arutyunov | 6 | -9/+11 | |
2019-08-19 | Revert previous (erroneously pushed to master) commit | Karen Arutyunov | 6 | -11/+9 | |
2019-08-19 | Make testscripts to ignore user's default options files | Karen Arutyunov | 6 | -9/+11 | |
2019-08-07 | Improve deadlock diagnostics (suppress stack trace, reword) | Boris Kolpackov | 1 | -1/+1 | |
2019-08-06 | Improve module name to file name heuristics | Boris Kolpackov | 1 | -0/+47 | |
2019-08-01 | Move bash build system module to separate library | Karen Arutyunov | 2 | -4/+7 | |
2019-08-01 | Move version build system module to separate library | Karen Arutyunov | 2 | -0/+3 | |
2019-08-01 | Combine multiple single-character flags into a single argument for ↵ | Karen Arutyunov | 5 | -8/+8 | |
testscript commands | |||||
2019-07-24 | Use CLI-generated classes to parse testscript builtin options | Karen Arutyunov | 13 | -28/+120 | |
2019-07-24 | Move in build system module to separate library | Boris Kolpackov | 2 | -1/+7 | |
2019-07-05 | Fix failing testscript cp builtin test | Karen Arutyunov | 1 | -15/+10 | |
2019-07-04 | Remove libu{} target group | Boris Kolpackov | 1 | -9/+9 | |
The semantics provided by libu{} is rarely required and as result was not yet documented. However, if you are using it, the new way to achieve the same result is to use both libue{} and libul{} explicitly, for example: exe{foo}: libue{foo} lib{foo}: libul{foo} {libue libul}{foo}: cxx{*} | |||||
2019-07-01 | Split build system into library and driver | Boris Kolpackov | 4 | -0/+56 | |
2019-06-07 | Complete and normalize paths in cxx.importable_headers | Boris Kolpackov | 2 | -14/+133 | |
Also add more header unit include/import tests. |