diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-04-25 12:59:21 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-04-25 12:59:21 +0200 |
commit | 284f556813bd428ec35c9a5bc5591387cf91d6a1 (patch) | |
tree | 433123fbe8f50b469c675a04aae8c4c0ee9685e3 | |
parent | 101edf7c9e03d5a11243f8970ce084d57b05e7e3 (diff) | |
parent | 538e367d4c976646a5ae58a006e30a227bb3bee9 (diff) | |
download | rules-cc-284f556813bd428ec35c9a5bc5591387cf91d6a1.tar.gz |
Merge commit '538e367d4c976646a5ae58a006e30a227bb3bee9'
-rw-r--r-- | CC/test/RULES | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/CC/test/RULES b/CC/test/RULES index b46d6b0..b4775a8 100644 --- a/CC/test/RULES +++ b/CC/test/RULES @@ -289,23 +289,25 @@ [{"type": "var", "name": "stage"}, {"type": "var", "name": "name"}] } ] + , [ "test input" + , { "type": "map_union" + , "$1": + [ { "type": "to_subdir" + , "subdir": "work" + , "$1": {"type": "var", "name": "data"} + } + , {"type": "var", "name": "runner"} + , {"type": "var", "name": "test-args"} + , {"type": "var", "name": "test-launcher"} + , {"type": "var", "name": "staged test binary"} + , {"type": "var", "name": "run-libs"} + ] + } + ] , [ "test-results" , { "type": "ACTION" , "outs": ["result", "stdout", "stderr", "time-start", "time-stop"] - , "inputs": - { "type": "map_union" - , "$1": - [ { "type": "to_subdir" - , "subdir": "work" - , "$1": {"type": "var", "name": "data"} - } - , {"type": "var", "name": "runner"} - , {"type": "var", "name": "test-args"} - , {"type": "var", "name": "test-launcher"} - , {"type": "var", "name": "staged test binary"} - , {"type": "var", "name": "run-libs"} - ] - } + , "inputs": {"type": "var", "name": "test input"} , "cmd": ["./runner"] , "env": { "type": "var" |