gnu: vim: Update to 8.2.4701.
* gnu/packages/vim.scm (vim): Update to 8.2.4701. [arguments]: Adjust custom 'skip-or-fix-failing-tests phase to skip another test.master
parent
c2125e59d0
commit
3ac90f92a0
|
@ -77,7 +77,7 @@
|
||||||
(define-public vim
|
(define-public vim
|
||||||
(package
|
(package
|
||||||
(name "vim")
|
(name "vim")
|
||||||
(version "8.2.4564")
|
(version "8.2.4701")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -86,7 +86,7 @@
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1ggvmvd6xsj9xvknjcvpj52na2km2wxvxfj8l29mqp03g4wwyzrr"))))
|
"0yqqzai3ihfjjjjmn50pxlcqllpkmlrf5z59ma5rn0gv8wwwdw7h"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:test-target "test"
|
`(#:test-target "test"
|
||||||
|
@ -118,6 +118,11 @@
|
||||||
(setenv "TERM" "xterm")))
|
(setenv "TERM" "xterm")))
|
||||||
(add-before 'check 'skip-or-fix-failing-tests
|
(add-before 'check 'skip-or-fix-failing-tests
|
||||||
(lambda _
|
(lambda _
|
||||||
|
;; This test failure is shared between BSD and Guix.
|
||||||
|
(with-fluids ((%default-port-encoding #f))
|
||||||
|
(substitute* "src/testdir/test_writefile.vim"
|
||||||
|
(("!has\\('bsd'\\)") "0")))
|
||||||
|
|
||||||
;; This test assumes that PID 1 is run as root and that the user
|
;; This test assumes that PID 1 is run as root and that the user
|
||||||
;; running the test suite does not have permission to kill(1, 0)
|
;; running the test suite does not have permission to kill(1, 0)
|
||||||
;; it. This is not true in the build container, where both PID 1
|
;; it. This is not true in the build container, where both PID 1
|
||||||
|
|
Reference in New Issue