From 65cca7c8b14e9c5673af4921a57c2ccbac3fc2cb Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sun, 3 Aug 2014 17:41:58 -0700 Subject: Deprecate `#[ignore(cfg(...))]` Replace `#[ignore(cfg(a, b))]` with `#[cfg_attr(all(a, b), ignore)]` --- src/libtime/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libtime/lib.rs') diff --git a/src/libtime/lib.rs b/src/libtime/lib.rs index abf6fc5f255..9cec71104d4 100644 --- a/src/libtime/lib.rs +++ b/src/libtime/lib.rs @@ -1564,7 +1564,7 @@ mod tests { } #[test] - #[ignore(cfg(target_os = "android"))] // FIXME #10958 + #[cfg_attr(target_os = "android", ignore)] // FIXME #10958 fn run_tests() { // The tests race on tzset. So instead of having many independent // tests, we will just call the functions now. -- cgit 1.4.1-3-g733a5