diff -r 6a81f88758aa -r d944492445fa tests/test-largefiles-misc.t --- a/tests/test-largefiles-misc.t Mon Jan 05 11:02:04 2015 +0900 +++ b/tests/test-largefiles-misc.t Mon Jan 05 15:46:14 2015 -0600 @@ -255,6 +255,7 @@ Add a normal file to the subrepo, then test archiving $ echo 'normal file' > subrepo/normal.txt + $ touch large.dat $ mv subrepo/large.txt subrepo/renamed-large.txt $ hg -R subrepo addremove --dry-run removing large.txt @@ -262,11 +263,19 @@ adding renamed-large.txt $ hg status -S ! subrepo/large.txt + ? large.dat ? subrepo/normal.txt ? subrepo/renamed-large.txt $ mv subrepo/renamed-large.txt subrepo/large.txt $ hg -R subrepo add subrepo/normal.txt + $ hg addremove + adding large.dat as a largefile + $ rm large.dat + + $ hg addremove + removing large.dat + Lock in subrepo, otherwise the change isn't archived $ hg ci -S -m "add normal file to top level"