Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/sui-move/src/disassemble.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pub struct Disassemble {
module_path: PathBuf,

/// Whether to display the disassembly in raw Debug format
#[clap(long = "Xdebug")]
#[clap(long = "Xdebug", hide = true)]
debug: bool,

#[clap(short = 'i', long = "interactive")]
Expand Down
3 changes: 2 additions & 1 deletion external-crates/move/crates/move-cli/src/base/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ pub struct Test {
#[clap(name = "rand-num-iters", long = "rand-num-iters")]
pub rand_num_iters: Option<u64>,

// Enable tracing for tests
/// Enable tracing for tests. A separate trace file will be created for each test. If `PATH` is
/// provided, the trace will be written to the `PATH` directory.
#[clap(long = "trace-execution", value_name = "PATH")]
pub trace_execution: Option<Option<String>>,
}
Expand Down
Loading