gnu: rust: Enable parallel tests starting with 1.26.
authorDanny Milosavljevic <dannym@scratchpost.org>
Wed, 3 Apr 2019 17:00:44 +0000 (19:00 +0200)
committerDanny Milosavljevic <dannym@scratchpost.org>
Thu, 11 Apr 2019 22:26:29 +0000 (00:26 +0200)
* gnu/packages/rust.scm (rust-1.26)[arguments]<#:phases>[check]: Enable
parallel tests.

gnu/packages/rust.scm

index 5198fd3..f3b2d73 100644 (file)
@@ -724,6 +724,16 @@ jemalloc = \"" jemalloc "/lib/libjemalloc_pic.a" "\"
           `(modify-phases ,phases
              ;; binaryen was replaced with LLD project from LLVM
              (delete 'dont-build-native)
+             (replace 'check
+               (lambda* _
+                 ;; Enable parallel execution.
+                 (let ((parallel-job-spec
+                        (string-append "-j" (number->string
+                                             (min 4
+                                                  (parallel-job-count))))))
+                   (invoke "./x.py" parallel-job-spec "test" "-vv")
+                   (invoke "./x.py" parallel-job-spec "test"
+                           "src/tools/cargo"))))
              (replace 'remove-unsupported-tests
                (lambda* _
                  ;; Our ld-wrapper cannot process non-UTF8 bytes in LIBRARY_PATH.