aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/lib.rs
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2014-12-01 23:56:24 -0800
committerManish Goregaokar <manishsmail@gmail.com>2014-12-09 11:27:02 +0530
commitf221cb5178f2f4d837d22ea7f168768622c3268d (patch)
tree2a86d17f8cd6d50c41b5a465ca240390779d0ffc /components/script/lib.rs
parent16ffd543dd4817bd54d009669ae246cfef15f321 (diff)
downloadservo-f221cb5178f2f4d837d22ea7f168768622c3268d.tar.gz
servo-f221cb5178f2f4d837d22ea7f168768622c3268d.zip
Restrict size tests to 64 bit
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r--components/script/lib.rs2
1 files changed, 1 insertions, 1 deletions
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;