gnu: bitcoin-unlimited: Disable failing test.
* gnu/packages/finance.scm (bitcoin-unlimited)[arguments]: Disable a test failing because of an expired SSL certificate.
This commit is contained in:
parent
79e31f7a7a
commit
b3f559886f
1 changed files with 6 additions and 1 deletions
|
@ -1782,7 +1782,12 @@ following three utilities are included with the library:
|
||||||
;; exist.
|
;; exist.
|
||||||
(substitute* "src/Makefile.test.include"
|
(substitute* "src/Makefile.test.include"
|
||||||
(("test/utilprocess_tests.cpp")
|
(("test/utilprocess_tests.cpp")
|
||||||
""))))
|
""))
|
||||||
|
;; Disable PaymentServer failing test because it's using
|
||||||
|
;; an expired SSL certificate.
|
||||||
|
(substitute* "src/qt/test/test_main.cpp"
|
||||||
|
(("if \\(QTest::qExec\\(&test2\\) != 0\\)")
|
||||||
|
"if (QTest::qExec(&test2) == 0)"))))
|
||||||
(add-before 'check 'set-home
|
(add-before 'check 'set-home
|
||||||
(lambda _
|
(lambda _
|
||||||
;; Tests write to $HOME
|
;; Tests write to $HOME
|
||||||
|
|
Reference in a new issue