From b83b5b453d3f7883ef4c12f84a7045486957c709 Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Tue, 9 Nov 2021 17:02:54 +0100 Subject: [PATCH] Ignore live tests. diff --git a/tests/live.rs b/tests/live.rs index b1a19fc..6bd4685 100644 --- a/tests/live.rs +++ b/tests/live.rs @@ -140,6 +140,7 @@ fn get_blocker_engine_deserialized_ios() -> Engine { } #[test] +#[ignore] fn check_live_specific_urls() { let mut engine = get_blocker_engine(); { @@ -176,6 +177,7 @@ fn check_live_specific_urls() { } #[test] +#[ignore] fn check_live_deserialized_specific_urls() { let mut engine = get_blocker_engine_deserialized(); { @@ -201,6 +203,7 @@ fn check_live_deserialized_specific_urls() { } #[test] +#[ignore] fn check_live_from_filterlists() { let engine = get_blocker_engine(); let requests = load_requests(); @@ -214,6 +217,7 @@ fn check_live_from_filterlists() { } #[test] +#[ignore] fn check_live_deserialized_file() { let engine = get_blocker_engine_deserialized(); let requests = load_requests(); @@ -243,6 +247,7 @@ fn check_live_deserialized_ios() { #[cfg(feature = "resource_assembler")] #[test] +#[ignore] fn check_live_redirects() { use adblock::resources::resource_assembler::assemble_web_accessible_resources; @@ -278,6 +283,7 @@ fn check_live_redirects() { } #[test] +#[ignore] /// Ensure that two different engines loaded from the same textual filter set serialize to /// identical buffers. fn stable_serialization() { @@ -291,6 +297,7 @@ fn stable_serialization() { } #[test] +#[ignore] /// Ensure that one engine's serialization result can be exactly reproduced by another engine after /// deserializing from it. fn stable_serialization_through_load() { -- 2.33.1 mmitter'>committer
path: root/tests/guix-daemon.sh
AgeCommit message (Expand)Author
2023-04-21tests: Fix checks for expected failures....Addresses <https://issues.guix.gnu.org/62406>. With 'set -e', a return status inverted with '!' does not cause the shell to exit immediately. Instead use '&& false' to indicate an expected failure. * tests/guix-archive.sh, tests/guix-build-branch.sh, tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh, tests/guix-environment-container.sh, tests/guix-environment.sh, tests/guix-gc.sh, tests/guix-git-authenticate.sh, tests/guix-graph.sh, tests/guix-hash.sh, tests/guix-home.sh, tests/guix-pack-relocatable.sh, tests/guix-pack.sh, tests/guix-package-aliases.sh, tests/guix-package-net.sh, tests/guix-package.sh, tests/guix-refresh.sh, tests/guix-shell.sh, tests/guix-style.sh, tests/guix-system.sh: Replace uses of '! ...' with '... && false' or `test ! ...` as appropriate. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Eric Bavier
2022-10-22Remove now unnecessary uses of (guix grafts)....These modules would use (guix grafts) just to access '%graft?' and related bindings, which are now in (guix store). * gnu/ci.scm, guix/gexp.scm, guix/lint.scm, guix/scripts.scm, guix/scripts/archive.scm, guix/scripts/build.scm, guix/scripts/challenge.scm, guix/scripts/deploy.scm, guix/scripts/environment.scm, guix/scripts/home.scm, guix/scripts/pack.scm, guix/scripts/package.scm, guix/scripts/pull.scm, guix/scripts/size.scm, guix/scripts/system.scm, guix/scripts/weather.scm, tests/builders.scm, tests/channels.scm, tests/cpan.scm, tests/derivations.scm, tests/gexp.scm, tests/graph.scm, tests/guix-daemon.sh, tests/monads.scm, tests/pack.scm, tests/packages.scm, tests/profiles.scm, tests/system.scm: Remove #:use-module (guix grafts). Ludovic Courtès