about summary refs log tree commit diff
path: root/src/tools
diff options
context:
space:
mode:
authorTomasz Miąsko <tomasz.miasko@gmail.com>2020-01-27 00:00:00 +0000
committerTomasz Miąsko <tomasz.miasko@gmail.com>2020-01-27 00:00:00 +0000
commitdb7ee9534522196a9e750833c0303d8275c683bc (patch)
tree7ef2bcc250277a8b1640a2c4d36b6b0ce8820507 /src/tools
parent9a154a94b30baa333fe7399ee6dc2a01f395a27d (diff)
compiletest: Derive Default for EarlyProps
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/compiletest/src/header.rs10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/tools/compiletest/src/header.rs b/src/tools/compiletest/src/header.rs
index 029afd1b38f..684e19f99b5 100644
--- a/src/tools/compiletest/src/header.rs
+++ b/src/tools/compiletest/src/header.rs
@@ -24,6 +24,7 @@ enum ParsedNameDirective {
 
 /// Properties which must be known very early, before actually running
 /// the test.
+#[derive(Default)]
 pub struct EarlyProps {
     pub ignore: bool,
     pub should_fail: bool,
@@ -39,14 +40,7 @@ impl EarlyProps {
     }
 
     pub fn from_reader<R: Read>(config: &Config, testfile: &Path, rdr: R) -> Self {
-        let mut props = EarlyProps {
-            ignore: false,
-            should_fail: false,
-            aux: Vec::new(),
-            aux_crate: Vec::new(),
-            revisions: vec![],
-        };
-
+        let mut props = EarlyProps::default();
         let rustc_has_profiler_support = env::var_os("RUSTC_PROFILER_SUPPORT").is_some();
         let rustc_has_sanitizer_support = env::var_os("RUSTC_SANITIZER_SUPPORT").is_some();