diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-06-27 11:05:52 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-06-27 11:14:42 +0200 |
commit | c30d117822a8ca26cd8c06c0a3974955bef68eac (patch) | |
tree | 20c36c4d6e881f58f4fbc95d5080ff4ac3e5ebf6 /tests | |
parent | 08c95ba28d5d5c9c96f6d1bdcfb75a04e5177a74 (diff) | |
download | patches-c30d117822a8ca26cd8c06c0a3974955bef68eac.tar patches-c30d117822a8ca26cd8c06c0a3974955bef68eac.tar.gz |
tests: Avoid TCP port collision between lint.scm and guix-daemon.sh.
This could lead to random deadlocks in one of these two tests when
running "make check -j5".
* tests/guix-daemon.sh (tcp_socket): Change port to 9998 to avoid
collision with tests/lint.scm.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/guix-daemon.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/guix-daemon.sh b/tests/guix-daemon.sh index ce82cfd1e6..78f82eafe2 100644 --- a/tests/guix-daemon.sh +++ b/tests/guix-daemon.sh @@ -196,7 +196,7 @@ done # Make sure garbage collection from a TCP connection does not work. -tcp_socket="127.0.0.1:9999" +tcp_socket="127.0.0.1:9998" guix-daemon --listen="$tcp_socket" & daemon_pid=$! |