Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-10-24 | Allow non-parallel absolute src/out to support imported target tagging | Boris Kolpackov | 2 | -20/+43 | |
Also fix bug in out clearing. | |||||
2022-10-21 | Add support for pairs in script 'for x:...' loop | Karen Arutyunov | 2 | -10/+43 | |
2022-10-21 | Change attribute syntax in script to come after variable in set and for (set ↵ | Karen Arutyunov | 12 | -172/+286 | |
x [...], for x [...]) | |||||
2022-10-21 | Add clarifying comment | Boris Kolpackov | 2 | -0/+6 | |
2022-10-21 | Pass correct base scope to search() in dyndep::enter_file() | Boris Kolpackov | 1 | -6/+31 | |
2022-10-21 | Fix bug in file_cache::entry move constructor and assignment operator | Boris Kolpackov | 1 | -0/+4 | |
2022-10-21 | Handle freestanding/broken setups when entering importable std headers | Boris Kolpackov | 1 | -17/+30 | |
Fixes GH issue #219. | |||||
2022-10-20 | Don't create targets for non-existent source files | Boris Kolpackov | 3 | -18/+28 | |
2022-10-20 | Ignore post hoc prerequisites in dist rule | Boris Kolpackov | 1 | -1/+7 | |
2022-10-20 | Tweak documentation in parser::parse_for() | Karen Arutyunov | 1 | -2/+2 | |
2022-10-20 | Add support for for-loop element type | Karen Arutyunov | 3 | -9/+39 | |
2022-10-20 | Fix parser::mode() so for peeked token on replay it returns its lexing mode | Karen Arutyunov | 1 | -2/+11 | |
2022-10-20 | Diagnose incorrect output directory specification | Boris Kolpackov | 4 | -22/+90 | |
2022-10-20 | Implement parallel execution of post hoc prerequisites | Boris Kolpackov | 2 | -9/+48 | |
2022-10-19 | Handle operation-specific variable values in post hoc logic | Boris Kolpackov | 1 | -1/+19 | |
2022-10-19 | Minor tweaks to target_lock passing semantics | Boris Kolpackov | 2 | -3/+9 | |
This should also get rid of the bogus -Wdangling-pointer issued by GCC 12. | |||||
2022-10-19 | Add support for post hoc prerequisites | Boris Kolpackov | 14 | -137/+476 | |
Unlike normal and ad hoc prerequisites, a post hoc prerequisite is built after the target, not before. It may also form a dependency cycle together with normal/ad hoc prerequisites. In other words, all this form of dependency guarantees is that a post hoc prerequisite will be built if its dependent target is built. See the NEWS file for details and an example. | |||||
2022-10-18 | Fix unexpected 'unterminated double-quoted sequence' script error | Karen Arutyunov | 13 | -54/+217 | |
2022-10-18 | Add unexpected 'unterminated double-quoted sequence' error testscript ↵ | Karen Arutyunov | 2 | -0/+26 | |
reproducers | |||||
2022-10-18 | Invent diag preamble for buildscript | Karen Arutyunov | 8 | -141/+377 | |
2022-10-17 | Add pkg-config search tracing | Boris Kolpackov | 1 | -2/+14 | |
2022-10-17 | Tolerate case differences when looking for pkg-config files | Boris Kolpackov | 1 | -18/+26 | |
2022-10-14 | Fix 'for [<attrs>] x: ...' to treat <attrs> as value attributes | Karen Arutyunov | 8 | -57/+37 | |
2022-10-14 | Make -w|--whitespace to be default for for-loop | Karen Arutyunov | 2 | -7/+18 | |
2022-10-14 | Fix printing test id multiple times on test failure | Karen Arutyunov | 3 | -14/+70 | |
2022-10-14 | Fix typo in Testscript manual | Boris Kolpackov | 1 | -1/+1 | |
2022-10-14 | Describe how to test multiple executables in single testscript | Boris Kolpackov | 1 | -3/+74 | |
2022-10-14 | Add notes on serial execution in Testscript manual | Boris Kolpackov | 1 | -0/+7 | |
2022-10-14 | Proofreading changes to Testscript manual (for/while loops) | Boris Kolpackov | 1 | -75/+61 | |
2022-10-13 | Work around Clang 6, 7 codegen issues | Boris Kolpackov | 3 | -36/+28 | |
2022-10-13 | Reorder functions to help MinGW GCC with DLL symbol exporting | Boris Kolpackov | 1 | -8/+8 | |
2022-10-13 | Fix bug in pkg-config metadata extraction logic | Boris Kolpackov | 1 | -6/+9 | |
2022-10-13 | Fix script 'for' loop tests | Karen Arutyunov | 2 | -3/+3 | |
2022-10-13 | Fix couple of corner cases in public/private variable model | Boris Kolpackov | 2 | -45/+49 | |
2022-10-13 | Improve diagnostics | Boris Kolpackov | 1 | -0/+12 | |
2022-10-13 | Add support for 'for' loop second (... | for x) and third (for x <...) forms ↵ | Karen Arutyunov | 37 | -444/+4634 | |
in script | |||||
2022-10-13 | Fix include directive example in testscript manual | Karen Arutyunov | 1 | -1/+1 | |
2022-10-13 | Update old tests to public/private variable model | Boris Kolpackov | 4 | -77/+77 | |
2022-10-13 | Add test for public/private variable model | Boris Kolpackov | 2 | -0/+50 | |
2022-10-13 | Optimize by going straight to public variable pool where applicable | Boris Kolpackov | 16 | -62/+112 | |
2022-10-13 | Add visibility, overridable variable attributes | Boris Kolpackov | 3 | -11/+77 | |
2022-10-13 | Switch to public/private variables model | Boris Kolpackov | 21 | -189/+336 | |
Now unqualified variables are project-private and can be typified. | |||||
2022-10-11 | Factor variable patterns out of variable_pool into separate variable_patterns | Boris Kolpackov | 6 | -94/+168 | |
We have patterns only for the public variables pool. | |||||
2022-10-10 | Preparatory work for public/private variable distinction | Boris Kolpackov | 31 | -112/+357 | |
We still always use the public var_pool from context but where required, all access now goes through scope::var_pool(). | |||||
2022-10-10 | Use term shared instead of global for scope, var pool, etc | Boris Kolpackov | 4 | -30/+32 | |
2022-10-05 | Check for `-`-spelled cl.exe options in addition to `/`-spelled | Boris Kolpackov | 1 | -19/+29 | |
2022-09-30 | Move integer and bool function to separate source/testscript files | Boris Kolpackov | 7 | -197/+249 | |
2022-09-29 | Tighten low-verbosity diagnostics name deduction logic | Boris Kolpackov | 3 | -4/+61 | |
Specifically, don't try to derive low-verbosity name from what looks like an eval context of a function call. | |||||
2022-09-29 | Add $find(<sequence>, <value>), $find_index(<sequence>, <value>) functions | Boris Kolpackov | 8 | -4/+215 | |
The $find() function returns true if the sequence contains the specified value. The $find_index() function returns the index of the first element in the sequence that is equal to the specified value or $size(<sequence>) if none is found. For string sequences, it's possible to request case- insensitive comparison with a flag. | |||||
2022-09-29 | Fix variable append logic in script | Boris Kolpackov | 8 | -91/+105 | |