summaryrefslogtreecommitdiff
path: root/gnu/tests
diff options
context:
space:
mode:
authorYelninei <yelninei@tutamail.com>2026-08-11 09:08:27 +0000
committerNguyễn Gia Phong <cnx@loang.net>2026-08-12 10:20:27 +0900
commite388dbdb2c67b0487e1d5643b031a9b27968e401 (patch)
tree872c2adf0539317b668d3f65dc6c43fe059cd4d0 /gnu/tests
parent5375f33fd48ffc3b39ecc1c5993e299258a043d8 (diff)
tests: Fix nfs system test.
The socket position changed from /var/run to /run in libtirpc 1.3.7, commit 2f9ce0ca4e0e21f5286e75fab32202f3913d9725 ("Move rpcbind.sock to /run"). * gnu/tests/nfs.scm (%test-nfs): Change rpcbind socket to /run. Merges: https://codeberg.org/guix/guix/pulls/10487 Reviewed-by: Sharlatan Hellseher <sharlatanus@gmail.com> Signed-off-by: Nguyễn Gia Phong <cnx@loang.net>
Diffstat (limited to 'gnu/tests')
-rw-r--r--gnu/tests/nfs.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/tests/nfs.scm b/gnu/tests/nfs.scm
index e760c4502a1..ceaa7968c34 100644
--- a/gnu/tests/nfs.scm
+++ b/gnu/tests/nfs.scm
@@ -138,7 +138,7 @@
138 (system-test 138 (system-test
139 (name "nfs") 139 (name "nfs")
140 (description "Test some things related to NFS.") 140 (description "Test some things related to NFS.")
141 (value (run-nfs-test name "/var/run/rpcbind.sock")))) 141 (value (run-nfs-test name "/run/rpcbind.sock"))))
142 142
143 143
144(define %nfs-os 144(define %nfs-os