diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-03-14 17:20:02 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-03-14 17:20:02 +0200 |
commit | e20a351013745e8d6c3a0a99bd40c172ed0ae8be (patch) | |
tree | b0e6d24dbc097c2001e6bb4b0c0357bcb83bdc72 /tests/variable/override/testscript | |
parent | d1b3ad7b302d037c8154bab9c4810d499c0bf1e4 (diff) |
Add support for multiple variable overrides
Now we can do:
$ b config.cxx.coptions=-O3 config.cxx.coptions=-O0
Or even:
$ b config.cxx.coptions=-O3 config.cxx.coptions+=-g
Diffstat (limited to 'tests/variable/override/testscript')
-rw-r--r-- | tests/variable/override/testscript | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/variable/override/testscript b/tests/variable/override/testscript index 28225c1..f8a930b 100644 --- a/tests/variable/override/testscript +++ b/tests/variable/override/testscript @@ -105,3 +105,33 @@ 1 2 EOO } + +: multiple +: +{ + : assign + : + $* x=0 !y=0 x=1 !y=1 <<EOI >>EOO + print $x + print $y + EOI + 1 + 1 + EOO + + : append + : + $* x=0 x+=1 x+=2 <<EOI >>EOO + print $x + EOI + 0 1 2 + EOO + + : prepend + : + $* x=2 x=+1 x=+0 <<EOI >>EOO + print $x + EOI + 0 1 2 + EOO +} |