Skip to content

Commit 72e6951

Browse files
craig[bot]spilchen
andcommitted
158049: workload/roachtest: add a gopg test to the ignore list r=spilchen a=spilchen We have seen this test fail every once in a while: ``` pg | BeforeQuery and AfterQuery CopyFrom | is called for CopyFrom with model ``` Adding this to the ignore list to tolerate the occasional failure. Closes #157873 Release note: none 158155: sql/bulkingest: use larger machine type for TestSplitAndScatterSpans r=spilchen a=spilchen TestSplitAndScatterSpans was observed to OOM during race builds on EngFlow. This change updates the test configuration to request a larger machine when executed under race. Closes #158139 Release note: none Co-authored-by: Matt Spilchen <[email protected]>
3 parents f37e9c2 + f219aa6 + 3c5a81e commit 72e6951

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

pkg/cmd/roachtest/tests/gopg_blocklist.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ var gopgBlockList = blocklist{
3333
}
3434

3535
var gopgIgnoreList = blocklist{
36+
`pg | BeforeQuery and AfterQuery CopyFrom | is called for CopyFrom with model`: "unknown",
3637
// These "fetching" tests assume a particular order when ORDER BY clause is
3738
// omitted from the query by the ORM itself.
3839
"pg | ORM slice model | fetches Book relations": "41690",

pkg/sql/bulkingest/BUILD.bazel

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ go_test(
2626
"split_test.go",
2727
],
2828
embed = [":bulkingest"],
29+
exec_properties = select({
30+
"//build/toolchains:is_heavy": {"test.Pool": "large"},
31+
"//conditions:default": {"test.Pool": "default"},
32+
}),
2933
deps = [
3034
"//pkg/base",
3135
"//pkg/keys",

0 commit comments

Comments
 (0)