From f7c1d109367c0ab4167d2eb41712777bcc66c9a4 Mon Sep 17 00:00:00 2001 From: Dmitri Makarov Date: Thu, 5 Oct 2023 14:08:31 -0400 Subject: [PATCH] Add command line options used by rust stdlib test harness --- src/main.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main.rs b/src/main.rs index 54303cc..b68fdab 100644 --- a/src/main.rs +++ b/src/main.rs @@ -350,6 +350,12 @@ struct Opt { #[allow(dead_code)] #[structopt(long, hidden = true)] quiet: bool, + #[allow(dead_code)] + #[structopt(long)] + format: Option, + #[allow(dead_code)] + #[structopt(short = "Z")] + extra: Option, /// Solana VM heap size #[structopt(long)] heap_size: Option,