##// END OF EJS Templates
run-tests: make _processoutput picky about optional globs...
run-tests: make _processoutput picky about optional globs 1ad0ddf8cccc enabled lines that were not matched to be found later in cases of jitter. Unfortunately, in this model an optional line would always jitter to the end when it is not present. That is not ideal. It would be possible to do better, by queuing all writes until the end in case an optional line jitters, but for now, it is simpler to assume optional lines have a fixed place in the stream.

File last commit:

r28615:a6573503 default
r28701:3bce3d2f default
Show More
test-debugextensions.t
83 lines | 1.5 KiB | text/troff | Tads3Lexer
/ tests / test-debugextensions.t
liscju
mercurial: add debugextensions command (issue4676)...
r26351 $ hg debugextensions
$ debugpath=`pwd`/extwithoutinfos.py
$ cat > extwithoutinfos.py <<EOF
> EOF
$ cat >> $HGRCPATH <<EOF
> [extensions]
> color=
> histedit=
> patchbomb=
> rebase=
> mq=
> ext1 = $debugpath
> EOF
$ hg debugextensions
color
ext1 (untested!)
histedit
mq
patchbomb
rebase
$ hg debugextensions -v
color
Kevin Bullock
test-debugextensions: passes with byte-compilation disabled (issue5147)
r28615 location: */hgext/color.py* (glob)
liscju
mercurial: add debugextensions command (issue4676)...
r26351 tested with: internal
ext1
Kevin Bullock
test-debugextensions: passes with byte-compilation disabled (issue5147)
r28615 location: */extwithoutinfos.py* (glob)
liscju
mercurial: add debugextensions command (issue4676)...
r26351 histedit
Kevin Bullock
test-debugextensions: passes with byte-compilation disabled (issue5147)
r28615 location: */hgext/histedit.py* (glob)
liscju
mercurial: add debugextensions command (issue4676)...
r26351 tested with: internal
mq
Kevin Bullock
test-debugextensions: passes with byte-compilation disabled (issue5147)
r28615 location: */hgext/mq.py* (glob)
liscju
mercurial: add debugextensions command (issue4676)...
r26351 tested with: internal
patchbomb
Kevin Bullock
test-debugextensions: passes with byte-compilation disabled (issue5147)
r28615 location: */hgext/patchbomb.py* (glob)
liscju
mercurial: add debugextensions command (issue4676)...
r26351 tested with: internal
rebase
Kevin Bullock
test-debugextensions: passes with byte-compilation disabled (issue5147)
r28615 location: */hgext/rebase.py* (glob)
liscju
mercurial: add debugextensions command (issue4676)...
r26351 tested with: internal
Matt Harbison
test-debugextensions: sanitize JSON output for Windows...
r26430 $ hg debugextensions -Tjson | sed 's|\\\\|/|g'
liscju
mercurial: add debugextensions command (issue4676)...
r26351 [
{
"buglink": "",
"name": "color",
Kevin Bullock
test-debugextensions: passes with byte-compilation disabled (issue5147)
r28615 "source": "*/hgext/color.py*", (glob)
liscju
mercurial: add debugextensions command (issue4676)...
r26351 "testedwith": "internal"
},
{
"buglink": "",
"name": "ext1",
Kevin Bullock
test-debugextensions: passes with byte-compilation disabled (issue5147)
r28615 "source": "*/extwithoutinfos.py*", (glob)
liscju
mercurial: add debugextensions command (issue4676)...
r26351 "testedwith": ""
},
{
"buglink": "",
"name": "histedit",
Kevin Bullock
test-debugextensions: passes with byte-compilation disabled (issue5147)
r28615 "source": "*/hgext/histedit.py*", (glob)
liscju
mercurial: add debugextensions command (issue4676)...
r26351 "testedwith": "internal"
},
{
"buglink": "",
"name": "mq",
Kevin Bullock
test-debugextensions: passes with byte-compilation disabled (issue5147)
r28615 "source": "*/hgext/mq.py*", (glob)
liscju
mercurial: add debugextensions command (issue4676)...
r26351 "testedwith": "internal"
},
{
"buglink": "",
"name": "patchbomb",
Kevin Bullock
test-debugextensions: passes with byte-compilation disabled (issue5147)
r28615 "source": "*/hgext/patchbomb.py*", (glob)
liscju
mercurial: add debugextensions command (issue4676)...
r26351 "testedwith": "internal"
},
{
"buglink": "",
"name": "rebase",
Kevin Bullock
test-debugextensions: passes with byte-compilation disabled (issue5147)
r28615 "source": "*/hgext/rebase.py*", (glob)
liscju
mercurial: add debugextensions command (issue4676)...
r26351 "testedwith": "internal"
}
]