about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-10-03T21·57-0400
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-10-03T21·59-0400
commite35d6f78dc797150451f5134833afa0ecdf4a241 (patch)
tree052a38cce623d3d6e5075023a229e5f32c441238 /tests
parent522ecab9b83902de5a3010b50b9532e376cbba4c (diff)
Rename nix-worker to nix-daemon
Diffstat (limited to 'tests')
-rw-r--r--tests/common.sh.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/common.sh.in b/tests/common.sh.in
index ee0ddfbb69..f327ad7276 100644
--- a/tests/common.sh.in
+++ b/tests/common.sh.in
@@ -59,9 +59,9 @@ clearManifests() {
 
 startDaemon() {
     # Start the daemon, wait for the socket to appear.  !!!
-    # ‘nix-worker’ should have an option to fork into the background.
+    # ‘nix-daemon’ should have an option to fork into the background.
     rm -f $NIX_STATE_DIR/daemon-socket/socket
-    nix-worker --daemon &
+    nix-daemon &
     for ((i = 0; i < 30; i++)); do
         if [ -e $NIX_STATE_DIR/daemon-socket/socket ]; then break; fi
         sleep 1