test-debugextensions.t
83 lines
| 1.5 KiB
| text/troff
|
Tads3Lexer
/ tests / test-debugextensions.t
liscju
|
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
|
r28615 | location: */hgext/color.py* (glob) | ||
liscju
|
r26351 | tested with: internal | ||
ext1 | ||||
Kevin Bullock
|
r28615 | location: */extwithoutinfos.py* (glob) | ||
liscju
|
r26351 | histedit | ||
Kevin Bullock
|
r28615 | location: */hgext/histedit.py* (glob) | ||
liscju
|
r26351 | tested with: internal | ||
mq | ||||
Kevin Bullock
|
r28615 | location: */hgext/mq.py* (glob) | ||
liscju
|
r26351 | tested with: internal | ||
patchbomb | ||||
Kevin Bullock
|
r28615 | location: */hgext/patchbomb.py* (glob) | ||
liscju
|
r26351 | tested with: internal | ||
rebase | ||||
Kevin Bullock
|
r28615 | location: */hgext/rebase.py* (glob) | ||
liscju
|
r26351 | tested with: internal | ||
Matt Harbison
|
r26430 | $ hg debugextensions -Tjson | sed 's|\\\\|/|g' | ||
liscju
|
r26351 | [ | ||
{ | ||||
"buglink": "", | ||||
"name": "color", | ||||
Kevin Bullock
|
r28615 | "source": "*/hgext/color.py*", (glob) | ||
liscju
|
r26351 | "testedwith": "internal" | ||
}, | ||||
{ | ||||
"buglink": "", | ||||
"name": "ext1", | ||||
Kevin Bullock
|
r28615 | "source": "*/extwithoutinfos.py*", (glob) | ||
liscju
|
r26351 | "testedwith": "" | ||
}, | ||||
{ | ||||
"buglink": "", | ||||
"name": "histedit", | ||||
Kevin Bullock
|
r28615 | "source": "*/hgext/histedit.py*", (glob) | ||
liscju
|
r26351 | "testedwith": "internal" | ||
}, | ||||
{ | ||||
"buglink": "", | ||||
"name": "mq", | ||||
Kevin Bullock
|
r28615 | "source": "*/hgext/mq.py*", (glob) | ||
liscju
|
r26351 | "testedwith": "internal" | ||
}, | ||||
{ | ||||
"buglink": "", | ||||
"name": "patchbomb", | ||||
Kevin Bullock
|
r28615 | "source": "*/hgext/patchbomb.py*", (glob) | ||
liscju
|
r26351 | "testedwith": "internal" | ||
}, | ||||
{ | ||||
"buglink": "", | ||||
"name": "rebase", | ||||
Kevin Bullock
|
r28615 | "source": "*/hgext/rebase.py*", (glob) | ||
liscju
|
r26351 | "testedwith": "internal" | ||
} | ||||
] | ||||