Skip to content

Commit

Permalink
match proof input gen tests based on the new e2e structure (#1847)
Browse files Browse the repository at this point in the history
  • Loading branch information
yaziciahmet authored Feb 8, 2025
1 parent 0e7e5f9 commit f530767
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/citrea/tests/bitcoin/guest_cycles.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ impl TestCase for GenerateProofInput {
TestCaseConfig {
with_batch_prover: true,
genesis_dir: Some(format!(
"{}/tests/bitcoin_e2e/test-data/gen-proof-input-genesis",
"{}/tests/bitcoin/test-data/gen-proof-input-genesis",
env!("CARGO_MANIFEST_DIR")
)),
..Default::default()
Expand Down Expand Up @@ -106,7 +106,7 @@ impl TestCase for GenerateProofInput {
async fn generate_proof_input() -> Result<()> {
// Specify the path to your transactions file here
let transactions_file_path =
PathBuf::from("tests/bitcoin_e2e/test-data/signed-transactions.txt");
PathBuf::from("tests/bitcoin/test-data/signed-transactions.txt");

TestCaseRunner::new(GenerateProofInput {
transactions_file_path,
Expand All @@ -120,7 +120,7 @@ async fn generate_proof_input() -> Result<()> {
#[ignore]
async fn guest_cycles() {
let input =
fs::read("tests/bitcoin_e2e/test-data/kumquat-2seqcomms-100blocks-input.bin").unwrap();
fs::read("tests/bitcoin/test-data/kumquat-input.bin").unwrap();
println!("Input size: {}", input.len());

// Convert tmpdir to path so it's not deleted after the run for debugging purposes
Expand Down

0 comments on commit f530767

Please sign in to comment.