tests/test-largefiles-cache.t
branchstable
changeset 23619 70afc58c32d3
parent 23618 9dd5dfeaab4c
child 24180 d8e0c591781c
equal deleted inserted replaced
23618:9dd5dfeaab4c 23619:70afc58c32d3
   134   $ cd ..
   134   $ cd ..
   135 
   135 
   136 #endif
   136 #endif
   137 
   137 
   138 Test issue 4053 (remove --after on a deleted, uncommitted file shouldn't say
   138 Test issue 4053 (remove --after on a deleted, uncommitted file shouldn't say
   139 it is missing, but a remove on a nonexistant unknown file still should)
   139 it is missing, but a remove on a nonexistant unknown file still should.  Same
       
   140 for a forget.)
   140 
   141 
   141   $ cd src
   142   $ cd src
   142   $ touch x
   143   $ touch x
   143   $ hg add x
   144   $ hg add x
   144   $ mv x y
   145   $ mv x y
   145   $ hg remove -A x y ENOENT
   146   $ hg remove -A x y ENOENT
   146   ENOENT: * (glob)
   147   ENOENT: * (glob)
   147   not removing y: file is untracked
   148   not removing y: file is untracked
   148   [1]
   149   [1]
       
   150   $ hg add y
       
   151   $ mv y z
       
   152   $ hg forget y z ENOENT
       
   153   ENOENT: * (glob)
       
   154   not removing z: file is already untracked
       
   155   [1]