Skip to content
Snippets Groups Projects
Commit 5ff0fd02 authored by Matt Mackall's avatar Matt Mackall
Browse files

merge with crew

parents 507919a3 af02783d
No related branches found
No related tags found
No related merge requests found
......@@ -502,7 +502,8 @@
cmdsuggest)
# make sure username is set before going interactive
ui.username()
if not opts.get('user'):
ui.username() # raise exception, username not provided
def recordfunc(ui, repo, message, match, opts):
"""This is generic record driver.
......
......@@ -105,4 +105,4 @@
- Display the contents of the 'extra' field, one per line::
$ hg log -r 0 --template "{join(extras, '\n')}\n"
$ hg log -r 0 --template "{join(extras, '\n')}\n"
......@@ -2,6 +2,13 @@
this test on anything earlier.
$ python -c 'import sys ; assert sys.version_info >= (2, 6)' || exit 80
Virtualenv has a habit of leaving BaseHTTPServer and other modules in
a place where the import checker is confused about their nature as
part of the stdlib. Skip the test if BaseHTTPServer's path isn't a
subpath of sys.prefix.
$ python -c 'import sys, BaseHTTPServer; assert BaseHTTPServer.__file__.startswith(sys.prefix)' || exit 80
$ import_checker="$TESTDIR"/../contrib/import-checker.py
Run the doctests from the import checker, and make sure
it's working correctly.
......
......@@ -1277,5 +1277,25 @@
c
+d
Test --user when ui.username not set
$ unset HGUSER
$ echo e >> subdir/f1
$ hg record --config ui.username= -d '8 0' --user xyz -m "user flag" <<EOF
> y
> y
> EOF
diff --git a/subdir/f1 b/subdir/f1
1 hunks, 1 lines changed
examine changes to 'subdir/f1'? [Ynesfdaq?]
@@ -4,3 +4,4 @@
b
c
d
+e
record this change to 'subdir/f1'? [Ynesfdaq?]
$ hg log --template '{author}\n' -l 1
xyz
$ HGUSER="test"
$ export HGUSER
$ cd ..
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment