From 1e1859f5a3d4ca968863eddece9df322081a05cb Mon Sep 17 00:00:00 2001 From: teor Date: Fri, 12 Mar 2021 12:31:19 +1000 Subject: [PATCH] Merge pull request #1887 from ZcashFoundation/revert-1877-revert-1789-large-sync-testnet-disable Revert "Revert "Disable unreliable `sync_large_checkpoints_testnet`"" This disables the failing large testnet sync test. --- zebrad/tests/acceptance.rs | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/zebrad/tests/acceptance.rs b/zebrad/tests/acceptance.rs index 402f1a87f..fd4694dcf 100644 --- a/zebrad/tests/acceptance.rs +++ b/zebrad/tests/acceptance.rs @@ -746,22 +746,8 @@ fn sync_large_checkpoints_mainnet() -> Result<()> { Ok(()) } -/// Test if `zebrad` can sync some larger checkpoints on testnet. -/// -/// This test does not run by default, see `sync_large_checkpoints_mainnet` -/// for details. -#[test] -#[ignore] -fn sync_large_checkpoints_testnet() -> Result<()> { - sync_until( - LARGE_CHECKPOINT_TEST_HEIGHT, - Testnet, - STOP_AT_HEIGHT_REGEX, - LARGE_CHECKPOINT_TIMEOUT, - None, - ) - .map(|_tempdir| ()) -} +// Todo: We had a `sync_large_checkpoints_testnet` here but it was removed because +// the testnet is unreliable(#1222). Enable after we have more testnet instances(#1791). /// Sync `network` until `zebrad` reaches `height`, and ensure that /// the output contains `stop_regex`. If `reuse_tempdir` is supplied,