gnu: monero: Return #t from phases.
* gnu/packages/finance.scm (monero)[arguments]: Substitute invoke for system*. Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
0a551443ae
commit
797445be47
|
@ -430,9 +430,8 @@ other machines/servers. Electroncash does not download the Bitcoin Cash blockch
|
||||||
#t))
|
#t))
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda _
|
||||||
(zero?
|
(invoke "make" "ARGS=-E 'unit_tests|libwallet_api_tests'"
|
||||||
(system* "make" "ARGS=-E 'unit_tests|libwallet_api_tests'"
|
"test")))
|
||||||
"test"))))
|
|
||||||
;; The excluded unit tests need network access
|
;; The excluded unit tests need network access
|
||||||
(add-after 'check 'unit-tests
|
(add-after 'check 'unit-tests
|
||||||
(lambda _
|
(lambda _
|
||||||
|
@ -445,10 +444,9 @@ other machines/servers. Electroncash does not download the Bitcoin Cash blockch
|
||||||
"DNSResolver.DNSSECFailure"
|
"DNSResolver.DNSSECFailure"
|
||||||
"DNSResolver.GetTXTRecord")
|
"DNSResolver.GetTXTRecord")
|
||||||
":")))
|
":")))
|
||||||
(zero?
|
(invoke "tests/unit_tests/unit_tests"
|
||||||
(system* "tests/unit_tests/unit_tests"
|
(string-append "--gtest_filter=-"
|
||||||
(string-append "--gtest_filter=-"
|
excluded-unit-tests)))))
|
||||||
excluded-unit-tests))))))
|
|
||||||
(add-after 'install 'install-blockchain-import-export
|
(add-after 'install 'install-blockchain-import-export
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
|
|
Reference in New Issue