From f51e2ad435d7c0b4cb1bdebc5b6db29b65249125 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Mon, 22 Jul 2013 01:00:00 -0400 Subject: [PATCH] temporarily disable 3 rustpkg tests Re-enabling these when the ephemeral failures are fixed is filed as issue #7956. --- src/librustpkg/tests.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/librustpkg/tests.rs b/src/librustpkg/tests.rs index 7953d4545a84..4b4a1645a9b4 100644 --- a/src/librustpkg/tests.rs +++ b/src/librustpkg/tests.rs @@ -475,7 +475,8 @@ fn test_install_invalid() { // Tests above should (maybe) be converted to shell out to rustpkg, too -#[test] #[ignore(cfg(target_arch = "x86"))] +// FIXME: #7956: temporarily disabled +#[ignore(cfg(target_arch = "x86"))] fn test_install_git() { let sysroot = test_sysroot(); debug!("sysroot = %s", sysroot.to_str()); @@ -566,7 +567,8 @@ fn test_package_ids_must_be_relative_path_like() { } -#[test] #[ignore(cfg(target_arch = "x86"))] +// FIXME: #7956: temporarily disabled +#[ignore(cfg(target_arch = "x86"))] fn test_package_version() { let local_path = "mockgithub.com/catamorphism/test_pkg_version"; let repo = init_git_repo(&Path(local_path)); @@ -678,7 +680,7 @@ fn rustpkg_install_url_2() { &temp_dir); } -#[test] +// FIXME: #7956: temporarily disabled fn rustpkg_library_target() { let foo_repo = init_git_repo(&Path("foo")); let package_dir = foo_repo.push("foo");