##// END OF EJS Templates
inotify: workaround test-inotify-dirty-dirstate failures...
Benoit Boissinot -
r9859:951ec6c7 default
parent child Browse files
Show More
@@ -11,6 +11,8 b' echo "fetch=" >> $HGRCPATH'
11 11 echo % issue1810: inotify and fetch
12 12 mkdir test; cd test
13 13 hg init
14 hg inserve -d --pid-file=../hg.pid
15 cat ../hg.pid >> "$DAEMON_PIDS"
14 16
15 17 echo foo > foo
16 18 hg add
@@ -18,8 +20,10 b' hg ci -m foo'
18 20
19 21 cd ..
20 22
21 hg clone test test2
23 hg --config "extensions.inotify=!" clone test test2
22 24 cd test2
25 hg inserve -d --pid-file=../hg2.pid
26 cat ../hg2.pid >> "$DAEMON_PIDS"
23 27 echo bar > bar
24 28 hg add
25 29 hg ci -m bar
@@ -44,8 +48,8 b' hg init test-1719'
44 48 cd test-1719
45 49
46 50 echo % inserve
47 hg inserve -d --pid-file=hg.pid
48 cat hg.pid >> "$DAEMON_PIDS"
51 hg inserve -d --pid-file=../hg-test-1719.pid
52 cat ../hg-test-1719.pid >> "$DAEMON_PIDS"
49 53
50 54 echo content > file
51 55 hg add file
@@ -1,18 +1,14 b''
1 1 % issue1810: inotify and fetch
2 2 adding foo
3 updating working directory
3 updating to branch default
4 4 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
5 5 adding bar
6 6 adding spam
7 7 % issue1719: inotify and mq
8 8 % inserve
9 ? hg.pid
10 9 popping test.patch
11 10 patch queue now empty
12 11 % st should not output anything
13 ? hg.pid
14 12 applying test.patch
15 13 now at: test.patch
16 14 % st should not output anything
17 ? hg.pid
18 ? hg.pid
General Comments 0
You need to be logged in to leave comments. Login now