aboutsummaryrefslogtreecommitdiff
path: root/tests/eval
AgeCommit message (Collapse)AuthorFilesLines
2022-06-28Add support for querying out-qualified target-specific variablesBoris Kolpackov1-2/+3
2020-02-07Drop copyright notice from source codeKaren Arutyunov7-7/+0
2019-01-16Update copyright yearKaren Arutyunov7-7/+7
2018-09-04Rename .test/test{} to .testscript/testscript{}Boris Kolpackov7-13/+13
2018-05-19Update copyright yearKaren Arutyunov7-7/+7
2018-05-03Regularize directory target/scope-specific variable assignment syntaxBoris Kolpackov1-1/+1
2017-07-12Make use of wildcards in buildfilesKaren Arutyunov1-1/+1
2017-01-05Update copyright yearBoris Kolpackov7-7/+7
2016-12-16Convert tests/ to subproject, initial work on cross-testing supportBoris Kolpackov1-1/+1
2016-12-09Initial parallel scheduler implementation, use to run testscripsBoris Kolpackov1-3/+3
2016-12-05Add comma, ternary, logical operators support in eval contextBoris Kolpackov7-0/+174
2016-12-01Move old tests to old-tests/Boris Kolpackov3-111/+0
2016-07-20Implement support for <, >, <=, >= in eval contextBoris Kolpackov2-0/+19
Now can write: if ($build.version > 30000)
2016-06-18Port to MinGWKaren Arutyunov1-1/+1
2016-04-18Add support for using value attributes in eval contextBoris Kolpackov2-0/+25
For example: if ($x == [null]) Or: if ([uint64] 01 == [uint64] 1)
2016-04-02Add attribute syntax infrastructureBoris Kolpackov1-1/+1
2016-01-21Add support for ==, != in eval contextBoris Kolpackov2-0/+46
2015-09-09Add initial support for function calls: $func(a b c)Boris Kolpackov1-0/+1
Now it is just a stub that prints the function name and its argument. Currently only single argument can be passed (no value pack support yet).
2015-09-09Add support for evaluation contextBoris Kolpackov3-0/+20
For now it acts as just the value mode that can be enabled anywhere variable expansion is supported, for example: (foo=bar): And the primary use currently is to enable/test quoted and indirect variable expansion: "foo bar" = FOO BAR print $"foo bar" # Invalid. print $("foo bar") # Yeah, baby. foo = FOO FOO = foo print $($foo) Not that you should do something like this...