Skip to content

Commit

Permalink
Speed up arith_test
Browse files Browse the repository at this point in the history
  • Loading branch information
georgwiese committed Jun 26, 2024
1 parent 1962732 commit 8f472bd
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion pipeline/tests/powdr_std.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,16 @@ fn split_gl_test() {
fn arith_test() {
let f = "std/arith_test.asm";
verify_test_file(f, Default::default(), vec![]).unwrap();
gen_estark_proof(f, Default::default());

// Running gen_estark_proof(f, Default::default())
// is too slow for the PR tests. This will only create a single
// eStark proof instead of 3.
Pipeline::<GoldilocksField>::default()
.from_file(resolve_test_file(f))
.with_backend(powdr_backend::BackendType::EStarkStarky, None)
.compute_proof()
.unwrap();

test_halo2(f, Default::default());
}

Expand Down

0 comments on commit 8f472bd

Please sign in to comment.