Mercurial > hg-stable
view tests/test-debugrename @ 5457:7372b6bbc5e6
osutil: improve portability
- manually inline mode_to_kind
- remove unused alloca include
- remove fstatat and associated bits
It's not obvious that there's an advantage to using fstatat in terms
of performance. The race-avoidance properties of fstatat aren't
terribly useful to us either. So best to avoid it until we figure out
how to use it portably.
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Thu, 11 Oct 2007 17:46:06 -0500 |
parents | 5a088ac232e6 |
children |
line wrap: on
line source
#!/bin/sh hg init echo a > a hg ci -Am t hg mv a b hg ci -Am t1 hg debugrename b hg mv b a hg ci -Am t2 hg debugrename a echo % test with --rev hg debugrename --rev 1 b