tests/test-empty-dir
author Matt Mackall <mpm@selenic.com>
Sat, 09 Dec 2006 12:46:01 -0600
changeset 3843 abaa2cd00d2b
parent 3464 33b6c8193652
permissions -rwxr-xr-x
make transcoding more robust default to ASCII abort if unknown encoding wrap abort strings with _ add test

#!/bin/sh

hg init
echo 123 > a
hg add a
hg commit -m "first" -d "1000000 0" a
mkdir sub
echo 321 > sub/b
hg add sub/b
hg commit -m "second" -d "1000000 0" sub/b
cat sub/b
hg co 0
cat sub/b 2>/dev/null || echo "sub/b not present"
test -d sub || echo "sub not present"

true