Skip to content

Commit

Permalink
acceptance: disable test_sql_mem_monitor
Browse files Browse the repository at this point in the history
It's causing broken agents due to the large join that causes DistSQL to
spill to disk, which creates files as root because of Docker. Disable
for the time being.
  • Loading branch information
jordanlewis committed Aug 21, 2017
1 parent 0871925 commit 6f8d3e8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pkg/acceptance/cli_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import (
"github.com/cockroachdb/cockroach/pkg/acceptance/cluster"
"github.com/cockroachdb/cockroach/pkg/util/log"
"github.com/docker/docker/api/types/container"
"strings"
)

const testGlob = "../cli/interactive_tests/test*.tcl"
Expand Down Expand Up @@ -60,6 +61,10 @@ func TestDockerCLI(t *testing.T) {
for _, p := range paths {
testFile := filepath.Base(p)
testPath := filepath.Join(containerPath, testFile)
if strings.Contains(testPath, "disabled") {
t.Logf("Skipping explicitly disabled test %s", testFile)
continue
}
t.Run(testFile, func(t *testing.T) {
log.Infof(ctx, "-- starting tests from: %s", testFile)

Expand Down

0 comments on commit 6f8d3e8

Please sign in to comment.