about summary refs log tree commit diff
path: root/src/librustpkg
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2013-05-15 16:15:26 -0700
committerTim Chevalier <chevalier@alum.wellesley.edu>2013-05-15 16:17:13 -0700
commite732912954c480d435d2760c259a44cf8837ac55 (patch)
tree89349f68c483159a600bb1965831a0d248d4b66a /src/librustpkg
parent5421bc294268d4cb24c036710f60adeeae1ed1c9 (diff)
downloadrust-e732912954c480d435d2760c259a44cf8837ac55.tar.gz
rust-e732912954c480d435d2760c259a44cf8837ac55.zip
rustpkg: ignore tests on i686, since they fail
Diffstat (limited to 'src/librustpkg')
-rw-r--r--src/librustpkg/tests.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/librustpkg/tests.rs b/src/librustpkg/tests.rs
index 487e8d0da36..8eba3f06de3 100644
--- a/src/librustpkg/tests.rs
+++ b/src/librustpkg/tests.rs
@@ -93,7 +93,9 @@ fn test_sysroot() -> Path {
     self_path.pop()
 }
 
+// Ignored on i686 -- see #6517
 #[test]
+#[ignore(cfg(target_arch = "x86"))]
 fn test_make_dir_rwx() {
     let temp = &os::tmpdir();
     let dir = temp.push(~"quux");
@@ -107,6 +109,7 @@ fn test_make_dir_rwx() {
 }
 
 #[test]
+#[ignore(cfg(target_arch = "x86"))]
 fn test_install_valid() {
     let sysroot = test_sysroot();
     debug!("sysroot = %s", sysroot.to_str());
@@ -132,6 +135,7 @@ fn test_install_valid() {
 }
 
 #[test]
+#[ignore(cfg(target_arch = "x86"))]
 fn test_install_invalid() {
     use conditions::nonexistent_package::cond;
     use cond1 = conditions::missing_pkg_files::cond;
@@ -154,6 +158,7 @@ fn test_install_invalid() {
 }
 
 #[test]
+#[ignore(cfg(target_arch = "x86"))]
 fn test_install_url() {
     let workspace = mkdtemp(&os::tmpdir(), "test").expect("couldn't create temp dir");
     let sysroot = test_sysroot();