##// END OF EJS Templates
test-debugextensions: passes with byte-compilation disabled (issue5147)
Kevin Bullock -
r28615:a6573503 default
parent child Browse files
Show More
@@ -25,21 +25,21 b''
25 25
26 26 $ hg debugextensions -v
27 27 color
28 location: */hgext/color.pyc (glob)
28 location: */hgext/color.py* (glob)
29 29 tested with: internal
30 30 ext1
31 location: */extwithoutinfos.pyc (glob)
31 location: */extwithoutinfos.py* (glob)
32 32 histedit
33 location: */hgext/histedit.pyc (glob)
33 location: */hgext/histedit.py* (glob)
34 34 tested with: internal
35 35 mq
36 location: */hgext/mq.pyc (glob)
36 location: */hgext/mq.py* (glob)
37 37 tested with: internal
38 38 patchbomb
39 location: */hgext/patchbomb.pyc (glob)
39 location: */hgext/patchbomb.py* (glob)
40 40 tested with: internal
41 41 rebase
42 location: */hgext/rebase.pyc (glob)
42 location: */hgext/rebase.py* (glob)
43 43 tested with: internal
44 44
45 45 $ hg debugextensions -Tjson | sed 's|\\\\|/|g'
@@ -47,37 +47,37 b''
47 47 {
48 48 "buglink": "",
49 49 "name": "color",
50 "source": "*/hgext/color.pyc", (glob)
50 "source": "*/hgext/color.py*", (glob)
51 51 "testedwith": "internal"
52 52 },
53 53 {
54 54 "buglink": "",
55 55 "name": "ext1",
56 "source": "*/extwithoutinfos.pyc", (glob)
56 "source": "*/extwithoutinfos.py*", (glob)
57 57 "testedwith": ""
58 58 },
59 59 {
60 60 "buglink": "",
61 61 "name": "histedit",
62 "source": "*/hgext/histedit.pyc", (glob)
62 "source": "*/hgext/histedit.py*", (glob)
63 63 "testedwith": "internal"
64 64 },
65 65 {
66 66 "buglink": "",
67 67 "name": "mq",
68 "source": "*/hgext/mq.pyc", (glob)
68 "source": "*/hgext/mq.py*", (glob)
69 69 "testedwith": "internal"
70 70 },
71 71 {
72 72 "buglink": "",
73 73 "name": "patchbomb",
74 "source": "*/hgext/patchbomb.pyc", (glob)
74 "source": "*/hgext/patchbomb.py*", (glob)
75 75 "testedwith": "internal"
76 76 },
77 77 {
78 78 "buglink": "",
79 79 "name": "rebase",
80 "source": "*/hgext/rebase.pyc", (glob)
80 "source": "*/hgext/rebase.py*", (glob)
81 81 "testedwith": "internal"
82 82 }
83 83 ]
General Comments 0
You need to be logged in to leave comments. Login now