tests/test-dirstate.t
changeset 48773 6cfa30681a1d
parent 48681 e845537f6adb
parent 48741 46d12f7762e4
child 48876 42d2b31cee0b
child 49150 f2ef6a4f918f
equal deleted inserted replaced
48772:b70c9697ab41 48773:6cfa30681a1d
   101   [255]
   101   [255]
   102   $ hg log -r . -T '{rev}\n'
   102   $ hg log -r . -T '{rev}\n'
   103   1
   103   1
   104   $ hg status
   104   $ hg status
   105   ? a
   105   ? a
       
   106 
       
   107 #if dirstate-v2
       
   108 Check that folders that are prefixes of others do not throw the packer into an
       
   109 infinite loop.
       
   110 
       
   111   $ cd ..
       
   112   $ hg init infinite-loop
       
   113   $ cd infinite-loop
       
   114   $ mkdir hgext3rd hgext
       
   115   $ touch hgext3rd/__init__.py hgext/zeroconf.py
       
   116   $ hg commit -Aqm0
       
   117 
       
   118   $ hg st -c
       
   119   C hgext/zeroconf.py
       
   120   C hgext3rd/__init__.py
       
   121 
       
   122   $ cd ..
       
   123 #endif