diff options
| author | Samuel E. Moelius III <sam@moeli.us> | 2021-09-18 18:10:01 -0400 |
|---|---|---|
| committer | Samuel E. Moelius III <sam@moeli.us> | 2021-09-29 21:51:46 -0400 |
| commit | fa23d4fe93020bfde8f45c7cad077117d999c3ed (patch) | |
| tree | 92954b6026eca5f0a28ce6ca89662c345e58854c /library/test/src/formatters/junit.rs | |
| parent | e0c38af27cb5f6f961809601b717d6afc3b190ee (diff) | |
| download | rust-fa23d4fe93020bfde8f45c7cad077117d999c3ed.tar.gz rust-fa23d4fe93020bfde8f45c7cad077117d999c3ed.zip | |
Implement #85440
Diffstat (limited to 'library/test/src/formatters/junit.rs')
| -rw-r--r-- | library/test/src/formatters/junit.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/library/test/src/formatters/junit.rs b/library/test/src/formatters/junit.rs index aa244807514..f3ae5494906 100644 --- a/library/test/src/formatters/junit.rs +++ b/library/test/src/formatters/junit.rs @@ -27,7 +27,11 @@ impl<T: Write> JunitFormatter<T> { } impl<T: Write> OutputFormatter for JunitFormatter<T> { - fn write_run_start(&mut self, _test_count: usize) -> io::Result<()> { + fn write_run_start( + &mut self, + _test_count: usize, + _shuffle_seed: Option<u64>, + ) -> io::Result<()> { // We write xml header on run start self.write_message(&"<?xml version=\"1.0\" encoding=\"UTF-8\"?>") } |
