From 8de1a411667b678e2625d9cdd69dd874b573291a Mon Sep 17 00:00:00 2001 From: Sai Deng Date: Tue, 5 Nov 2024 10:01:48 -0800 Subject: [PATCH] add comments --- evm_arithmetization/tests/empty_tables.rs | 3 +++ evm_arithmetization/tests/erc721.rs | 3 +++ evm_arithmetization/tests/two_to_one_block.rs | 3 +++ 3 files changed, 9 insertions(+) diff --git a/evm_arithmetization/tests/empty_tables.rs b/evm_arithmetization/tests/empty_tables.rs index a44458b41..534e7806c 100644 --- a/evm_arithmetization/tests/empty_tables.rs +++ b/evm_arithmetization/tests/empty_tables.rs @@ -18,6 +18,9 @@ use plonky2::util::timing::TimingTree; /// This test focuses on testing zkVM proofs with some empty tables. #[test] +// This test is run in CI under the "Run Specific Ignored Tests in Release Mode" job. +// It is marked as ignored to prevent it from running by default in debug mode due to its longer +// execution time. #[ignore] fn empty_tables() -> anyhow::Result<()> { type F = GoldilocksField; diff --git a/evm_arithmetization/tests/erc721.rs b/evm_arithmetization/tests/erc721.rs index 03c907e86..e39915100 100644 --- a/evm_arithmetization/tests/erc721.rs +++ b/evm_arithmetization/tests/erc721.rs @@ -52,6 +52,9 @@ type C = KeccakGoldilocksConfig; /// `1337` from address `0x5B38Da6a701c568545dCfcB03FcB875f56beddC4` to address /// `0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2`. #[test] +// This test is run in CI under the "Run Specific Ignored Tests in Release Mode" job. +// It is marked as ignored to prevent it from running by default in debug mode due to its longer +// execution time. #[ignore] fn test_erc721() -> anyhow::Result<()> { init_logger(); diff --git a/evm_arithmetization/tests/two_to_one_block.rs b/evm_arithmetization/tests/two_to_one_block.rs index b62281a8d..20583c82d 100644 --- a/evm_arithmetization/tests/two_to_one_block.rs +++ b/evm_arithmetization/tests/two_to_one_block.rs @@ -163,6 +163,9 @@ fn get_test_block_proof( } #[test] +// This test is run in CI under the "Run Specific Ignored Tests in Release Mode" job. +// It is marked as ignored to prevent it from running by default in debug mode due to its longer +// execution time. #[ignore] fn test_two_to_one_block_aggregation() -> anyhow::Result<()> { init_logger();