guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

29/61: gnu: rust-nix-0.22: Run the tests.


From: guix-commits
Subject: 29/61: gnu: rust-nix-0.22: Run the tests.
Date: Thu, 28 Mar 2024 12:01:01 -0400 (EDT)

efraim pushed a commit to branch rust-team
in repository guix.

commit 4515fc8d5c3f6edf4277ef1dc5341ce2f17c7d49
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Thu Mar 28 09:27:01 2024 +0200

    gnu: rust-nix-0.22: Run the tests.
    
    * gnu/packages/crates-io.scm (rust-nix-0.22)[arguments]: Don't skip the
    tests.  Add cargo-test-flags.
    [inputs]: Remove field.
    
    Change-Id: I6dffeb95018c02c69cc8a25e09c10996c8149a9b
---
 gnu/packages/crates-io.scm | 35 +++++++++++++++++++++++++----------
 1 file changed, 25 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 9dba76311b..c708e6fbf7 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -44058,13 +44058,31 @@ while still providing platform specific APIs.")
        (uri (crate-uri "nix" version))
        (file-name (string-append name "-" version ".tar.gz"))
        (sha256
-        (base32 "1bsgc8vjq07a1wg9vz819bva3dvn58an4r87h80dxrfqkqanz4g4"))
-       (modules '((guix build utils)))
-       (snippet
-        '(begin (substitute* "Cargo.toml"
-                  ((">= 1\\.1\\.0, < 1\\.3\\.0") ">= 1.1.0"))))))
+        (base32 "1bsgc8vjq07a1wg9vz819bva3dvn58an4r87h80dxrfqkqanz4g4"))))
     (arguments
-     `(#:tests? #f      ; Tests hang forever.
+     `(#:cargo-test-flags
+       '("--release" "--"
+         "--skip=test_unistd::test_execve::test_cstr_ref"
+         "--skip=test_unistd::test_execve::test_cstring"
+         "--skip=test_unistd::test_execveat_absolute::test_cstr_ref"
+         "--skip=test_unistd::test_execveat_absolute::test_cstring"
+         ;; Some of the tests hang.
+         "--skip=sys::test_socket::test_af_alg_aead"
+         "--skip=test_unistd::test_execveat_empty::test_cstr_ref"
+         "--skip=test_unistd::test_execveat_empty::test_cstring"
+         "--skip=test_unistd::test_execveat_relative::test_cstr_ref"
+         "--skip=test_unistd::test_execveat_relative::test_cstring"
+         "--skip=test_unistd::test_fexecve::test_cstr_ref"
+         "--skip=test_unistd::test_fexecve::test_cstring"
+         ;; cannot find macro `libc_bitflags` in this scope
+         "--skip=macros::libc_bitflags"
+         "--skip=macros::libc_enum"
+         ;; Some doctests segfault.
+         "--skip=sys::personality::set"
+         "--skip=unistd::Group::from_gid"
+         "--skip=unistd::Group::from_name"
+         "--skip=unistd::User::from_name"
+         "--skip=unistd::User::from_uid")
        #:cargo-inputs
        (("rust-bitflags" ,rust-bitflags-1)
         ("rust-cc" ,rust-cc-1)
@@ -44078,10 +44096,7 @@ while still providing platform specific APIs.")
         ("rust-rand" ,rust-rand-0.8)
         ("rust-semver" ,rust-semver-1)
         ("rust-sysctl" ,rust-sysctl-0.1)
-        ("rust-tempfile" ,rust-tempfile-3))))
-    (inputs
-     (list rust-bitflags-1 rust-cc-1 rust-cfg-if-1 rust-libc-0.2
-           rust-memoffset-0.6))))
+        ("rust-tempfile" ,rust-tempfile-3))))))
 
 (define-public rust-nix-0.21
   (package



reply via email to

[Prev in Thread] Current Thread [Next in Thread]