diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-05-29 13:01:01 +0200 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-06-03 16:46:49 +0200 |
commit | 2274627436257c28a82cedec28e18398a517b51d (patch) | |
tree | 63aa009134abe3bd14818b8650451474ed37c27c /test/end-to-end/target-tests | |
parent | 3aa003de5ae23ce75ba2dcb12ace0f72f715adf5 (diff) | |
download | justbuild-2274627436257c28a82cedec28e18398a517b51d.tar.gz |
test: Use own installed just and just-mr targets...
...which do not stage also the debug source and header files (while
in debug mode), as this is unnecessary bloat in the tests.
As the tool-under-test and mr-tool-under-test targets should be
used instead of the regular install targets also in the various
extra rules in end-to-end and utils, move their definition in the
outmost test TARGETS file.
Diffstat (limited to 'test/end-to-end/target-tests')
-rw-r--r-- | test/end-to-end/target-tests/TARGETS | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/end-to-end/target-tests/TARGETS b/test/end-to-end/target-tests/TARGETS index 67d40542..b4a9b210 100644 --- a/test/end-to-end/target-tests/TARGETS +++ b/test/end-to-end/target-tests/TARGETS @@ -2,43 +2,43 @@ { "type": ["@", "rules", "shell/test", "script"] , "name": ["upwards"] , "test": ["upwards.sh"] - , "deps": [["end-to-end", "tool-under-test"]] + , "deps": [["", "tool-under-test"]] } , "repository naming": { "type": ["@", "rules", "shell/test", "script"] , "name": ["repo_names"] , "test": ["repo_names.sh"] - , "deps": [["end-to-end", "tool-under-test"]] + , "deps": [["", "tool-under-test"]] } , "resolution of built-in rules": { "type": ["@", "rules", "shell/test", "script"] , "name": ["built-in-resolution"] , "test": ["built-in-resolution.sh"] - , "deps": [["end-to-end", "tool-under-test"]] + , "deps": [["", "tool-under-test"]] } , "glob expansion": { "type": ["@", "rules", "shell/test", "script"] , "name": ["glob"] , "test": ["glob.sh"] - , "deps": [["end-to-end", "tool-under-test"]] + , "deps": [["", "tool-under-test"]] } , "configure target name": { "type": ["@", "rules", "shell/test", "script"] , "name": ["configure-target"] , "test": ["configure-target.sh"] - , "deps": [["end-to-end", "tool-under-test"]] + , "deps": [["", "tool-under-test"]] } , "configure variables": { "type": ["@", "rules", "shell/test", "script"] , "name": ["configure-vars"] , "test": ["configure-vars.sh"] - , "deps": [["end-to-end", "tool-under-test"]] + , "deps": [["", "tool-under-test"]] } , "tree inputs": { "type": ["@", "rules", "shell/test", "script"] , "name": ["tree-inputs"] , "test": ["tree-inputs.sh"] - , "deps": [["end-to-end", "tool-under-test"]] + , "deps": [["", "tool-under-test"]] } , "TESTS": { "type": "install" |