tests/test-remove
branchstable
changeset 12129 07ac2a560fce
parent 9572 1f665246dab3
equal deleted inserted replaced
12128:090dc5eef746 12129:07ac2a560fce
     1 #!/bin/sh
     1 #!/bin/sh
     2 
     2 
     3 remove() {
     3 remove() {
     4     hg rm $@
     4     hg rm $@
       
     5     echo "exit code: $?"
     5     hg st
     6     hg st
     6     # do not use ls -R, which recurses in .hg subdirs on Mac OS X 10.5
     7     # do not use ls -R, which recurses in .hg subdirs on Mac OS X 10.5
     7     find . -name .hg -prune -o -type f -print | sort
     8     find . -name .hg -prune -o -type f -print | sort
     8     hg up -C
     9     hg up -C
     9 }
    10 }