From b013c51c8011f1e4213bd8ed3efe954189c71774 Mon Sep 17 00:00:00 2001 From: David Dworken Date: Thu, 9 Nov 2023 23:04:17 -0800 Subject: [PATCH] Revert "Remove t.Skip() call to determine if this test is actually flaky" This reverts commit cea481816f5ad6eae7f1f6f7ab672b4f77cb724d. --- client/client_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/client/client_test.go b/client/client_test.go index efb96a2..3536c09 100644 --- a/client/client_test.go +++ b/client/client_test.go @@ -822,6 +822,11 @@ echo other`) } func testHishtoryBackgroundSaving(t *testing.T, tester shellTester) { + if runtime.GOOS == "darwin" { + t.Skip("skip testing background saving since it is flakey on MacOs") + // TODO: Investigate this + } + // Setup defer testutils.BackupAndRestore(t)()