##// END OF EJS Templates
clone: print "updating working directory" status message...
clone: print "updating working directory" status message With this change, "hg clone" looks like this: % hg clone http://example.com/repo/big big requesting all changes adding changesets adding manifests adding file changes added XXX changesets with XXX changes to XXX files updating working directory XXX files updated, XXX files merged, XXX files removed, XXX files unresolved So the user sees % hg clone http://example.com/repo/big big requesting all changes adding changesets adding manifests adding file changes added XXX changesets with XXX changes to XXX files updating working directory while Mercurial is writing to disk to populate the working directory With this change, "hg clone" looks like this: % hg clone big big-work updating working directory XXX files updated, XXX files merged, XXX files removed, XXX files unresolved

File last commit:

r5102:9b0efeb7 default
r6338:0750f111 default
Show More
test-profile
15 lines | 455 B | text/plain | TextLexer
Patrick Mezard
Test --time, --profile and --lsprof
r5099 #!/bin/sh
echo % test --time
Patrick Mezard
test-profile: fix grep, check hotshot availability
r5102 hg --time help -q help 2>&1 | grep Time > /dev/null || echo --time failed
Patrick Mezard
Test --time, --profile and --lsprof
r5099
echo % test --profile
Patrick Mezard
test-profile: fix grep, check hotshot availability
r5102 if "$TESTDIR/hghave" -q hotshot; then
# hotshot might be missing for licensing issues
hg --profile help -q help 2>&1 | grep ncalls > /dev/null || echo --profile failed
fi
Patrick Mezard
Test --time, --profile and --lsprof
r5099
echo % test --lsprof
if "$TESTDIR/hghave" -q lsprof; then
Patrick Mezard
test-profile: fix grep, check hotshot availability
r5102 hg --lsprof help -q help 2>&1 | grep CallCount > /dev/null || echo --lsprof failed
fi