mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
10 lines
186 B
Rust
10 lines
186 B
Rust
// This is marked as `test = true` and hence picked up by `./x miri`, but that would be too slow.
|
|
#![cfg(not(miri))]
|
|
#![feature(test)]
|
|
|
|
extern crate test;
|
|
|
|
mod hash;
|
|
mod path;
|
|
mod time;
|