Skip to content

Commit

Permalink
mark server-test as large (#2591)
Browse files Browse the repository at this point in the history
I see instances of it failed with 15s timeout
  • Loading branch information
mikea authored Aug 22, 2024
1 parent 394541f commit 3114d6d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build/kj_test.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ def kj_test(
src,
data = [],
deps = [],
tags = []):
tags = [],
size = "medium"):
test_name = src.removesuffix(".c++")
native.cc_test(
name = test_name,
Expand All @@ -19,4 +20,5 @@ def kj_test(
}),
data = data,
tags = tags,
size = size,
)
1 change: 1 addition & 0 deletions src/workerd/server/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ wd_cc_capnp_library(
)

kj_test(
size = "large",
src = "server-test.c++",
deps = [
":server",
Expand Down

0 comments on commit 3114d6d

Please sign in to comment.