diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2014-12-01 23:56:24 -0800 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2014-12-09 11:27:02 +0530 |
commit | f221cb5178f2f4d837d22ea7f168768622c3268d (patch) | |
tree | 2a86d17f8cd6d50c41b5a465ca240390779d0ffc /components/script/lib.rs | |
parent | 16ffd543dd4817bd54d009669ae246cfef15f321 (diff) | |
download | servo-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.rs | 2 |
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; |