Revert "Disable unreliable `sync_large_checkpoints_testnet` (#1789)"
This reverts commit bae49e54df.
This commit is contained in:
parent
e50692bd51
commit
ac4611ffc4
|
|
@ -745,8 +745,22 @@ fn sync_large_checkpoints_mainnet() -> Result<()> {
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
// Todo: We had a `sync_large_checkpoints_testnet` here but it was removed because
|
/// Test if `zebrad` can sync some larger checkpoints on testnet.
|
||||||
// the testnet is unreliable(#1222). Enable after we have more testnet instances(#1791).
|
///
|
||||||
|
/// 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| ())
|
||||||
|
}
|
||||||
|
|
||||||
/// Sync `network` until `zebrad` reaches `height`, and ensure that
|
/// Sync `network` until `zebrad` reaches `height`, and ensure that
|
||||||
/// the output contains `stop_regex`. If `reuse_tempdir` is supplied,
|
/// the output contains `stop_regex`. If `reuse_tempdir` is supplied,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue