aboutsummaryrefslogtreecommitdiff
path: root/build/test
AgeCommit message (Collapse)AuthorFilesLines
2015-12-10Implement two-phase initialization of modules loaded from bootstrap.buildBoris Kolpackov2-8/+16
2015-12-03Clean up rule namesBoris Kolpackov1-21/+23
2015-12-02Implement optional module loadingBoris Kolpackov3-17/+22
The syntax is: using? cli Now each module use results in two bool variables: <module>.loaded and <module>.configured. Also implement variable visibility (the above two variables are limited to project).
2015-09-08Rework diagnostics verbosity, add quiet mode/optionBoris Kolpackov2-3/+3
2015-08-31Rework scoping logicBoris Kolpackov1-1/+1
Now the src directory is entered into the scope map and points to the same scope as out. This means that targets that are in src, not out (e.g., source files) will "see" rules, variables, etc. This becomes important when we try, for example, to install a source file (say, a header) from src: we need the rule as well as the install.* variables.
2015-08-27Dist module/meta-operation initial implementationBoris Kolpackov2-18/+18
2015-08-24New variable architectureBoris Kolpackov2-47/+48
2015-08-17Tighten variable_map interfaceBoris Kolpackov1-1/+3
2015-08-14Rework meta/operation registrationBoris Kolpackov3-27/+12
We now have global tables for meta/operation. Plus each can then be enabled on the per-project basis.
2015-08-13Rework postponed logicBoris Kolpackov1-0/+6
Specifically, now postponed is only used by the execution mode logic and rules should not return it directly.
2015-07-31Essential install module functionalityBoris Kolpackov1-7/+9
2015-07-24Add support for generated test input/outputBoris Kolpackov1-36/+119
2015-07-24Further test module developmentBoris Kolpackov1-50/+251
2015-07-23Basic test supportBoris Kolpackov3-3/+113
2015-07-21Test module genesisBoris Kolpackov6-0/+226