Skip to content

Commit c863714

Browse files
committed
test: improve asserts on transaction input/output
1 parent 4215305 commit c863714

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

testnet/stacks-node/src/burnchains/bitcoin_regtest_controller.rs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3230,6 +3230,7 @@ mod tests {
32303230
}
32313231

32323232
#[test]
3233+
#[ignore]
32333234
fn test_create_wallet_from_default_empty_name() {
32343235
if env::var("BITCOIND_TEST") != Ok("1".into()) {
32353236
return;
@@ -3257,6 +3258,7 @@ mod tests {
32573258
}
32583259

32593260
#[test]
3261+
#[ignore]
32603262
fn test_create_wallet_from_custom_name() {
32613263
let mut config = utils::create_config();
32623264
config.burnchain.wallet_name = String::from("mywallet");
@@ -3278,6 +3280,7 @@ mod tests {
32783280
}
32793281

32803282
#[test]
3283+
#[ignore]
32813284
fn test_get_all_utxos_with_confirmation() {
32823285
if env::var("BITCOIND_TEST") != Ok("1".into()) {
32833286
return;
@@ -3317,6 +3320,7 @@ mod tests {
33173320
}
33183321

33193322
#[test]
3323+
#[ignore]
33203324
fn test_get_all_utxos_empty_for_other_pubkey() {
33213325
if env::var("BITCOIND_TEST") != Ok("1".into()) {
33223326
return;
@@ -3341,6 +3345,7 @@ mod tests {
33413345
}
33423346

33433347
#[test]
3348+
#[ignore]
33443349
fn test_get_utxos_ok_with_confirmation() {
33453350
if env::var("BITCOIND_TEST") != Ok("1".into()) {
33463351
return;
@@ -3388,6 +3393,7 @@ mod tests {
33883393
}
33893394

33903395
#[test]
3396+
#[ignore]
33913397
fn test_get_utxos_none_due_to_filter_total_required() {
33923398
if env::var("BITCOIND_TEST") != Ok("1".into()) {
33933399
return;
@@ -3418,6 +3424,7 @@ mod tests {
34183424
}
34193425

34203426
#[test]
3427+
#[ignore]
34213428
fn test_get_utxos_none_due_to_filter_pubkey() {
34223429
if env::var("BITCOIND_TEST") != Ok("1".into()) {
34233430
return;
@@ -3445,6 +3452,7 @@ mod tests {
34453452
}
34463453

34473454
#[test]
3455+
#[ignore]
34483456
fn test_get_utxos_none_due_to_filter_utxo_exclusion() {
34493457
if env::var("BITCOIND_TEST") != Ok("1".into()) {
34503458
return;
@@ -3480,6 +3488,7 @@ mod tests {
34803488
}
34813489

34823490
#[test]
3491+
#[ignore]
34833492
fn test_build_leader_block_commit_tx_ok_with_new_commit_op() {
34843493
if env::var("BITCOIND_TEST") != Ok("1".into()) {
34853494
return;
@@ -3539,6 +3548,7 @@ mod tests {
35393548
}
35403549

35413550
#[test]
3551+
#[ignore]
35423552
fn test_build_leader_block_commit_tx_fails_resub_same_commit_op_while_prev_not_confirmed() {
35433553
if env::var("BITCOIND_TEST") != Ok("1".into()) {
35443554
return;
@@ -3589,6 +3599,7 @@ mod tests {
35893599
}
35903600

35913601
#[test]
3602+
#[ignore]
35923603
fn test_build_leader_block_commit_tx_fails_resub_same_commit_op_while_prev_is_confirmed() {
35933604
if env::var("BITCOIND_TEST") != Ok("1".into()) {
35943605
return;
@@ -3641,6 +3652,7 @@ mod tests {
36413652
}
36423653

36433654
#[test]
3655+
#[ignore]
36443656
fn test_build_leader_block_commit_tx_ok_rbf_while_prev_is_confirmed() {
36453657
if env::var("BITCOIND_TEST") != Ok("1".into()) {
36463658
return;
@@ -3720,6 +3732,7 @@ mod tests {
37203732
}
37213733

37223734
#[test]
3735+
#[ignore]
37233736
fn test_build_leader_block_commit_tx_ok_rbf_while_prev_not_confirmed() {
37243737
if env::var("BITCOIND_TEST") != Ok("1".into()) {
37253738
return;

0 commit comments

Comments
 (0)