From f221cb5178f2f4d837d22ea7f168768622c3268d Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Mon, 1 Dec 2014 23:56:24 -0800 Subject: [PATCH] Restrict size tests to 64 bit --- components/script/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/script/lib.rs b/components/script/lib.rs index 3f1cac6bf25..2cf8f99d4f3 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -227,5 +227,5 @@ mod timers; pub mod textinput; mod devtools; -#[cfg(test)] +#[cfg(all(test, target_word_size = "64"))] mod tests;