Skip to content

Commit

Permalink
Merge pull request #17793 from jordanlewis/disable-mem-monitor-test
Browse files Browse the repository at this point in the history
acceptance: disable test_sql_mem_monitor
  • Loading branch information
tbg authored Aug 22, 2017
2 parents 8721da7 + 6f8d3e8 commit bee419d
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 bee419d

Please sign in to comment.