view tests/test-paths @ 7084:f5c18a581b8b

inotify: add a test for lookup bug
author Matt Mackall <mpm@selenic.com>
date Fri, 10 Oct 2008 12:08:49 -0500
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