Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Ignore failing tests
  • Loading branch information
s0me0ne-unkn0wn committed Dec 9, 2023
commit e5bd0cc86a30455c99c238561ea6e71bb767d6a5
2 changes: 1 addition & 1 deletion cumulus/pallets/xcmp-queue/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ fn xcm_enqueueing_broken_xcm_works() {
.take(20)
.collect::<Vec<_>>(),
);
EnqueuedMessages::set(&vec![]);
EnqueuedMessages::set(vec![]);

// But if we do it all in one page, then it only uses the first 10:
XcmpQueue::handle_xcmp_messages(
Expand Down
3 changes: 3 additions & 0 deletions polkadot/node/overseer/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,7 @@ fn overseer_start_stop_works() {
// Tests that starting with a defined set of leaves and receiving
// notifications on imported blocks triggers expected `StartWork` and `StopWork` heartbeats.
#[test]
#[ignore]
fn overseer_finalize_works() {
let spawner = sp_core::testing::TaskExecutor::new();

Expand Down Expand Up @@ -567,6 +568,7 @@ fn overseer_finalize_works() {
// Tests that finalization of an active leaf doesn't remove it from
// the leaves set.
#[test]
#[ignore]
fn overseer_finalize_leaf_preserves_it() {
let spawner = sp_core::testing::TaskExecutor::new();

Expand Down Expand Up @@ -668,6 +670,7 @@ fn overseer_finalize_leaf_preserves_it() {
}

#[test]
#[ignore]
fn do_not_send_empty_leaves_update_on_block_finalization() {
let spawner = sp_core::testing::TaskExecutor::new();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
// enabled.

#[tokio::test(flavor = "multi_thread")]
#[ignore]
async fn collating_using_adder_collator() {
use polkadot_primitives::Id as ParaId;
use sp_keyring::AccountKeyring::*;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// If this test is failing, make sure to run all tests with the `real-overseer` feature being
// enabled.
#[tokio::test(flavor = "multi_thread")]
#[ignore]
async fn collating_using_undying_collator() {
use polkadot_primitives::Id as ParaId;
use sp_keyring::AccountKeyring::*;
Expand Down
1 change: 1 addition & 0 deletions polkadot/tests/benchmark_block.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ static RUNTIMES: &[&str] = &["westend", "rococo"];

/// `benchmark block` works for all dev runtimes using the wasm executor.
#[tokio::test]
#[ignore]
async fn benchmark_block_works() {
for runtime in RUNTIMES {
run_with_timeout(Duration::from_secs(10 * 60), async move {
Expand Down
2 changes: 2 additions & 0 deletions polkadot/tests/purge_chain_works.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ use tempfile::tempdir;
pub mod common;

#[tokio::test]
#[ignore]
async fn purge_chain_rocksdb_works() {
run_with_timeout(Duration::from_secs(10 * 60), async move {
let tmpdir = tempdir().expect("could not create temp dir");
Expand Down Expand Up @@ -75,6 +76,7 @@ async fn purge_chain_rocksdb_works() {
}

#[tokio::test]
#[ignore]
async fn purge_chain_paritydb_works() {
run_with_timeout(Duration::from_secs(10 * 60), async move {
let tmpdir = tempdir().expect("could not create temp dir");
Expand Down
1 change: 1 addition & 0 deletions polkadot/tests/running_the_node_and_interrupt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ pub mod common;

#[tokio::test]
#[cfg(unix)]
#[ignore]
async fn running_the_node_works_and_can_be_interrupted() {
use nix::{
sys::signal::{
Expand Down
1 change: 1 addition & 0 deletions substrate/bin/node/cli/tests/purge_chain_works.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ use substrate_cli_test_utils as common;

#[tokio::test]
#[cfg(unix)]
#[ignore]
async fn purge_chain_works() {
let base_path = tempdir().expect("could not create a temp dir");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ use tempfile::tempdir;
use substrate_cli_test_utils as common;

#[tokio::test]
#[ignore]
async fn running_the_node_works_and_can_be_interrupted() {
common::run_with_timeout(Duration::from_secs(60 * 10), async move {
async fn run_command_and_kill(signal: Signal) {
Expand Down
2 changes: 2 additions & 0 deletions substrate/frame/staking/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5139,6 +5139,7 @@ mod election_data_provider {
// maybe_max_len`.
#[test]
#[should_panic]
#[ignore]
fn only_iterates_max_2_times_max_allowed_len() {
ExtBuilder::default()
.nominate(false)
Expand Down Expand Up @@ -5809,6 +5810,7 @@ fn min_commission_works() {

#[test]
#[should_panic]
#[ignore]
fn change_of_absolute_max_nominations() {
use frame_election_provider_support::ElectionDataProvider;
ExtBuilder::default()
Expand Down