Skip to content

Commit

Permalink
Add command line options used by rust stdlib test harness
Browse files Browse the repository at this point in the history
  • Loading branch information
dmakarov committed Oct 5, 2023
1 parent df2f642 commit f7c1d10
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,12 @@ struct Opt {
#[allow(dead_code)]
#[structopt(long, hidden = true)]
quiet: bool,
#[allow(dead_code)]
#[structopt(long)]
format: Option<String>,
#[allow(dead_code)]
#[structopt(short = "Z")]
extra: Option<String>,
/// Solana VM heap size
#[structopt(long)]
heap_size: Option<u32>,
Expand Down

0 comments on commit f7c1d10

Please sign in to comment.