summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2022-07-13 20:56:03 -0400
committerEdward Thomson <ethomson@edwardthomson.com>2022-07-13 20:56:03 -0400
commitcbd5319f505fd066a6bcb10c7c649be20d525061 (patch)
treebf1e36b269122db2374dc5977561a92837ebdf00
parent21b70f09b4e3db188bf5e5813a9912ae89de355d (diff)
downloadlibgit2-cbd5319f505fd066a6bcb10c7c649be20d525061.tar.gz
tests: skip flaky-ass googlesource tests
-rw-r--r--tests/libgit2/online/clone.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/libgit2/online/clone.c b/tests/libgit2/online/clone.c
index dfaee0e85..7a62d23ea 100644
--- a/tests/libgit2/online/clone.c
+++ b/tests/libgit2/online/clone.c
@@ -484,9 +484,13 @@ void test_online_clone__bitbucket_falls_back_to_specified_creds(void)
void test_online_clone__googlesource(void)
{
+#ifdef __APPLE__
+ cl_skip();
+#else
cl_git_pass(git_clone(&g_repo, GOOGLESOURCE_REPO_URL, "./foo", &g_options));
git_repository_free(g_repo); g_repo = NULL;
cl_fixture_cleanup("./foo");
+#endif
}
static int cancel_at_half(const git_indexer_progress *stats, void *payload)