##// END OF EJS Templates
test-inotify.t: migrate to killdaemons from kill `cat pidfile`
Augie Fackler -
r18595:37479af4 default
parent child Browse files
Show More
@@ -10,15 +10,6 b' New errors are not allowed. Warnings are'
10 10
11 11 $ hg manifest | xargs "$check_code" --warnings --nolineno --per-file=0 \
12 12 > || false
13 tests/test-inotify.t:0:
14 > $ kill `cat ../hg2.pid`
15 don't use kill, use killdaemons.py
16 tests/test-inotify.t:0:
17 > $ kill `cat hg.pid`
18 don't use kill, use killdaemons.py
19 tests/test-inotify.t:0:
20 > $ kill `cat hg3.pid`
21 don't use kill, use killdaemons.py
22 13 tests/test-obsolete.t:0:
23 14 > $ kill `cat hg.pid`
24 15 don't use kill, use killdaemons.py
@@ -32,7 +32,7 b' and make sure that inotify.pidfile works'
32 32
33 33 make sure that pidfile worked. Output should be silent.
34 34
35 $ kill `cat ../hg2.pid`
35 $ "$TESTDIR/killdaemons.py" ../hg2.pid
36 36 $ cd ../repo1
37 37
38 38 inserve
@@ -157,7 +157,7 b' Now, lets add some build products...'
157 157 build/x & build/y shouldn't appear in "hg st"
158 158
159 159 $ hg st
160 $ kill `cat hg.pid`
160 $ "$TESTDIR/killdaemons.py" hg.pid
161 161
162 162 $ cd ..
163 163
@@ -179,4 +179,4 b' Trying to start the server a second time'
179 179 abort: inotify-server: cannot start: socket is already bound
180 180 [255]
181 181
182 $ kill `cat hg3.pid`
182 $ "$TESTDIR/killdaemons.py" hg3.pid
General Comments 0
You need to be logged in to leave comments. Login now