##// END OF EJS Templates
check-code: fix checking for sh style in .t tests...
Mads Kiilerich -
r14203:b230922e default
parent child Browse files
Show More
@@ -95,12 +95,13 b' utestpats = ['
95 95 []
96 96 ]
97 97
98 for p, m in testpats[0] + testpats[1]:
99 if p.startswith('^'):
100 p = uprefix + p[1:]
101 else:
102 p = uprefix + p
103 utestpats.append((p, m))
98 for i in [0, 1]:
99 for p, m in testpats[i]:
100 if p.startswith('^'):
101 p = uprefix + p[1:]
102 else:
103 p = uprefix + p
104 utestpats[i].append((p, m))
104 105
105 106 utestfilters = [
106 107 (r"( *)(#([^\n]*\S)?)", repcomment),
@@ -11,7 +11,8 b' Tests discovery against servers without '
11 11
12 12 Setup HTTP server control:
13 13
14 $ export remote=http://localhost:$HGPORT/
14 $ remote=http://localhost:$HGPORT/
15 $ export remote
15 16 $ start() {
16 17 > echo '[web]' > $1/.hg/hgrc
17 18 > echo 'push_ssl = false' >> $1/.hg/hgrc
General Comments 0
You need to be logged in to leave comments. Login now