Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 3 additions & 0 deletions rs/crypto/tests/basic_sig.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ pub const REG_V2: RegistryVersion = RegistryVersion::new(2);

#[test]
fn should_sign_and_verify() {
if true {
panic!("The chaos monkey Bas was here!");
}
let rng = ReproducibleRng::new();
let crypto = TempCryptoComponent::builder()
.with_keys(NodeKeysToGenerate::only_node_signing_key())
Expand Down
8 changes: 8 additions & 0 deletions rs/tests/idx/basic_health_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,14 @@ pub fn test(env: TestEnv) {
.try_for_each(|n| n.await_status_is_healthy())
.unwrap();

info!(
log,
"Failing as an experiment to see how it's logged on GitHub ..."
);
if true {
panic!("Failing as an experiment to see how it's logged on GitHub!");
}

info!(
log,
"Installing universal canisters on subnets (via all nodes), reading and storing messages ..."
Expand Down
Loading