diff options
author | Alberto Sartori <alberto.sartori@huawei.com> | 2024-06-20 11:52:40 +0200 |
---|---|---|
committer | Alberto Sartori <alberto.sartori@huawei.com> | 2024-06-20 13:21:28 +0200 |
commit | d6715e7196bb4f3eefe4d1760cb5a0703849acd0 (patch) | |
tree | 8365b84508bfcd7bd176a5b960b962aa728c8256 | |
parent | f5fcacd28fe02d14f99f4d057076e502c3082a6c (diff) | |
download | rules-cc-d6715e7196bb4f3eefe4d1760cb5a0703849acd0.tar.gz |
rules-cc/tests/test_rules/RULES: add TOOLCHAIN_CONFIG config var...
...to pass required variables belonging to the current rules under
testing
-rw-r--r-- | tests/test_rules/RULES | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/test_rules/RULES b/tests/test_rules/RULES index 69fe99d..3d2aba5 100644 --- a/tests/test_rules/RULES +++ b/tests/test_rules/RULES @@ -31,7 +31,14 @@ } , "tainted": ["test"] , "config_vars": - ["ENV", "ARCH", "HOST_ARCH", "TARGET_ARCH", "BUILD_ARCH", "OS"] + [ "ENV" + , "ARCH" + , "HOST_ARCH" + , "TARGET_ARCH" + , "BUILD_ARCH" + , "OS" + , "TOOLCHAIN_CONFIG" + ] , "implicit": { "runner": ["test_runner.py"] , "rules": [["@", "test-rules", "", "tree"]] @@ -189,6 +196,7 @@ , "TARGET_ARCH" , "BUILD_ARCH" , "OS" + , "TOOLCHAIN_CONFIG" ] } } |