summary refs log tree commit diff
path: root/src/tools/compiletest
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2017-05-04 23:53:48 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2017-05-05 10:52:10 +0200
commitd5863e99853c22c649a1787f40c47b60795ea93d (patch)
treecfe71cf5bb98cd23ffd4ff02db31f1d2cc18b2a3 /src/tools/compiletest
parentf30ed77f0d7bb4be308454d8522b389e0f9ce4f5 (diff)
downloadrust-d5863e99853c22c649a1787f40c47b60795ea93d.tar.gz
rust-d5863e99853c22c649a1787f40c47b60795ea93d.zip
Add Options type in libtest and remove argument
Diffstat (limited to 'src/tools/compiletest')
-rw-r--r--src/tools/compiletest/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/compiletest/src/main.rs b/src/tools/compiletest/src/main.rs
index 0d1795a182c..6fc7f9f07ac 100644
--- a/src/tools/compiletest/src/main.rs
+++ b/src/tools/compiletest/src/main.rs
@@ -336,7 +336,7 @@ pub fn test_opts(config: &Config) -> test::TestOpts {
         test_threads: None,
         skip: vec![],
         list: false,
-        display_stdout: false,
+        options: test::Options::new(),
     }
 }