mirror of
https://github.com/NixOS/nix
synced 2025-06-28 13:41:15 +02:00
Fix daemon test
This commit is contained in:
parent
1b52a3add1
commit
a00efcb36c
1 changed files with 2 additions and 1 deletions
|
@ -123,7 +123,8 @@ startDaemon() {
|
||||||
fi
|
fi
|
||||||
# Start the daemon, wait for the socket to appear.
|
# Start the daemon, wait for the socket to appear.
|
||||||
rm -f $NIX_DAEMON_SOCKET_PATH
|
rm -f $NIX_DAEMON_SOCKET_PATH
|
||||||
PATH=$DAEMON_PATH nix daemon &
|
# TODO: remove the nix-command feature when we're no longer testing against old daemons.
|
||||||
|
PATH=$DAEMON_PATH nix daemon --extra-experimental-features nix-command &
|
||||||
_NIX_TEST_DAEMON_PID=$!
|
_NIX_TEST_DAEMON_PID=$!
|
||||||
export _NIX_TEST_DAEMON_PID
|
export _NIX_TEST_DAEMON_PID
|
||||||
for ((i = 0; i < 300; i++)); do
|
for ((i = 0; i < 300; i++)); do
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue