diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2025-04-23 12:15:44 +0200 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2025-04-23 16:26:45 +0200 |
commit | 3c89987b5abf38b80553840d4717315921d7b532 (patch) | |
tree | f8295449cc7118e66cd6494c25bbfd1cab092fb3 | |
parent | 30b2a846149e57723e47d32a7ce94324d8f31b36 (diff) | |
download | rules-cc-3c89987b5abf38b80553840d4717315921d7b532.tar.gz |
rules-cc tests: Update DEBUG config variable to map
In preparation for the rule changes, to avoid introducing false
positives during future bisections.
-rw-r--r-- | tests/test_cases/deps/install/TARGETS | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/tests/test_cases/deps/install/TARGETS b/tests/test_cases/deps/install/TARGETS index c2cab52..232827d 100644 --- a/tests/test_cases/deps/install/TARGETS +++ b/tests/test_cases/deps/install/TARGETS @@ -36,18 +36,16 @@ { "type": "configure" , "target": "bar" , "config": - { "type": "let*" - , "bindings": [["DEBUG", true], ["ADD_CXXFLAGS", ["-g"]]] - , "body": {"type": "env", "vars": ["DEBUG", "ADD_CXXFLAGS"]} + { "type": "'" + , "$1": {"DEBUG": {"USE_DEBUG_FISSION": false}, "ADD_CXXFLAGS": ["-g"]} } } , "main debug": { "type": "configure" , "target": "main" , "config": - { "type": "let*" - , "bindings": [["DEBUG", true], ["ADD_CXXFLAGS", ["-g"]]] - , "body": {"type": "env", "vars": ["DEBUG", "ADD_CXXFLAGS"]} + { "type": "'" + , "$1": {"DEBUG": {"USE_DEBUG_FISSION": false}, "ADD_CXXFLAGS": ["-g"]} } } , "install_bar_debug": |