Skip to content

Commit

Permalink
fix: disable cdk erigon tests until we generate witness files
Browse files Browse the repository at this point in the history
  • Loading branch information
atanmarko committed Jul 16, 2024
1 parent 8f13657 commit bdc1659
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions trace_decoder/tests/trace_decoder_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ use trace_decoder::OtherBlockData;
type F = GoldilocksField;

const JERIGON_WITNESS_DIR: &str = "tests/data/witnesses/zero_jerigon";
const CDK_ERIGON_WITNESS_DIR: &str = "tests/data/witnesses/hermez_cdk_erigon";
//const CDK_ERIGON_WITNESS_DIR: &str = "tests/data/witnesses/hermez_cdk_erigon";

enum JsonFileType {
Witness,
Expand Down Expand Up @@ -161,7 +161,7 @@ fn verify_generation_inputs(
/// CI even in `debug` mode.
#[rstest]
#[case(JERIGON_WITNESS_DIR)]
#[case(CDK_ERIGON_WITNESS_DIR)]
//#[case(CDK_ERIGON_WITNESS_DIR)]
fn test_parsing_decoding_proving(#[case] test_witness_directory: &str) {
init_logger();

Expand Down Expand Up @@ -214,7 +214,7 @@ fn test_parsing_decoding_proving(#[case] test_witness_directory: &str) {
/// checks if trace decoder output generation inputs are valid and consistent
#[rstest]
#[case(JERIGON_WITNESS_DIR)]
#[case(CDK_ERIGON_WITNESS_DIR)]
//#[case(CDK_ERIGON_WITNESS_DIR)]
fn test_generation_inputs_consistency(#[case] test_witness_directory: &str) {
init_logger();

Expand Down

0 comments on commit bdc1659

Please sign in to comment.