diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-02-23 12:24:29 +0100 |
---|---|---|
committer | Alberto Sartori <alberto.sartori@huawei.com> | 2023-03-10 09:38:39 +0100 |
commit | 1bfb2a4aff15606b0cea4af7704483bfe474b092 (patch) | |
tree | 0bc46e6fcafd7dd2f154d1cd6a729a98d520915f /test | |
parent | d438cc5f81f1a13c6fffd874be7e72201a7b65bd (diff) | |
download | justbuild-1bfb2a4aff15606b0cea4af7704483bfe474b092.tar.gz |
Switch CC tests depending on remote execution
... to bring their own remote-execution endpoint.
Diffstat (limited to 'test')
-rw-r--r-- | test/buildtool/execution_api/bazel/TARGETS | 12 | ||||
-rw-r--r-- | test/buildtool/execution_engine/executor/TARGETS | 4 | ||||
-rw-r--r-- | test/buildtool/graph_traverser/TARGETS | 2 |
3 files changed, 9 insertions, 9 deletions
diff --git a/test/buildtool/execution_api/bazel/TARGETS b/test/buildtool/execution_api/bazel/TARGETS index 6f32e64d..26026139 100644 --- a/test/buildtool/execution_api/bazel/TARGETS +++ b/test/buildtool/execution_api/bazel/TARGETS @@ -1,5 +1,5 @@ { "ac_client": - { "type": ["@", "rules", "CC/test", "test"] + { "type": ["test/utils/remote_execution", "CC test"] , "name": ["ac_client"] , "srcs": ["bazel_ac_client.test.cpp"] , "private-deps": @@ -11,7 +11,7 @@ , "stage": ["test", "buildtool", "execution_api", "bazel"] } , "cas_client": - { "type": ["@", "rules", "CC/test", "test"] + { "type": ["test/utils/remote_execution", "CC test"] , "name": ["cas_client"] , "srcs": ["bazel_cas_client.test.cpp"] , "private-deps": @@ -23,7 +23,7 @@ , "stage": ["test", "buildtool", "execution_api", "bazel"] } , "execution_client": - { "type": ["@", "rules", "CC/test", "test"] + { "type": ["test/utils/remote_execution", "CC test"] , "name": ["execution_client"] , "srcs": ["bazel_execution_client.test.cpp"] , "private-deps": @@ -35,7 +35,7 @@ , "stage": ["test", "buildtool", "execution_api", "bazel"] } , "bytestream_client": - { "type": ["@", "rules", "CC/test", "test"] + { "type": ["test/utils/remote_execution", "CC test"] , "name": ["bytestream_client"] , "srcs": ["bytestream_client.test.cpp"] , "private-deps": @@ -47,7 +47,7 @@ , "stage": ["test", "buildtool", "execution_api", "bazel"] } , "network": - { "type": ["@", "rules", "CC/test", "test"] + { "type": ["test/utils/remote_execution", "CC test"] , "name": ["network"] , "srcs": ["bazel_network.test.cpp"] , "private-deps": @@ -73,7 +73,7 @@ , "stage": ["test", "buildtool", "execution_api", "bazel"] } , "bazel_api": - { "type": ["@", "rules", "CC/test", "test"] + { "type": ["test/utils/remote_execution", "CC test"] , "name": ["bazel_api"] , "srcs": ["bazel_api.test.cpp"] , "private-deps": diff --git a/test/buildtool/execution_engine/executor/TARGETS b/test/buildtool/execution_engine/executor/TARGETS index 75f7d385..e9f2bccd 100644 --- a/test/buildtool/execution_engine/executor/TARGETS +++ b/test/buildtool/execution_engine/executor/TARGETS @@ -19,7 +19,7 @@ , "stage": ["test", "buildtool", "execution_engine", "executor"] } , "local": - { "type": ["@", "rules", "CC/test", "test"] + { "type": ["test/utils/remote_execution", "CC test"] , "name": ["local"] , "srcs": ["executor_api_local.test.cpp"] , "data": ["test_data"] @@ -37,7 +37,7 @@ , "stage": ["test", "buildtool", "execution_engine", "executor"] } , "remote_bazel": - { "type": ["@", "rules", "CC/test", "test"] + { "type": ["test/utils/remote_execution", "CC test"] , "name": ["remote_bazel"] , "srcs": ["executor_api_remote_bazel.test.cpp"] , "data": ["test_data"] diff --git a/test/buildtool/graph_traverser/TARGETS b/test/buildtool/graph_traverser/TARGETS index 302c68e0..db9d532e 100644 --- a/test/buildtool/graph_traverser/TARGETS +++ b/test/buildtool/graph_traverser/TARGETS @@ -26,7 +26,7 @@ , "stage": ["test", "buildtool", "graph_traverser"] } , "graph_traverser_remote": - { "type": ["@", "rules", "CC/test", "test"] + { "type": ["test/utils/remote_execution", "CC test"] , "name": ["graph_traverser_remote"] , "srcs": ["graph_traverser_remote.test.cpp"] , "data": ["test_data"] |