view tests/test-paths @ 6461:eb69e7989145

tests: easier error diagnostics for test-serve
author Dirkjan Ochtman <dirkjan@ochtman.nl>
date Thu, 03 Apr 2008 12:46:37 +0200
parents 92eb0a019bf2
children
line wrap: on
line source

#!/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