Format with nightly rustfmt-preview, then with rustfmt-0.9 again.

This commit is contained in:
Dan Gohman
2018-03-30 13:24:58 -07:00
parent 8d5fecd324
commit c50675deb8
117 changed files with 360 additions and 360 deletions

View File

@@ -3,13 +3,13 @@
//! This module implements the `TestRunner` struct which manages executing tests as well as
//! scanning directories for tests.
use concurrent::{ConcurrentRunner, Reply};
use std::error::Error;
use std::fmt::{self, Display};
use std::ffi::OsStr;
use std::fmt::{self, Display};
use std::path::{Path, PathBuf};
use std::time;
use {runone, TestResult};
use concurrent::{ConcurrentRunner, Reply};
/// Timeout in seconds when we're not making progress.
const TIMEOUT_PANIC: usize = 10;