Skip to content

Commit

Permalink
Tune timeout for test targets (go/attt-lsc).
Browse files Browse the repository at this point in the history
[//session:session_test]: We're adjusting the test target timeout because it has a 0.302572 percent time out rate based on last week's (2024-08-17 - 2024-08-24) tap postsubmit running statistics. Its original timeout_sec is 60, and we're adjusting it to moderate, which is 300 seconds.
Some detailed statistics for the target (before this CL):
  Num of invocation: 5350
  Num of passed invocations: 5272
  Num of timeout invocations: 16
  ****** Stats for passing runs ******
    Min run time in secs: 0
    Max run time in secs: 201
    Mean run time in secs: 11.090288
    Sd run time in secs: 18.355576

[//session:session_converter_stress_test]: We're adjusting the test target timeout because it has a 0.302629 percent time out rate based on last week's (2024-08-17 - 2024-08-24) tap postsubmit running statistics. Its original timeout_sec is 300, and we're adjusting it to long, which is 900 seconds.
Some detailed statistics for the target (before this CL):
  Num of invocation: 5350
  Num of passed invocations: 5271
  Num of timeout invocations: 16
  ****** Stats for passing runs ******
    Min run time in secs: 0
    Max run time in secs: 334
    Mean run time in secs: 7.009486
    Sd run time in secs: 17.786684

Tested:
    Local presubmit tests passed.
PiperOrigin-RevId: 667932374
  • Loading branch information
Mozc team authored and hiroyuki-komatsu committed Aug 27, 2024
1 parent 7901fee commit 78c45a7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/session/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ mozc_cc_test(
mozc_cc_test(
name = "session_converter_stress_test",
size = "small",
timeout = "moderate",
timeout = "long",
srcs = ["session_converter_stress_test.cc"],
shard_count = 8,
deps = [
Expand Down Expand Up @@ -180,6 +180,7 @@ mozc_cc_library(
mozc_cc_test(
name = "session_test",
size = "small",
timeout = "moderate",
srcs = ["session_test.cc"],
shard_count = 8,
deps = [
Expand Down

0 comments on commit 78c45a7

Please sign in to comment.