tests/test-paths
author Martin Geisler <mg@lazybytes.net>
Fri, 04 Sep 2009 23:45:13 +0200
changeset 9426 b42b03308ae9
parent 5951 92eb0a019bf2
permissions -rwxr-xr-x
test-highlight: remove redundant test Changeset 799373ff2554 is testing how a EUC-JP encoded Japanese file is treated in different encodings, so the ISO-8859-1 encoded German file is no longer needed.

#!/bin/sh
hg init a
hg clone a b
cd a
echo '[paths]' >> .hg/hgrc
echo 'dupe = ../b' >> .hg/hgrc
hg in dupe | fgrep '../'
cd ..
hg -R a in dupe | fgrep '../'
true