Skip to content

Commit

Permalink
Temporarily disable two tests that are timing out (#16703)
Browse files Browse the repository at this point in the history
## Description 

Describe the changes or additions included in this PR.

## Test Plan 

How did you test the new or updated feature?

---
If your changes are not user-facing and do not break anything, you can
skip the following section. Otherwise, please briefly describe what has
changed under the Release Notes section.

### Type of Change (Check all that apply)

- [ ] protocol change
- [ ] user-visible impact
- [ ] breaking change for a client SDKs
- [ ] breaking change for FNs (FN binary must upgrade)
- [ ] breaking change for validators or node operators (must upgrade
binaries)
- [ ] breaking change for on-chain data layout
- [ ] necessitate either a data wipe or data migration

### Release notes
  • Loading branch information
lxfind authored Mar 16, 2024
1 parent 78d6adc commit e3662a9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions crates/sui-e2e-tests/tests/multisig_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -633,6 +633,8 @@ async fn test_multisig_with_zklogin_scenerios() {
.contains("Invalid value was given to the function"));
}

// TODO: @joy to look at improve the stability of this test.
#[ignore]
#[sim_test]
async fn test_expired_epoch_zklogin_in_multisig() {
// 17. expired zklogin sig fails to execute. wait till epoch 11, the zklogin input committed to max_epoch 10 fails to execute.
Expand Down
2 changes: 2 additions & 0 deletions crates/sui-e2e-tests/tests/zklogin_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -253,8 +253,10 @@ async fn test_create_authenticator_state_object() {
}
}

// TODO: @joy to look at improve the stability of this test.
// This test is intended to look for forks caused by conflicting / repeated JWK votes from
// validators.
#[ignore]
#[cfg(msim)]
#[sim_test]
async fn test_conflicting_jwks() {
Expand Down

0 comments on commit e3662a9

Please sign in to comment.