Skip to content

Commit

Permalink
Merge pull request redpanda-data#23695 from nvartolomei/nv/bazel-remo…
Browse files Browse the repository at this point in the history
…te-path-provider-test

bazel: add cloud storage remote path provider test
  • Loading branch information
nvartolomei authored Oct 9, 2024
2 parents cebee22 + e6a432e commit 9e810f7
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion src/v/cloud_storage/tests/BUILD
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
load("//bazel:test.bzl", "redpanda_cc_btest", "redpanda_test_cc_library")
load(
"//bazel:test.bzl",
"redpanda_cc_btest",
"redpanda_cc_gtest",
"redpanda_test_cc_library",
)

redpanda_test_cc_library(
name = "s3_imposter_gtest",
Expand Down Expand Up @@ -194,3 +199,20 @@ redpanda_cc_btest(
"@seastar//:testing",
],
)

redpanda_cc_gtest(
name = "remote_path_provider_test",
timeout = "short",
srcs = [
"remote_path_provider_test.cc",
],
cpu = 1,
deps = [
"//src/v/cloud_storage",
"//src/v/model",
"//src/v/model/tests:random",
"//src/v/test_utils:gtest",
"//src/v/utils:uuid",
"@googletest//:gtest",
],
)

0 comments on commit 9e810f7

Please sign in to comment.