Skip to content

Commit 4681ab2

Browse files
committed
test(uffd): restore TestParallelMissing/Write parallelOperations to 1_000_000
Reverts the 1M -> 10K reduction made in #2461. Intermittent failures under 1M are bugs to be hunted, not silenced by lowering the load. The other parallel/serial variants in these files have legitimately been at 10K since their introduction in November 2025; only the two TestParallelMissing(/Write) cases were reduced.
1 parent 93e2727 commit 4681ab2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/orchestrator/pkg/sandbox/uffd/userfaultfd/missing_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ func TestMissing(t *testing.T) {
141141
func TestParallelMissing(t *testing.T) {
142142
t.Parallel()
143143

144-
parallelOperations := 10_000
144+
parallelOperations := 1_000_000
145145

146146
tt := testConfig{
147147
pagesize: header.PageSize,

packages/orchestrator/pkg/sandbox/uffd/userfaultfd/missing_write_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ func TestMissingWrite(t *testing.T) {
136136
func TestParallelMissingWrite(t *testing.T) {
137137
t.Parallel()
138138

139-
parallelOperations := 10_000
139+
parallelOperations := 1_000_000
140140

141141
tt := testConfig{
142142
pagesize: header.PageSize,

0 commit comments

Comments
 (0)