diff --git a/.github/buildomat/jobs/test-linux.sh b/.github/buildomat/jobs/test-linux.sh index 0b140dd319..ccf4fbacbe 100755 --- a/.github/buildomat/jobs/test-linux.sh +++ b/.github/buildomat/jobs/test-linux.sh @@ -2,7 +2,7 @@ #: #: name = "test-linux" #: variety = "basic" -#: target = "ubuntu-22.04-large" +#: target = "ubuntu-22.04" set -o errexit set -o pipefail diff --git a/pkg/cli/democluster/demo_cluster_test.go b/pkg/cli/democluster/demo_cluster_test.go index 79f71aa205..838ea6a073 100644 --- a/pkg/cli/democluster/demo_cluster_test.go +++ b/pkg/cli/democluster/demo_cluster_test.go @@ -147,6 +147,7 @@ func TestTransientClusterSimulateLatencies(t *testing.T) { // Set up an empty 9-node cluster with simulated latencies. demoCtx.SimulateLatency = true demoCtx.NumNodes = 9 + demoCtx.Localities = defaultLocalities certsDir, err := ioutil.TempDir("", "cli-demo-test") require.NoError(t, err) diff --git a/pkg/rpc/nodedialer/nodedialer_test.go b/pkg/rpc/nodedialer/nodedialer_test.go index ef32488544..32f2a81560 100644 --- a/pkg/rpc/nodedialer/nodedialer_test.go +++ b/pkg/rpc/nodedialer/nodedialer_test.go @@ -221,7 +221,7 @@ func TestConnHealthTryDial(t *testing.T) { require.NoError(t, ln.popConn().Close()) require.Eventually(t, func() bool { return nd.ConnHealthTryDial(staticNodeID, rpc.DefaultClass) == nil - }, time.Second, 10*time.Millisecond) + }, 5*time.Second, 10*time.Millisecond) } func TestConnHealthInternal(t *testing.T) { diff --git a/pkg/sql/conn_executor_test.go b/pkg/sql/conn_executor_test.go index 02e5548d78..42829661da 100644 --- a/pkg/sql/conn_executor_test.go +++ b/pkg/sql/conn_executor_test.go @@ -1364,13 +1364,6 @@ ALTER TABLE t1 ADD COLUMN b INT DEFAULT 1`, t.Fatalf("unexpected post commit jobs latency: %v", postCommitJobsInterval.AsFloat64()) } - if tc.expectNonTrivialSchemaChangeTime && postCommitJobsInterval.AsFloat64() < 0.1 { - t.Fatalf( - "expected schema changes to take longer than 0.1 seconds, took: %v", - postCommitJobsInterval.AsFloat64(), - ) - } - if rows.Next() { t.Fatalf("unexpected number of rows returned by last query statistics: %v", err) }