# HG changeset patch # User Patrick Mezard # Date 2008-04-11 09:21:55 # Node ID f65ac37f0a158c6391ec3f5964898284607a6690 # Parent 3d73b870b3aec3df2a88506f157ca9306a5c33a7 test-dumprevlog: fix extra path separator under MacOSX The "find .hg/store/ -name '*.i'" command returned paths with extra separators like '.hg/store//00changelog.i'. diff --git a/tests/test-dumprevlog b/tests/test-dumprevlog --- a/tests/test-dumprevlog +++ b/tests/test-dumprevlog @@ -23,7 +23,7 @@ python $CONTRIBDIR/dumprevlog .hg/store/ echo dumprevlog done # dump all revlogs to file repo.dump -find .hg/store/ -name "*.i" | xargs python $CONTRIBDIR/dumprevlog > ../repo.dump +find .hg/store -name "*.i" | xargs python $CONTRIBDIR/dumprevlog > ../repo.dump cd ..