diff options
Diffstat (limited to 'cli/args/mod.rs')
-rw-r--r-- | cli/args/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/args/mod.rs b/cli/args/mod.rs index eb7eea44f..cea0c0ca1 100644 --- a/cli/args/mod.rs +++ b/cli/args/mod.rs @@ -228,6 +228,7 @@ pub struct TestOptions { pub concurrent_jobs: NonZeroUsize, pub trace_ops: bool, pub reporter: TestReporterConfig, + pub junit_path: Option<String>, } impl TestOptions { @@ -253,6 +254,7 @@ impl TestOptions { shuffle: test_flags.shuffle, trace_ops: test_flags.trace_ops, reporter: test_flags.reporter, + junit_path: test_flags.junit_path, }) } } |