# HG changeset patch # User Ryan McElroy # Date 1500384456 25200 # Node ID e470f12d7d05acae01972aab0da02a03a4fc0831 # Parent d341677d667d7b3d4c367fde11e025c5f5e8a0dc check-config: mention the file and line of the error I used this to more quickly track down a failing test-check-config.t issue in another repo. I thought it might be useful more generally, so I'm sending it out in case others think it's a worthwhile change. diff -r d341677d667d -r e470f12d7d05 contrib/check-config.py --- a/contrib/check-config.py Tue Jul 18 07:47:28 2017 -0700 +++ b/contrib/check-config.py Tue Jul 18 06:27:36 2017 -0700 @@ -48,7 +48,9 @@ prevname = '' confsect = '' carryover = '' + linenum = 0 for l in open(f): + linenum += 1 # check topic-like bits m = re.match('\s*``(\S+)``', l) @@ -110,9 +112,10 @@ default = '' if (name in foundopts and (ctype, default) != foundopts[name] and name not in allowinconsistent): - print(l) + print(l.rstrip()) print("conflict on %s: %r != %r" % (name, (ctype, default), foundopts[name])) + print("at %s:%d:" % (f, linenum)) foundopts[name] = (ctype, default) carryover = '' else: diff -r d341677d667d -r e470f12d7d05 tests/test-check-config.t --- a/tests/test-check-config.t Tue Jul 18 07:47:28 2017 -0700 +++ b/tests/test-check-config.t Tue Jul 18 06:27:36 2017 -0700 @@ -32,8 +32,8 @@ $ $PYTHON contrib/check-config.py < $TESTTMP/files foo = ui.configint('ui', 'intdefault', default=42) - conflict on ui.intdefault: ('int', '42') != ('int', '1') + at $TESTTMP/testfile.py:12: (glob) undocumented: ui.doesnotexist (str) undocumented: ui.intdefault (int) [42] undocumented: ui.intdefault2 (int) [42]