diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2025-05-09 19:08:30 +0200 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2025-06-24 14:56:58 +0200 |
commit | 9a4c2d306c1981df3684bd0a3bb42a53dd9ce7ed (patch) | |
tree | 6bb02c896d65adc59953b2f68f8bcbb5fcb07d27 /test/buildtool/execution_api/execution_service/TARGETS | |
parent | eded9c836a82a9c0d4d0bc41b160b03f3cd72422 (diff) | |
download | justbuild-9a4c2d306c1981df3684bd0a3bb42a53dd9ce7ed.tar.gz |
Test: Add test for execution server APIs
Diffstat (limited to 'test/buildtool/execution_api/execution_service/TARGETS')
-rw-r--r-- | test/buildtool/execution_api/execution_service/TARGETS | 42 |
1 files changed, 41 insertions, 1 deletions
diff --git a/test/buildtool/execution_api/execution_service/TARGETS b/test/buildtool/execution_api/execution_service/TARGETS index c71380c4..e9ea3a5d 100644 --- a/test/buildtool/execution_api/execution_service/TARGETS +++ b/test/buildtool/execution_api/execution_service/TARGETS @@ -27,9 +27,49 @@ ] , "stage": ["test", "buildtool", "execution_api", "execution_service"] } +, "execution_server": + { "type": ["@", "rules", "CC/test", "test"] + , "name": ["execution_server"] + , "srcs": ["execution_server.test.cpp"] + , "private-deps": + [ ["@", "catch2", "", "catch2"] + , ["@", "fmt", "", "fmt"] + , ["@", "grpc", "", "grpc++"] + , ["@", "gsl", "", "gsl"] + , ["@", "protoc", "", "libprotobuf"] + , ["@", "src", "src/buildtool/common", "bazel_digest_factory"] + , ["@", "src", "src/buildtool/common", "bazel_types"] + , ["@", "src", "src/buildtool/common", "common"] + , ["@", "src", "src/buildtool/common", "protocol_traits"] + , ["@", "src", "src/buildtool/crypto", "hash_function"] + , [ "@" + , "src" + , "src/buildtool/execution_api/execution_service" + , "cas_server" + ] + , [ "@" + , "src" + , "src/buildtool/execution_api/execution_service" + , "execution_server" + ] + , ["@", "src", "src/buildtool/execution_api/local", "config"] + , ["@", "src", "src/buildtool/execution_api/local", "context"] + , ["@", "src", "src/buildtool/execution_api/local", "local_api"] + , ["@", "src", "src/buildtool/execution_api/remote", "bazel_network"] + , ["@", "src", "src/buildtool/file_system", "git_repo"] + , ["@", "src", "src/buildtool/file_system", "object_type"] + , ["@", "src", "src/buildtool/storage", "config"] + , ["@", "src", "src/buildtool/storage", "storage"] + , ["@", "src", "src/utils/cpp", "expected"] + , ["", "catch-main"] + , ["utils", "test_hash_function_type"] + , ["utils", "test_storage_config"] + ] + , "stage": ["test", "buildtool", "execution_api", "execution_service"] + } , "TESTS": { "type": ["@", "rules", "test", "suite"] , "stage": ["execution_service"] - , "deps": ["cas_server"] + , "deps": ["cas_server", "execution_server"] } } |