diff options
Diffstat (limited to 'test/utils/cpp/TARGETS')
-rw-r--r-- | test/utils/cpp/TARGETS | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/test/utils/cpp/TARGETS b/test/utils/cpp/TARGETS index 113d6d10..48676a54 100644 --- a/test/utils/cpp/TARGETS +++ b/test/utils/cpp/TARGETS @@ -9,5 +9,26 @@ ] , "stage": ["test", "utils", "cpp"] } -, "TESTS": {"type": "install", "tainted": ["test"], "deps": ["path"]} +, "curl_usage_install": + { "type": ["@", "rules", "CC", "binary"] + , "tainted": ["test"] + , "name": ["curl_usage"] + , "srcs": ["curl_usage.test.cpp"] + , "private-deps": + [ ["@", "catch2", "", "catch2"] + , ["test", "catch-main"] + , ["src/utils/cpp", "curl_context"] + , ["src/utils/cpp", "curl_easy_handle"] + , ["src/buildtool/file_system", "file_system_manager"] + ] + , "stage": ["test", "utils", "cpp"] + } +, "curl_usage_test": + { "type": ["@", "rules", "shell/test", "script"] + , "name": ["curl_usage_test"] + , "test": ["curl_usage_test.sh"] + , "deps": [["test/utils", "test_utils_install"], "curl_usage_install"] + } +, "TESTS": + {"type": "install", "tainted": ["test"], "deps": ["path", "curl_usage_test"]} } |